Skip to main content

cache

The sos.offline.cache API groups together methods used to download and save arbitrary files, which can be accessed even if the device is offline.

Please refer to difference between sos.offline.cache and sos.fileSystem APIs in our documentation.

warning

Emulator has certain limitations while handling offline files. Read more here

Methods

decompressFile()

The decompressFile() decompresses the file specified by uid into a new file specified by destinationUid.

decompressFile(uid: string, destinationUid: string, method: 'zip'): Promise<void>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique file identifier of a previously downloaded ZIP file.
destinationUidstring
Yes
Unique directory identifier (prefix of file) to extract ZIP file.
method"zip"
Yes
The decompression method to use. Currently, only 'zip' is supported.

Return value

A promise that resolves when the file is decompressed.

Possible errors

  • Error If the uid does not exist.
  • Error If the destinationUid is not a valid string.
  • Error If the method is not supported.

Example

// Save the ZIP file
await sos.offline.cache.saveFile('example-zip-file.zip', 'https://example.com/path/to/your/file.zip');

// Decompress the ZIP file into a directory
await sos.offline.cache.decompressFile('example-zip-file.zip', 'extracted-files/', 'zip');
.then(() => { console.log('ZIP file extracted'); })
.catch((error) => { console.error(error); });

deleteContent()

Learn more about using this API here

The deleteContent() method removes the value specified by uid key from the cache storage.

deleteContent(uid: string): Promise<void>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the content to be deleted.

Return value

A promise that resolves when the content is deleted.

Possible errors

  • Error If the uid does not exist.
  • Error If the uid is not a valid string.
  • Error If any other error occurs during deletion.

Example

//Store
sos.offline.cache.saveContent('ApplicationSecret', '123SuperSecretHash')
.then(() => {
//Content was successfully saved, retrieve it.
return sos.offline.cache.loadContent('ApplicationSecret');
})
.then((content) => {
console.log('Loaded', content); // print 123SuperSecretHash

// Let's delete the content now
return sos.offline.cache.deleteContent('ApplicationSecret')
})
.then(() => {
console.log("Deleted");
})
.catch((error) => { console.error(error); });

deleteFile()

The deleteFile() method removes the file specified by uid from cache storage.

deleteFile(uid: string): Promise<void>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the file to be deleted.

Return value

A promise that resolves when the file is deleted.

Possible errors

  • Error If the uid is not a valid string.
  • Error If the uid is not found in the cache.

Example

// Save a file
await sos.offline.cache.saveFile('example-file.mp4', 'https://example.com/path/to/your/file.mp4');
// Later delete the file
await sos.offline.cache.deleteFile('example-file.mp4');

getChecksumFile()

The getChecksumFile() computes a checksum of the file specified by uid.

getChecksumFile(uid: string, hashType: HashAlgorithm): Promise<string>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique file identifier of a previously downloaded file.
hashTypeHashAlgorithm
Yes
The hashing algorithm to use. Supported algorithms are md5 and crc32.

Return value

A promise that resolves to the computed checksum of the file.

Possible errors

  • Error If the uid does not exist.
  • Error If the hashing algorithm is not supported.

Example

const checksum = await sos.offline.cache.getChecksumFile('example-file.mp4', 'md5');
console.log('MD5 Checksum:', checksum); // Output: MD5 Checksum: d41d8cd98f00b204e9800998ecf8427e

listContents()

The listContent() method lists all values saved by saveContent() method.

listContents(): Promise<string[]>;

Return value

A promise that resolves to an array of saved content.

Example

// Save some content and list all saved contents
await sos.offline.cache.saveContent('ApplicationSecret', '123SuperSecretHash');
await sos.offline.cache.saveContent('UserToken', 'abc123xyz');

// Later list the saved contents
const contents = await sos.offline.cache.listContents();
console.log('Saved contents:', contents); // Output: Saved contents: ['ApplicationSecret', 'UserToken']

listFiles()

The listFiles() method list all currently cached files in internal storage, which was previously saved by saveFile() or loadOrSaveFile() methods.

listFiles(): Promise<string[]>;

Return value

A promise that resolves to an array of unique identifiers (uids) of the saved files.

Possible errors

  • Error If any error occurs during listing files.
  • Error If the files cannot be listed.

Example

await sos.offline.cache.saveFile('example-file.mp4', 'https://example.com/path/to/your/file.mp4');
await sos.offline.cache.saveFile('another-file.jpg', 'https://example.com/path/to/your/image.jpg');

// Later list the saved files
const files = await sos.offline.cache.listFiles();
console.log('Saved files:', files); // Output: Saved files: ['example-file.mp4', 'another-file.jpg']

loadContent()

Learn more about using this API here

The loadContent() method gets the value specified by uid, which was previously saved by saveContent().

loadContent(uid: string): Promise<string>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the content to be loaded.

Return value

A promise that resolves to the loaded content.

Possible errors

  • Error If the uid does not exist.
  • Error If the uid is not a valid string.
  • Error If the content is not a valid string.
  • Error If any other error occurs during loading.

Example

// Previously saved content with uid 'ApplicationSecret'
await sos.offline.cache.saveContent('ApplicationSecret', '123SuperSecretHash');

// Load the content
const content = await sos.offline.cache.loadContent('ApplicationSecret');
console.log('Loaded content:', content); // Output: Loaded content: 123SuperSecretHash

loadFile()

The loadFile() method loads cached file, which was previously saved by saveFile() or loadOrSaveFile() methods.

loadFile(uid: string): Promise<IFile>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the file to be loaded.

Return value

A promise that resolves to the loaded file.

Possible errors

  • Error If the uid is not a valid string.
  • Error If the uid does not exist

Example

// Save a file
await sos.offline.cache.saveFile('example-file.mp4', 'https://example.com/path/to/your/file.mp4');
// Later load the file
const file = await sos.offline.cache.loadFile('example-file.mp4');
console.log('Loaded file:', file); // Output: Loaded file: { uid: 'example-file.mp4', uri: 'file://path/to/your/file.mp4' }

loadOrSaveFile()

Method loadOrSaveFile() is used for individual file retrieval & save in case when file is not saved in local storage yet. To get file from internal memory & save it when not yet exists we prepared loadOrSaveFile() method.

info
  • The file URI has to return the file. If your URI leads to a 303 redirect (e.g. from http to https), the API will not work.
  • Emulator has certain limitations while handling offline files. Read more here.
  • Local device file path differs from device to device. It can point to file:// or http://localhost etc.
warning

uid should have the same file extension (e.g.: mp4, svg, jpg) as the original file

loadOrSaveFile(uid: string, uri: string, headers?: {
[key: string]: string;
}): Promise<IFile>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the file to be loaded or saved.
uristring
Yes
URI of the file to be downloaded if not cached.
headers{ [key: string]: string; }
No
Key, value pairs of HTTP headers to send along with the request. Used when the target file is protected by a password or if any other specific headers are needed to access it.

Return value

A promise that resolves to the loaded or saved file.

Possible errors

  • Error If the uid is not a valid string.
  • Error If the uri is not a valid URI.
  • Error If the headers are not a valid object with string values.
  • Error If the file cannot be loaded or saved.
  • AppletOfflineCacheError If the headers are not valid.

Example

await sos.offline.cache.loadOrSaveFile('example-file.mp4', 'https://example.com/path/to/your/file.mp4')
.then((file) => {
console.log('File loaded or saved:', file);
})
.catch((error) => {
console.error('Error loading or saving file:', error);
});

saveContent()

Learn more about using this API here

The saveContent() method saves a string value to the cache with specified uid.

Use when you need to save some data into local memory. This API provides you with approach similar to the HTML5's Local Storage, but implemented internally via native device API and completely device-agnostic.

saveContent(uid: string, content: string): Promise<void>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the content to be saved.
contentstring
Yes
The string content to be saved.

Return value

A promise that resolves when the content is saved.

Possible errors

  • Error If the uid is not a valid string.
  • Error If the content is not a valid string.
  • Error If the uid already exists.
  • Error If any other error occurs during saving.

Example

sos.offline.cache.saveContent('ApplicationSecret', '123SuperSecretHash')
.then(() => {
//Content was successfully saved, retrieve it.
return sos.offline.cache.loadContent('ApplicationSecret');
})
.then((content) => {
console.log('Loaded', content); // print 123SuperSecretHash
})

saveFile()

Method saveFile() is used to save files from remote a destination into the device internal memory.

info
  • Local device file path differs from device to device. It can point to file:// or http://localhost etc.
warning
  • headers has to be a JSON object. If you are passing the value, make sure you use JSON.parse().
  • uid should have the same file extension (e.g.: mp4, svg, jpg) as the original file.
saveFile(uid: string, uri: string, headers?: {
[key: string]: string;
}): Promise<void>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique identifier of the file to be saved.
uristring
Yes
URI of the file to be downloaded.
headers{ [key: string]: string; }
No
Key, value pairs of HTTP headers to send along with the request. Used when the target file is protected by a password or if any other specific headers are needed to access it.

Possible errors

  • Error If the network request fails.
  • Error If the uid is not a valid string.
  • Error If the uri is not a valid URI.
  • Error File with the same uid is already cached.
  • Error If the headers are not a valid object with string values.

Example

await sos.offline.cache.saveFile('example-file.mp4', 'https://example.com/path/to/your/file.mp4')
.then(() => {
console.log('File saved successfully');
})
.catch((error) => {
console.error('Error saving file:', error);
});

validateChecksumFile()

The validateChecksumFile() method validates whether the file, specified by uid, has the correct checksum.

validateChecksumFile(uid: string, hash: string, hashType: HashAlgorithm): Promise<boolean>;

Params

NameTypeRequiredDescription
uidstring
Yes
Unique file identifier of a previously downloaded file.
hashstring
Yes
The expected checksum of the file.
hashTypeHashAlgorithm
Yes
The hashing algorithm to use. Supported algorithms are 'md5' and crc32.

Return value

A promise that resolves to true if the checksum is valid, otherwise false.

Possible errors

  • Error If the uid does not exist or the hashing algorithm is not supported.
  • Error If the hash is not a valid string.
  • Error If the hashType is not a valid string.

Example

// Validate the checksum of a file
const expectedHash = 'd41d8cd98f00b204e9800998ecf8427e'; // Example MD5 hash
// Previously saved file with uid 'example-file.mp4'
const isValid = await sos.offline.cache.validateChecksumFile('example-file.mp4', expectedHash, 'md5');