///
import { connectToGaiaHub, uploadToGaiaHub, BLOCKSTACK_GAIA_HUB_LABEL } from './hub';
import { CipherTextEncoding } from '../encryption/ec';
import { UserSession } from '../auth/userSession';
export interface EncryptionOptions {
/**
* If set to `true` the data is signed using ECDSA on SHA256 hashes with the user's
* app private key. If a string is specified, it is used as the private key instead
* of the user's app private key.
* @default false
*/
sign?: boolean | string;
/**
* String encoding format for the cipherText buffer.
* Currently defaults to 'hex' for legacy backwards-compatibility.
* Only used if the `encrypt` option is also used.
* Note: in the future this should default to 'base64' for the significant
* file size reduction.
*/
cipherTextEncoding?: CipherTextEncoding;
/**
* Specifies if the original unencrypted content is a ASCII or UTF-8 string.
* For example stringified JSON.
* If true, then when the ciphertext is decrypted, it will be returned as
* a `string` type variable, otherwise will be returned as a Buffer.
*/
wasString?: boolean;
}
/**
* Specify encryption options, and whether to sign the ciphertext.
*/
export interface EncryptContentOptions extends EncryptionOptions {
/**
* Encrypt the data with this key.
* If not provided then the current user's app public key is used.
*/
publicKey?: string;
}
/**
* Specify a valid MIME type, encryption options, and whether to sign the [[UserSession.putFile]].
*/
export interface PutFileOptions extends EncryptionOptions {
/**
* Specifies the Content-Type header for unencrypted data.
* If the `encrypt` is enabled, this option is ignored, and the
* Content-Type header is set to `application/json` for the ciphertext
* JSON envelope.
*/
contentType?: string;
/**
* Encrypt the data with the app public key.
* If a string is specified, it is used as the public key.
* If the boolean `true` is specified then the current user's app public key is used.
* @default true
*/
encrypt?: boolean | string;
/**
* Ignore etag for concurrency control and force file to be written.
*/
dangerouslyIgnoreEtag?: boolean;
}
/**
* Fetch the public read URL of a user file for the specified app.
* @param {String} path - the path to the file to read
* @param {String} username - The Blockstack ID of the user to look up
* @param {String} appOrigin - The app origin
* @param {String} [zoneFileLookupURL=null] - The URL
* to use for zonefile lookup. If falsey, this will use the
* blockstack.js's [[getNameInfo]] function instead.
* @return {Promise} that resolves to the public read URL of the file
* or rejects with an error
*/
export declare function getUserAppFileUrl(path: string, username: string, appOrigin: string, zoneFileLookupURL?: string): Promise;
/**
* Encrypts the data provided with the app public key.
* @param {String|Buffer} content - data to encrypt
* @param {Object} [options=null] - options object
* @param {String} options.publicKey - the hex string of the ECDSA public
* key to use for encryption. If not provided, will use user's appPublicKey.
* @return {String} Stringified ciphertext object
*/
export declare function encryptContent(caller: UserSession, content: string | Buffer, options?: EncryptContentOptions): Promise;
/**
* Decrypts data encrypted with `encryptContent` with the
* transit private key.
* @param {String|Buffer} content - encrypted content.
* @param {Object} [options=null] - options object
* @param {String} options.privateKey - the hex string of the ECDSA private
* key to use for decryption. If not provided, will use user's appPrivateKey.
* @return {String|Buffer} decrypted content.
*/
export declare function decryptContent(caller: UserSession, content: string, options?: {
privateKey?: string;
}): Promise;
/**
*
* @param {String} path - the path to the file to read
* @returns {Promise} that resolves to the URL or rejects with an error
*/
export declare function getFileUrl(caller: UserSession, path: string, options?: GetFileUrlOptions): Promise;
export interface GetFileUrlOptions {
/**
* The Blockstack ID to lookup for multi-player storage.
* If not specified, the currently signed in username is used.
*/
username?: string;
/**
* The app to lookup for multi-player storage - defaults to current origin.
* @default `window.location.origin`
* Only if available in the executing environment, otherwise `undefined`.
*/
app?: string;
/**
* The URL to use for zonefile lookup. If falsey, this will use
* the blockstack.js's [[getNameInfo]] function instead.
*/
zoneFileLookupURL?: string;
}
/**
* Used to pass options to [[UserSession.getFile]]
*/
export interface GetFileOptions extends GetFileUrlOptions {
/**
* Try to decrypt the data with the app private key.
* If a string is specified, it is used as the private key.
* @default true
*/
decrypt?: boolean | string;
/**
* Whether the content should be verified, only to be used
* when [[UserSession.putFile]] was set to `sign = true`.
* @default false
*/
verify?: boolean;
}
/**
* Retrieves the specified file from the app's data store.
* @param {String} path - the path to the file to read
* @returns {Promise} that resolves to the raw data in the file
* or rejects with an error
*/
export declare function getFile(caller: UserSession, path: string, options?: GetFileOptions): Promise;
/**
* Stores the data provided in the app's data store to to the file specified.
* @param {UserSession} caller - internal use only: the usersession
* @param {String} path - the path to store the data in
* @param {String|Buffer|ArrayBufferView|Blob} content - the data to store in the file
* @param {PutFileOptions} options - the putfile options
* @return {Promise} that resolves if the operation succeed and rejects
* if it failed
*/
export declare function putFile(caller: UserSession, path: string, content: string | Buffer | ArrayBufferView | Blob, options?: PutFileOptions): Promise;
/**
* Deletes the specified file from the app's data store.
* @param path - The path to the file to delete.
* @param options - Optional options object.
* @param options.wasSigned - Set to true if the file was originally signed
* in order for the corresponding signature file to also be deleted.
* @returns Resolves when the file has been removed or rejects with an error.
*/
export declare function deleteFile(caller: UserSession, path: string, options?: {
wasSigned?: boolean;
}): Promise;
/**
* Get the app storage bucket URL
* @param {String} gaiaHubUrl - the gaia hub URL
* @param {String} appPrivateKey - the app private key used to generate the app address
* @returns {Promise} That resolves to the URL of the app index file
* or rejects if it fails
*/
export declare function getAppBucketUrl(gaiaHubUrl: string, appPrivateKey: string): Promise;
/**
* List the set of files in this application's Gaia storage bucket.
* @param {function} callback - a callback to invoke on each named file that
* returns `true` to continue the listing operation or `false` to end it
* @return {Promise} that resolves to the total number of listed files.
* If the call is ended early by the callback, the last file is excluded.
* If an error occurs the entire call is rejected.
*/
export declare function listFiles(caller: UserSession, callback: (name: string) => boolean): Promise;
export { connectToGaiaHub, uploadToGaiaHub, BLOCKSTACK_GAIA_HUB_LABEL };