123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- * @flow
- */
- import CoreManager from './CoreManager';
- const Storage = {
- async()
- /*: boolean*/
- {
- const controller = CoreManager.getStorageController();
- return !!controller.async;
- },
- getItem(path
- /*: string*/
- )
- /*: ?string*/
- {
- const controller = CoreManager.getStorageController();
- if (controller.async === 1) {
- throw new Error('Synchronous storage is not supported by the current storage controller');
- }
- return controller.getItem(path);
- },
- getItemAsync(path
- /*: string*/
- )
- /*: Promise<string>*/
- {
- const controller = CoreManager.getStorageController();
- if (controller.async === 1) {
- return controller.getItemAsync(path);
- }
- return Promise.resolve(controller.getItem(path));
- },
- setItem(path
- /*: string*/
- , value
- /*: string*/
- )
- /*: void*/
- {
- const controller = CoreManager.getStorageController();
- if (controller.async === 1) {
- throw new Error('Synchronous storage is not supported by the current storage controller');
- }
- return controller.setItem(path, value);
- },
- setItemAsync(path
- /*: string*/
- , value
- /*: string*/
- )
- /*: Promise<void>*/
- {
- const controller = CoreManager.getStorageController();
- if (controller.async === 1) {
- return controller.setItemAsync(path, value);
- }
- return Promise.resolve(controller.setItem(path, value));
- },
- removeItem(path
- /*: string*/
- )
- /*: void*/
- {
- const controller = CoreManager.getStorageController();
- if (controller.async === 1) {
- throw new Error('Synchronous storage is not supported by the current storage controller');
- }
- return controller.removeItem(path);
- },
- removeItemAsync(path
- /*: string*/
- )
- /*: Promise<void>*/
- {
- const controller = CoreManager.getStorageController();
- if (controller.async === 1) {
- return controller.removeItemAsync(path);
- }
- return Promise.resolve(controller.removeItem(path));
- },
- generatePath(path
- /*: string*/
- )
- /*: string*/
- {
- if (!CoreManager.get('APPLICATION_ID')) {
- throw new Error('You need to call Parse.initialize before using Parse.');
- }
- if (typeof path !== 'string') {
- throw new Error('Tried to get a Storage path that was not a String.');
- }
- if (path[0] === '/') {
- path = path.substr(1);
- }
- return 'Parse/' + CoreManager.get('APPLICATION_ID') + '/' + path;
- },
- _clear() {
- const controller = CoreManager.getStorageController();
- if (controller.hasOwnProperty('clear')) {
- controller.clear();
- }
- }
- };
- module.exports = Storage;
- CoreManager.setStorageController(require('./StorageController.react-native'));
|