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

EnhancedApi.js « Classes « src - git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 605df4b8de4c436d19724a0f81281cc35c60a017 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
import Url from 'url-parse';
import SimpleApi from './SimpleApi';
import Encryption from './Encryption';
import EventEmitter from 'eventemitter3';

export default class EnhancedApi extends SimpleApi {

    /**
     * Is the user session authorized to make encrypted requests
     *
     * @returns {Boolean}
     */
    get isAuthorized() {
        return this._isAuthorized === true;
    }

    /**
     * Is the encryption active and able to encrypt/decrypt
     *
     * @returns {Boolean}
     */
    get hasEncryption() {
        return this.config.encryption.enabled;
    }

    /**
     *
     * @param props
     */
    constructor(props) {
        super(props);

        this._isAuthorized = false;
    }

    /**
     * Initialize the api object
     *
     * @param config
     */
    initialize(config = {}) {
        if(!config.baseUrl || config.baseUrl.substr(0, 5) !== 'https') throw new Error('Invalid Base URL given');

        if(!config.folderIcon) config.folderIcon = `${config.baseUrl}core/img/filetypes/folder.svg`;
        if(!config.apiUrl) config.apiUrl = `${config.baseUrl}index.php/apps/passwords/`;

        if(!config.encryption) config.encryption = new Encryption();
        if(!config.cseMode || ['none', 'CSEv1r1'].indexOf(config.cseMode) === -1) config.cseMode = 'none';

        if(!config.device) {
            config.device = 'desktop';
            if(window && window.matchMedia('only screen and (max-width: 768px) and (hover: none)').matches) {
                config.device = 'mobile';
            }
        }

        if(!config.events) config.events = new EventEmitter();
        config.events.on('api.request.failed', (e) => {
            if(e.id && e.id === '4ad27488') this._resetAuthorisation();
        });
        config.events.on('api.session.token.changed', (d) => {
            if(d.oldSessionToken) this._resetAuthorisation();
        });

        super.initialize(config);
    }

    /**
     * Calculate the hash of the given string using the given algorithm
     *
     * @param value
     * @param algorithm
     * @returns {Promise<string>}
     */
    getHash(value, algorithm = 'SHA-1') {
        return this.config.encryption.getHash(value, algorithm);
    }

    /**
     * Open an api session with the given login data.
     * Decrypts the keychain automatically
     *
     * @param login
     * @returns {Promise}
     */
    async openSession(login) {
        let password = null;
        if(login.hasOwnProperty('password')) {
            login.challenge = this.config.encryption.solveChallenge(login.password, login.salts);
            password = login.password;
            delete login.salts;
            delete login.password;
        }

        let result = await this._sendRequest('session.open', login);
        if(password !== null && result.hasOwnProperty('keys') && result.keys.hasOwnProperty('CSEv1r1')) {
            this.config.encryption.setKeychain(result.keys.CSEv1r1, password);
        }

        this._isAuthorized = true;

        return result;
    }

    /**
     * Close the api session
     *
     * @returns {Promise}
     */
    async closeSession() {
        let result = await super.closeSession();
        this._resetAuthorisation();
        return result;
    }


    /**
     * Account Management
     */

    /**
     * Change or set the user account e2e password.
     * Handling of the keychain is also done by the function
     *
     * @param password
     * @param oldPassword
     * @returns {Promise<void>}
     */
    async setAccountChallenge(password, oldPassword = null) {
        let oldSecret = null;
        if(oldPassword !== null) {
            let oldChallenge = await super.getAccountChallenge();
            oldSecret = this.config.encryption.solveChallenge(oldPassword, oldChallenge.salts);
        }

        let challenge = this.config.encryption.createChallenge(password);

        let result = await super.setAccountChallenge(challenge.secret, challenge.salts, oldSecret);
        if(result.success) {
            let keychain = this.config.encryption.getKeychain(password, true);
            await super.setKeychain('CSEv1r1', keychain);
        }

        return result;
    }

    /**
     * Passwords
     */

    /**
     * Creates a new password with the given attributes
     *
     * @param data
     * @returns {Promise}
     */
    async createPassword(data = {}) {
        let object = this._cloneObject(data);

        try {
            object = this.flattenPassword(object);
            object = this.validatePassword(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        if(!object.hasOwnProperty('_encrypted')) object._encrypted = false;
        object.hash = await this.config.encryption.getHash(data.password);
        if(!object.label) this._generatePasswordTitle(object);

        if(this.config.encryption.enabled && object.cseType !== 'none') {
            this.config.encryption.encryptObject(object, 'password');
        } else {
            object.cseKey = '';
        }

        return await super.createPassword(object);
    }

    /**
     * Update an existing password with the given attributes.
     * If data does not contain an id, a new password will be created.
     *
     * @param data
     * @returns {Promise}
     */
    async updatePassword(data = {}) {
        if(!data.id) return this.createPassword(data);
        let object = this._cloneObject(data);

        try {
            object = this.flattenPassword(object);
            object = this.validatePassword(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        if(!object.hasOwnProperty('_encrypted')) object._encrypted = false;
        object.hash = await this.config.encryption.getHash(data.password);
        if(!object.label) this._generatePasswordTitle(object);

        if(this.config.encryption.enabled && object.cseType !== 'none' && (!data.hasOwnProperty('shared') || !data.shared)) {
            this.config.encryption.encryptObject(object, 'password');
        } else {
            object.cseType = 'none';
            object.cseKey = '';
        }

        return await super.updatePassword(object);
    }

    /**
     * Returns the password with the given id and the given detail level
     *
     * @param id
     * @param detailLevel
     * @returns {Promise}
     */
    async showPassword(id, detailLevel = 'model') {
        return this._processPassword(
            await super.showPassword(id, detailLevel)
        );
    }

    /**
     * Gets all the passwords, excluding those hidden or in trash
     *
     * @param detailLevel
     * @returns {Promise}
     */
    async listPasswords(detailLevel = 'model') {
        return this._processPasswordList(
            await super.listPasswords(detailLevel)
        );
    }

    /**
     * Gets all the passwords matching the criteria
     *
     * @param criteria
     * @param detailLevel
     * @returns {Promise}
     */
    async findPasswords(criteria = {}, detailLevel = 'model') {
        return this._processPasswordList(
            await super.findPasswords(criteria, detailLevel)
        );
    }


    /**
     * Folders
     */

    /**
     * Creates a new folder with the given attributes
     *
     * @param data
     * @returns {Promise}
     */
    createFolder(data = {}) {
        let object = this._cloneObject(data);

        try {
            object = this.flattenFolder(object);
            object = this.validateFolder(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        if(this.config.encryption.enabled && object.cseType !== 'none') {
            this.config.encryption.encryptObject(object, 'folder');
        } else {
            object.cseKey = '';
        }

        return super.createFolder(object);
    }

    /**
     * Update an existing folder with the given attributes.
     * If data does not contain an id, a new folder will be created.
     *
     * @param data
     * @returns {Promise}
     */
    updateFolder(data = {}) {
        if(!data.id) return this.createFolder(data);
        let object = this._cloneObject(data);

        try {
            object = this.flattenFolder(object);
            object = this.validateFolder(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        if(this.config.encryption.enabled && object.cseType !== 'none') {
            this.config.encryption.encryptObject(object, 'folder');
        } else {
            object.cseKey = '';
        }

        return super.updateFolder(object);
    }

    /**
     * Returns the folder with the given id and the given detail level
     *
     * @param id
     * @param detailLevel
     * @returns {Promise}
     */
    async showFolder(id, detailLevel = 'model') {
        return this._processFolder(
            await super.showFolder(id, detailLevel)
        );
    }

    /**
     * Gets all the folders, excluding those hidden or in trash
     *
     * @param detailLevel
     * @returns {Promise}
     */
    async listFolders(detailLevel = 'model') {
        return this._processFolderList(
            await super.listFolders(detailLevel)
        );
    }

    /**
     * Gets all the folders matching the criteria
     *
     * @param criteria
     * @param detailLevel
     * @returns {Promise}
     */
    async findFolders(criteria = {}, detailLevel = 'model') {
        return this._processFolderList(
            await super.findFolders(criteria, detailLevel)
        );
    }


    /**
     * Tags
     */

    /**
     * Creates a new tag with the given attributes
     *
     * @param data
     * @returns {Promise}
     */
    createTag(data = {}) {
        let object = this._cloneObject(data);

        try {
            object = this.flattenTag(object);
            object = this.validateTag(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        if(this.config.encryption.enabled && object.cseType !== 'none') {
            this.config.encryption.encryptObject(object, 'tag');
        } else {
            object.cseKey = '';
        }

        return super.createTag(object);
    }

    /**
     * Update an existing tag with the given attributes.
     * If data does not contain an id, a new tag will be created.
     *
     * @param data
     * @returns {Promise}
     */
    updateTag(data = {}) {
        if(!data.id) return this.createTag(data);
        let object = this._cloneObject(data);

        try {
            object = this.flattenTag(object);
            object = this.validateTag(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        if(this.config.encryption.enabled && object.cseType !== 'none') {
            this.config.encryption.encryptObject(object, 'tag');
        } else {
            object.cseKey = '';
        }

        return super.updateTag(object);
    }

    /**
     * Returns the tag with the given id and the given detail level
     *
     * @param id
     * @param detailLevel
     * @returns {Promise}
     */
    async showTag(id, detailLevel = 'model') {
        return this._processTag(
            await super.showTag(id, detailLevel)
        );
    }

    /**
     * Gets all the tags, excluding those hidden or in trash
     *
     * @param detailLevel
     * @returns {Promise}
     */
    async listTags(detailLevel = 'model') {
        return this._processTagList(
            await super.listTags(detailLevel)
        );
    }

    /**
     * Gets all the tags matching the criteria
     *
     * @param criteria
     * @param detailLevel
     * @returns {Promise}
     */
    async findTags(criteria = {}, detailLevel = 'model') {
        return this._processTagList(
            await super.findTags(criteria, detailLevel)
        );
    }


    /**
     * Shares
     */

    /**
     * Creates a new share with the given attributes
     *
     * @param data
     * @returns {Promise}
     */
    createShare(data = {}) {
        let object = this._cloneObject(data);

        try {
            object = this.flattenShare(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        return super.createShare(object);
    }

    /**
     * Update a share
     *
     * @param data
     * @returns {Promise}
     */
    updateShare(data = {}) {
        if(!data.id) return this.createShare(data);
        let object = this._cloneObject(data);

        try {
            object = this.flattenShare(object);
        } catch(e) {
            return this._createRejectedPromise(e);
        }

        return super.updateShare(object);
    }

    /**
     * Returns the share with the given id and the given detail level
     *
     * @param id
     * @param detailLevel
     * @returns {Promise}
     */
    async showShare(id, detailLevel = 'model') {
        return this._processShare(
            await super.showShare(id, detailLevel)
        );
    }

    /**
     * Gets all the shares, excluding those hidden or in trash
     *
     * @param detailLevel
     * @returns {Promise}
     */
    async listShares(detailLevel = 'model') {
        return this._processShareList(
            await super.listShares(detailLevel)
        );
    }

    /**
     * Gets all the shares matching the criteria
     *
     * @param criteria
     * @param detailLevel
     * @returns {Promise}
     */
    async findShares(criteria = {}, detailLevel = 'model') {
        return this._processShareList(
            await super.findShares(criteria, detailLevel)
        );
    }


    /**
     * Settings
     */

    /**
     *
     * @param setting
     * @returns {Promise<*>}
     */
    async getSetting(setting) {
        let data = await super.getSettings([setting]);
        return data[setting];
    }

    /**
     *
     * @param setting
     * @param value
     * @returns {Promise<*>}
     */
    async setSetting(setting, value) {
        let settings = {};
        settings[setting] = value;
        let data = await super.setSettings(settings);
        return data[setting];
    }

    /**
     *
     * @param setting
     * @returns {Promise<*>}
     */
    async resetSetting(setting) {
        let data = await super.resetSettings([setting]);
        return data[setting];
    }

    /**
     *
     * @param scopes
     * @returns {*}
     */
    listSettings(scopes = null) {
        if(typeof scopes === 'string') scopes = [scopes];
        return super.listSettings(scopes);
    }


    /**
     * Validation
     */

    /**
     *
     * @param password
     * @returns {*}
     */
    flattenPassword(password) {
        if(password.folder && typeof password.folder !== 'string') {
            password.folder = password.folder.id;
        }

        if(password.customFields && typeof password.customFields !== 'string') {
            password.customFields = JSON.stringify(password.customFields);
        }

        if(password.edited instanceof Date) {
            password.edited = Math.floor(password.edited.getTime() / 1000);
        }
        password = this._convertTags(password);

        return password;
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param folder
     * @returns {*}
     */
    flattenFolder(folder) {
        if(folder.parent && typeof folder.parent !== 'string') {
            folder.parent = folder.parent.id;
        }
        if(folder.edited instanceof Date) {
            folder.edited = Math.floor(folder.edited.getTime() / 1000);
        }

        return folder;
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param tag
     * @returns {*}
     */
    flattenTag(tag) {
        if(tag.edited instanceof Date) {
            tag.edited = Math.floor(tag.edited.getTime() / 1000);
        }

        return tag;
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param share
     * @returns {*}
     */
    flattenShare(share) {
        if(share.expires !== null && share.expires instanceof Date) {
            share.expires = Math.floor(share.expires.getTime() / 1000);
        }

        return share;
    }

    /**
     *
     * @param password
     * @param strict
     * @returns {Object}
     */
    validatePassword(password, strict = false) {
        let definitions = this.getPasswordDefinition();
        return this._validateObject(password, definitions, strict);
    }

    /**
     *
     * @param folder
     * @param strict
     * @returns {Object}
     */
    validateFolder(folder, strict = false) {
        let definitions = this.getFolderDefinition();
        return this._validateObject(folder, definitions, strict);
    }

    /**
     *
     * @param tag
     * @param strict
     * @returns {Object}
     */
    validateTag(tag, strict = false) {
        let definitions = this.getTagDefinition();
        return this._validateObject(tag, definitions, strict);
    }

    /**
     *
     * @param attributes
     * @param definitions
     * @param strict
     * @returns object
     */
    _validateObject(attributes, definitions, strict = false) {
        let object = {};

        for(let property in definitions) {
            if(!definitions.hasOwnProperty(property)) continue;
            let definition = definitions[property];

            if(!attributes.hasOwnProperty(property)) {
                if(definition.required) throw new Error(`Property ${property} is required but missing`);
                object[property] = definition.hasOwnProperty('default') ? definition.default:null;
                continue;
            }

            let attribute = attributes[property],
                type      = typeof attribute;

            if(definition.required && (!attribute || 0 === attribute.length)) {
                throw new Error(`Property ${property} is required but missing`);
            }
            attribute = this._validateObjectAttributeType(definition, type, attribute, strict, property);
            attribute = this._validateObjectAttributeLength(definition, attribute, strict, property, type);

            if(definition.hasOwnProperty('allowed') && definition.allowed.indexOf(attribute) === -1) {
                if(!strict || !definition.hasOwnProperty('default')) {
                    throw new Error(`Property ${property} has invalid value`);
                }
                attribute = definition.default;
            }

            object[property] = attribute;
        }


        return object;
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param definition
     * @param type
     * @param attribute
     * @param strict
     * @param property
     * @returns {*}
     * @private
     */
    _validateObjectAttributeType(definition, type, attribute, strict, property) {
        if(definition.type && definition.type !== type && (definition.type !== 'array' || !Array.isArray(attribute))) {
            if(!strict && definition.type === 'boolean') {
                attribute = Boolean(attribute);
            } else if(!strict && definition.hasOwnProperty('default')) {
                attribute = definition.default;
            } else if(strict || definition.required) {
                throw new Error(`Property ${property} has invalid type ${type}`);
            } else {
                attribute = null;
            }
        }
        return attribute;
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param definition
     * @param attribute
     * @param strict
     * @param property
     * @param type
     * @returns {*}
     * @private
     */
    _validateObjectAttributeLength(definition, attribute, strict, property, type) {
        if(definition.length) {
            if(Array.isArray(attribute) && attribute.length > definition.length) {
                if(strict) throw new Error(`Property ${property} exceeds the maximum length of ${definition.length}`);
                attribute = attribute.slice(0, definition.length);
            } else if(type === 'string' && attribute.length > definition.length) {
                if(strict) throw new Error(`Property ${property} exceeds the maximum length of ${definition.length}`);
                attribute = attribute.substr(0, definition.length);
            }
        }
        return attribute;
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param data
     * @private
     */
    _convertTags(data) {
        if(data.hasOwnProperty('tags')) {
            if(Array.isArray(data.tags)) {
                for(let i = 0; i < data.tags.length; i++) {
                    let tag = data.tags[i];
                    if(typeof tag !== 'string') data.tags[i] = tag.id;
                }
            } else {
                let tags = [];
                for(let id in data.tags) {
                    if(data.tags.hasOwnProperty(id)) tags.push(id);
                }
                data.tags = tags;
            }
        }

        return data;
    }

    /**
     *
     * @param object
     * @private
     */
    _cloneObject(object) {
        let clone = new object.constructor();

        for(let key in object) {
            if(!object.hasOwnProperty(key)) continue;
            let element = object[key];

            if(Array.isArray(element)) {
                clone[key] = element.slice(0);
            } else if(element instanceof Date) {
                clone[key] = new Date(element.getTime());
            } else if(element === null) {
                clone[key] = null;
            } else if(typeof element === 'object') {
                clone[key] = this._cloneObject(element);
            } else {
                clone[key] = element;
            }
        }

        return clone;
    }


    /**
     * Internal
     */

    /**
     *
     * @param e
     * @returns {Promise}
     * @private
     */
    _createRejectedPromise(e) {
        return new Promise((resolve, reject) => {
            let error = {status: 'error', message: e.message, error: e};
            reject(error);
        });
    }

    /**
     *
     * @param data
     * @returns {{}}
     * @private
     */
    _processPasswordList(data) {
        let passwords = {};

        for(let i = 0; i < data.length; i++) {
            let password = this._processPassword(data[i]);
            passwords[password.id] = password;
        }

        return passwords;
    }

    /**
     *
     * @param password
     * @returns {{}}
     * @private
     */
    _processPassword(password) {
        if(password.hasOwnProperty('cseType') && password.cseType !== 'none') {
            this.config.encryption.decryptObject(password, 'password');
        } else {
            password._encrypted = false;
        }

        password.type = 'password';
        if(password.url) {
            let host    = this.parseUrl(password.url, 'host'),
                imgHost = this._removeCommonSubdomains(host),
                website = this._getWebsiteNameFromDomain(host);
            password.host = host;
            password.website = website;
            password.icon = this.getFaviconUrl(imgHost);
            password.preview = this.getPreviewUrl(imgHost, this.config.device);
        } else {
            password.host = null;
            password.website = '';
            password.icon = this.getFaviconUrl(null);
            password.preview = this.getPreviewUrl(null);
        }

        if(password.customFields) {
            password.customFields = JSON.parse(password.customFields);
        } else {
            password.customFields = {};
        }


        if(password.tags) {
            password.tags = this._processTagList(password.tags);
        }
        if(password.revisions) {
            password.revisions = this._processPasswordList(password.revisions);
        }
        if(typeof password.folder === 'object') {
            password.folder = this._processFolder(password.folder);
        }
        if(password.share !== null && typeof password.share === 'object') {
            password.share = this._processShare(password.share);
        }
        if(Array.isArray(password.shares)) {
            password.shares = this._processShareList(password.shares);
        }

        password.created = new Date(password.created * 1e3);
        password.updated = new Date(password.updated * 1e3);
        password.edited = new Date(password.edited * 1e3);

        return password;
    }

    /**
     *
     * @param data
     * @returns {{}}
     * @private
     */
    _processFolderList(data) {
        let folders = {};

        for(let i = 0; i < data.length; i++) {
            let folder = this._processFolder(data[i]);
            folders[folder.id] = folder;
        }

        return folders;
    }

    /**
     *
     * @param folder
     * @returns {{}}
     * @private
     */
    _processFolder(folder) {
        if(folder.hasOwnProperty('cseType') && folder.cseType !== 'none') {
            this.config.encryption.decryptObject(folder, 'folder');
        } else {
            folder._encrypted = false;
        }

        folder.type = 'folder';
        folder.icon = this._config.folderIcon;
        if(folder.folders) {
            folder.folders = this._processFolderList(folder.folders);
        }
        if(folder.passwords) {
            folder.passwords = this._processPasswordList(folder.passwords);
        }
        if(folder.revisions) {
            folder.revisions = this._processFolderList(folder.revisions);
        }
        if(typeof folder.parent !== 'string') {
            folder.parent = this._processFolder(folder.parent);
        }

        folder.created = new Date(folder.created * 1e3);
        folder.updated = new Date(folder.updated * 1e3);
        folder.edited = new Date(folder.edited * 1e3);

        return folder;
    }

    /**
     *
     * @param data
     * @returns {{}}
     * @private
     */
    _processTagList(data) {
        let tags = {};

        for(let i = 0; i < data.length; i++) {
            let tag = this._processTag(data[i]);
            tags[tag.id] = tag;
        }

        return tags;
    }

    /**
     *
     * @param tag
     * @returns {{}}
     * @private
     */
    _processTag(tag) {
        if(tag.hasOwnProperty('cseType') && tag.cseType !== 'none') {
            this.config.encryption.decryptObject(tag, 'tag');
        } else {
            tag._encrypted = false;
        }

        tag.type = 'tag';
        if(tag.passwords) {
            tag.passwords = this._processPasswordList(tag.passwords);
        }
        if(tag.revisions) {
            tag.revisions = this._processTagList(tag.revisions);
        }
        tag.created = new Date(tag.created * 1e3);
        tag.updated = new Date(tag.updated * 1e3);
        tag.edited = new Date(tag.edited * 1e3);

        return tag;
    }

    /**
     *
     * @param data
     * @returns {{}}
     * @private
     */
    _processShareList(data) {
        let shares = {};

        for(let i = 0; i < data.length; i++) {
            let share = this._processShare(data[i]);
            shares[share.id] = share;
        }

        return shares;
    }

    /**
     *
     * @param share
     * @returns {*}
     * @private
     */
    _processShare(share) {
        share.type = 'share';

        if(typeof share.password !== 'string') {
            share.password = this._processPassword(share.password);
        }

        share.created = new Date(share.created * 1e3);
        share.updated = new Date(share.updated * 1e3);

        share.owner.icon = this.getAvatarUrl(share.owner.id);
        share.receiver.icon = this.getAvatarUrl(share.receiver.id);
        if(share.expires !== null) share.expires = new Date(share.expires * 1e3);

        return share;
    }

    /**
     * Generates an automatic title from the given data
     *
     * @param data
     * @returns string
     * @private
     */
    _generatePasswordTitle(data) {
        if(data.url) {
            data.label = this._getWebsiteNameFromDomain(this.parseUrl(data.url, 'host'));

            if(data.username) {
                let username = String(data.username);
                if(data.username.indexOf('@') !== -1) username = username.substr(0, username.indexOf('@'));

                data.label = `${data.label} – ${username}`;
            }
        } else if(data.username) {
            data.label = String(data.username);
        } else {
            let date     = new Date(),
                text     = 'Password',
                l10n     = {'de': 'Passwort', 'cs': 'Heslo', 'fr': 'Mot de passe', 'nl': 'Wachtwoord', 'ru': 'Пароль'},
                language = navigator.language.substr(0, 2);
            if(l10n.hasOwnProperty(language)) text = l10n[language];
            date.setTime(data.created ? data.created * 1000:Date.now());

            data.label = `${text} ${date.toLocaleDateString()}`;
        }
    }

    /**
     * Converts a domain like www.example.com to example.com
     *
     * @param domain
     * @private
     */
    _getWebsiteNameFromDomain(domain) {
        if((domain.match(/\./g) || []).length > 2) {
            let array = domain.split('.');
            domain = '';
            for(let i = 0; i < 3; i++) {
                let part = array.pop();
                if(part === 'co' && i === 1) i--;
                domain = (i === 2 ? '':'.') + part + domain;
            }
        }

        return this._removeCommonSubdomains(domain, ['www', 'www2', 'www3']);
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param domain
     * @param extraDomains
     * @returns {*}
     * @private
     */
    _removeCommonSubdomains(domain, extraDomains = []) {
        let subdomains = ['m', 'en', 'web', 'auth', 'mail', 'email', 'login', 'signin', 'profile', 'account', navigator.language].concat(extraDomains),
            regex      = RegExp(`^(.+\\.)?(${subdomains.join('|')})\\.(.+\\..+)`);

        return domain.replace(regex, '$3');
    }


    /**
     * Internal functions
     */

    /**
     *
     * @private
     */
    _resetAuthorisation() {
        this._isAuthorized = false;
        this.config.encryption.unsetKeychain();
    }


    /**
     * Object Definitions
     */

    /**
     *
     * @returns object
     */
    getPasswordDefinition() {
        let cseKeys    = [''],
            cseTypes   = ['none'],
            cseDefault = 'none';

        if(this.hasEncryption) {
            cseDefault = this.config.cseMode;
            cseTypes.push('CSEv1r1');
            cseKeys = this.config.encryption.keys;
            cseKeys.push('');
        }

        return {
            id          : {
                type  : 'string',
                length: 36
            },
            username    : {
                type  : 'string',
                length: 64
            },
            password    : {
                type    : 'string',
                length  : 256,
                required: true
            },
            label       : {
                type   : 'string',
                length : 64,
                default: null
            },
            url         : {
                type   : 'string',
                length : 2048,
                default: null
            },
            notes       : {
                type   : 'string',
                length : 4096,
                default: null
            },
            customFields: {
                type   : 'string',
                length : 10240,
                default: '[]'
            },
            folder      : {
                type   : 'string',
                length : 36,
                default: '00000000-0000-0000-0000-000000000000'
            },
            edited      : {
                type   : 'number',
                default: 0
            },
            hidden      : {
                type   : 'boolean',
                default: false
            },
            trashed     : {
                type   : 'boolean',
                default: false
            },
            favorite    : {
                type   : 'boolean',
                default: false
            },
            cseKey      : {
                type   : 'string',
                length : 36,
                default: '',
                allowed: cseKeys
            },
            cseType     : {
                type   : 'string',
                length : 10,
                default: cseDefault,
                allowed: cseTypes
            },
            tags        : {
                type   : 'array',
                default: []
            },
            _encrypted  : {
                type   : 'boolean',
                default: false
            }
        };
    }

    /**
     *
     * @returns object
     */
    getFolderDefinition() {
        let cseKeys    = [''],
            cseTypes   = ['none'],
            cseDefault = 'none';

        if(this.hasEncryption) {
            cseDefault = this.config.cseMode;
            cseTypes.push('CSEv1r1');
            cseKeys = this.config.encryption.keys;
            cseKeys.push('');
        }

        return {
            id        : {
                type  : 'string',
                length: 36
            },
            label     : {
                type    : 'string',
                length  : 48,
                required: true
            },
            parent    : {
                type   : 'string',
                length : 36,
                default: '00000000-0000-0000-0000-000000000000'
            },
            edited    : {
                type   : 'number',
                default: 0
            },
            hidden    : {
                type   : 'boolean',
                default: false
            },
            trashed   : {
                type   : 'boolean',
                default: false
            },
            favorite  : {
                type   : 'boolean',
                default: false
            },
            cseKey    : {
                type   : 'string',
                length : 36,
                default: '',
                allowed: cseKeys
            },
            cseType   : {
                type   : 'string',
                length : 10,
                default: cseDefault,
                allowed: cseTypes
            },
            _encrypted: {
                type   : 'boolean',
                default: false
            }
        };
    }

    /**
     *
     * @returns object
     */
    getTagDefinition() {
        let cseKeys    = [''],
            cseTypes   = ['none'],
            cseDefault = 'none';

        if(this.hasEncryption) {
            cseDefault = this.config.cseMode;
            cseTypes.push('CSEv1r1');
            cseKeys = this.config.encryption.keys;
            cseKeys.push('');
        }

        return {
            id        : {
                type  : 'string',
                length: 36
            },
            label     : {
                type    : 'string',
                length  : 48,
                required: true
            },
            color     : {
                type    : 'string',
                length  : 48,
                required: true
            },
            edited    : {
                type   : 'number',
                default: 0
            },
            hidden    : {
                type   : 'boolean',
                default: false
            },
            trashed   : {
                type   : 'boolean',
                default: false
            },
            favorite  : {
                type   : 'boolean',
                default: false
            },
            cseKey    : {
                type   : 'string',
                length : 36,
                default: '',
                allowed: cseKeys
            },
            cseType   : {
                type   : 'string',
                length : 10,
                default: cseDefault,
                allowed: cseTypes
            },
            _encrypted: {
                type   : 'boolean',
                default: false
            }
        };
    }

    // noinspection JSMethodCanBeStatic
    /**
     *
     * @param url
     * @param component
     * @returns {*}
     */
    parseUrl(url, component = null) {
        if(url === undefined) return null;

        if(url.indexOf('://') === -1) url = `http://${url}`;

        let link = Url(url);
        if(component !== null) return link[component];

        return link;
    }
}