aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/server/LocalApi.js
blob: efbb42999d752978ccb19d6b0dc216f6261c6de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { remote } from 'electron';
import localStorage from 'mobx-localstorage';
import du from 'du';

import { getServicePartitionsDirectory } from '../../helpers/service-helpers.js';

const { session } = remote;

export default class LocalApi {
  // App
  async updateAppSettings(data) {
    const currentSettings = await this.getAppSettings();
    const settings = Object.assign(currentSettings, data);

    localStorage.setItem('app', JSON.stringify(settings));
    console.debug('LocalApi::updateAppSettings resolves', settings);

    return settings;
  }

  async getAppSettings() {
    const settingsString = localStorage.getItem('app');
    try {
      const settings = JSON.parse(settingsString) || {};
      console.debug('LocalApi::getAppSettings resolves', settings);

      return settings;
    } catch (err) {
      return {};
    }
  }

  async removeKey(key) {
    const settings = await this.getAppSettings();

    if (Object.hasOwnProperty.call(settings, key)) {
      delete settings[key];
      localStorage.setItem('app', JSON.stringify(settings));
    }
  }

  // Services
  async getAppCacheSize() {
    const partitionsDir = getServicePartitionsDirectory();
    return new Promise((resolve, reject) => {
      du(partitionsDir, (err, size) => {
        if (err) reject(err);

        console.debug('LocalApi::getAppCacheSize resolves', size);
        resolve(size);
      });
    });
  }

  async clearCache(serviceId) {
    const s = session.fromPartition(`persist:service-${serviceId}`);

    console.debug('LocalApi::clearCache resolves', serviceId);
    return new Promise(resolve => s.clearCache(resolve));
  }

  async clearAppCache() {
    const s = session.defaultSession;

    console.debug('LocalApi::clearCache clearAppCache');
    return new Promise(resolve => s.clearCache(resolve));
  }
}