js/ui/popup/factories/storage.js   A
last analyzed

Complexity

Total Complexity 7
Complexity/F 1

Size

Lines of Code 33
Function Count 7

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
nc 1
dl 0
loc 33
rs 10
c 0
b 0
f 0
wmc 7
mnd 0
bc 7
fnc 7
bpm 1
cpm 1
noi 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A angular.factory(ꞌSettingsꞌ) 0 22 1
1
/* global API */
2
3
/**
4
 * Nextcloud - passman
5
 *
6
 * @copyright Copyright (c) 2016, Sander Brand ([email protected])
7
 * @copyright Copyright (c) 2016, Marcos Zuriaga Miguel ([email protected])
8
 * @license GNU AGPL version 3 or any later version
9
 *
10
 * This program is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License as
12
 * published by the Free Software Foundation, either version 3 of the
13
 * License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU Affero General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU Affero General Public License
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 *
23
 */
24
25
(function () {
26
    'use strict';
27
    /**
28
     * @ngdoc service
29
     * @name passmanApp.CacheService
30
     * @description
31
     * # CacheService
32
     * Service in the passmanApp.
33
     */
34
    angular.module('passmanExtension')
35
        .factory('Settings', ['$q', function ($q) {
0 ignored issues
show
Unused Code introduced by
The parameter $q is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
36
            var storage = new API.Storage();
37
            var settings = {};
38
            settings.set = function (key, value) {
39
                storage.set(key, value);
40
                settings[key] = value;
41
42
            };
43
            settings.setAll = function (_settings) {
44
                storage.set('settings', _settings);
45
            };
46
47
            settings.getSettings = function (callback) {
48
                storage.get('settings').then(function(keyValue) {
49
                    callback(keyValue);
50
                }).error(function () {
51
                    callback(undefined);
52
                });
53
            };
54
55
            return settings;
56
        }]);
57
}());
58
59