Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FolderRepository.js « Repositories « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a06d36255394a15ec6334691866f7af6ccfee4ed (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import Folder from '../Model/Folder';

export default class FolderRepository {

    /**
     *
     * @param {Api} api
     * @param {Cache} cache
     */
    constructor(api, cache) {
        this._api = api;
        this._cache = cache;
    }

    /**
     *
     * @return {FolderRepository}
     */
    clearCache() {
        this._cache.clear();

        return this;
    }

    /**
     *
     * @param {Folder} folder
     * @returns {Promise<Folder>}
     */
    async create(folder) {
    }

    /**
     *
     * @param {Folder} folder
     * @returns {Promise<Folder>}
     */
    async update(folder) {

    }

    /**
     *
     * @param {Folder} folder
     * @returns {Promise<Folder>}
     */
    async delete(folder) {

    }

    /**
     *
     * @param id
     * @returns {Promise<Folder>}
     */
    async findById(id) {
        if(this._cache.has(id)) {
            return this._cache.get(id);
        }

        let request = this._api.getRequest()
            .setPath('api/1.0/folder/show')
            .setData({id});

        let response = await request.send(),
            folder = await this._dataToModel(response.getData());

        this._cache.set(folder.getId(), folder, 'folder');

        return folder;
    }

    /**
     *
     * @returns {Promise<[Folder]>}
     */
    async findAll() {
        if(this._cache.has('folders.list')) {
            return this._cache.getByType('folder');
        }

        let request = this._api.getRequest()
            .setPath('api/1.0/folder/list');

        let response = await request.send();
        let folders = response.getData();

        let result = [];
        for(let data of folders) {
            try {
                result.push(await this._dataToModel(data));
            } catch(e) {
                console.error(e, data);
            }
        }
        this._cache.set('folders.list', true);

        return result;
    }

    /**
     *
     * @param {Object} data
     * @returns {Promise<Folder>}
     * @private
     */
    async _dataToModel(data) {
        if(data.cseType === 'CSEv1r1') {
            data = await this._api.getCseV1Encryption().decrypt(data, 'folder');
        }

        let folder = this._api.getClass('model.folder', this._api, data);
        this._cache.set(folder.getId(), folder, 'folder');

        return folder
    }
}