2018-06-05 05:10:41 +02:00
|
|
|
import {
|
2018-08-21 04:21:13 +02:00
|
|
|
ChangeDetectorRef,
|
2018-06-05 05:10:41 +02:00
|
|
|
Component,
|
2018-08-21 04:21:13 +02:00
|
|
|
NgZone,
|
|
|
|
OnDestroy,
|
2018-06-06 23:25:57 +02:00
|
|
|
OnInit,
|
|
|
|
ViewChild,
|
|
|
|
ViewContainerRef,
|
2018-06-05 05:10:41 +02:00
|
|
|
} from '@angular/core';
|
2018-06-06 23:25:57 +02:00
|
|
|
import {
|
|
|
|
ActivatedRoute,
|
|
|
|
Router,
|
|
|
|
} from '@angular/router';
|
2018-06-05 05:10:41 +02:00
|
|
|
|
2021-10-15 00:59:43 +02:00
|
|
|
import { first } from 'rxjs/operators';
|
|
|
|
|
2021-06-07 20:13:58 +02:00
|
|
|
import { CipherType } from 'jslib-common/enums/cipherType';
|
2018-06-05 19:31:25 +02:00
|
|
|
|
2021-06-07 20:13:58 +02:00
|
|
|
import { CipherView } from 'jslib-common/models/view/cipherView';
|
2018-06-06 23:25:57 +02:00
|
|
|
|
2018-07-11 17:39:48 +02:00
|
|
|
import { OrganizationsComponent } from '../settings/organizations.component';
|
2018-07-17 23:22:51 +02:00
|
|
|
import { UpdateKeyComponent } from '../settings/update-key.component';
|
2018-06-07 05:23:14 +02:00
|
|
|
import { AddEditComponent } from './add-edit.component';
|
2018-06-06 23:25:57 +02:00
|
|
|
import { AttachmentsComponent } from './attachments.component';
|
|
|
|
import { CiphersComponent } from './ciphers.component';
|
2018-06-12 19:08:47 +02:00
|
|
|
import { CollectionsComponent } from './collections.component';
|
2018-06-06 23:25:57 +02:00
|
|
|
import { FolderAddEditComponent } from './folder-add-edit.component';
|
|
|
|
import { GroupingsComponent } from './groupings.component';
|
2018-06-12 19:08:47 +02:00
|
|
|
import { ShareComponent } from './share.component';
|
2018-06-06 23:25:57 +02:00
|
|
|
|
2021-06-07 20:13:58 +02:00
|
|
|
import { CryptoService } from 'jslib-common/abstractions/crypto.service';
|
|
|
|
import { I18nService } from 'jslib-common/abstractions/i18n.service';
|
|
|
|
import { MessagingService } from 'jslib-common/abstractions/messaging.service';
|
|
|
|
import { PlatformUtilsService } from 'jslib-common/abstractions/platformUtils.service';
|
|
|
|
import { SyncService } from 'jslib-common/abstractions/sync.service';
|
|
|
|
import { TokenService } from 'jslib-common/abstractions/token.service';
|
|
|
|
import { UserService } from 'jslib-common/abstractions/user.service';
|
2018-06-06 23:25:57 +02:00
|
|
|
|
2021-06-07 20:13:58 +02:00
|
|
|
import { BroadcasterService } from 'jslib-angular/services/broadcaster.service';
|
2021-08-27 14:50:58 +02:00
|
|
|
import { ModalService } from 'jslib-angular/services/modal.service';
|
2018-08-21 04:21:13 +02:00
|
|
|
|
|
|
|
const BroadcasterSubscriptionId = 'VaultComponent';
|
|
|
|
|
2018-06-05 05:10:41 +02:00
|
|
|
@Component({
|
|
|
|
selector: 'app-vault',
|
|
|
|
templateUrl: 'vault.component.html',
|
|
|
|
})
|
2018-08-21 04:21:13 +02:00
|
|
|
export class VaultComponent implements OnInit, OnDestroy {
|
2020-08-17 16:04:38 +02:00
|
|
|
@ViewChild(GroupingsComponent, { static: true }) groupingsComponent: GroupingsComponent;
|
|
|
|
@ViewChild(CiphersComponent, { static: true }) ciphersComponent: CiphersComponent;
|
|
|
|
@ViewChild(OrganizationsComponent, { static: true }) organizationsComponent: OrganizationsComponent;
|
|
|
|
@ViewChild('attachments', { read: ViewContainerRef, static: true }) attachmentsModalRef: ViewContainerRef;
|
|
|
|
@ViewChild('folderAddEdit', { read: ViewContainerRef, static: true }) folderAddEditModalRef: ViewContainerRef;
|
|
|
|
@ViewChild('cipherAddEdit', { read: ViewContainerRef, static: true }) cipherAddEditModalRef: ViewContainerRef;
|
|
|
|
@ViewChild('share', { read: ViewContainerRef, static: true }) shareModalRef: ViewContainerRef;
|
|
|
|
@ViewChild('collections', { read: ViewContainerRef, static: true }) collectionsModalRef: ViewContainerRef;
|
|
|
|
@ViewChild('updateKeyTemplate', { read: ViewContainerRef, static: true }) updateKeyModalRef: ViewContainerRef;
|
2018-06-06 23:25:57 +02:00
|
|
|
|
|
|
|
favorites: boolean = false;
|
|
|
|
type: CipherType = null;
|
|
|
|
folderId: string = null;
|
|
|
|
collectionId: string = null;
|
2018-07-12 17:34:51 +02:00
|
|
|
showVerifyEmail = false;
|
|
|
|
showBrowserOutdated = false;
|
|
|
|
showUpdateKey = false;
|
2018-07-20 16:44:17 +02:00
|
|
|
showPremiumCallout = false;
|
2021-11-22 14:41:40 +01:00
|
|
|
showRedeemSponsorship = false;
|
2021-07-21 11:32:27 +02:00
|
|
|
showProviders = false;
|
2020-04-08 22:48:30 +02:00
|
|
|
deleted: boolean = false;
|
2021-04-27 18:49:02 +02:00
|
|
|
trashCleanupWarning: string = null;
|
2018-06-06 23:25:57 +02:00
|
|
|
|
2021-11-22 14:41:40 +01:00
|
|
|
|
2018-06-06 23:25:57 +02:00
|
|
|
constructor(private syncService: SyncService, private route: ActivatedRoute,
|
2018-11-30 16:28:46 +01:00
|
|
|
private router: Router, private changeDetectorRef: ChangeDetectorRef,
|
2021-08-27 14:50:58 +02:00
|
|
|
private i18nService: I18nService, private modalService: ModalService,
|
2018-07-18 15:21:23 +02:00
|
|
|
private tokenService: TokenService, private cryptoService: CryptoService,
|
2018-07-20 16:44:17 +02:00
|
|
|
private messagingService: MessagingService, private userService: UserService,
|
2020-08-11 17:30:30 +02:00
|
|
|
private platformUtilsService: PlatformUtilsService, private broadcasterService: BroadcasterService,
|
|
|
|
private ngZone: NgZone) { }
|
2018-06-06 23:25:57 +02:00
|
|
|
|
|
|
|
async ngOnInit() {
|
2018-07-12 17:34:51 +02:00
|
|
|
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
|
|
|
|
this.showBrowserOutdated = window.navigator.userAgent.indexOf('MSIE') !== -1;
|
2021-04-27 18:49:02 +02:00
|
|
|
this.trashCleanupWarning = this.i18nService.t(
|
|
|
|
this.platformUtilsService.isSelfHost() ? 'trashCleanupWarningSelfHosted' : 'trashCleanupWarning'
|
|
|
|
);
|
2018-07-12 17:34:51 +02:00
|
|
|
|
2021-10-15 00:59:43 +02:00
|
|
|
this.route.queryParams.pipe(first()).subscribe(async params => {
|
2018-06-26 18:03:11 +02:00
|
|
|
await this.syncService.fullSync(false);
|
2018-08-31 23:23:36 +02:00
|
|
|
|
|
|
|
this.showUpdateKey = !(await this.cryptoService.hasEncKey());
|
|
|
|
const canAccessPremium = await this.userService.canAccessPremium();
|
|
|
|
this.showPremiumCallout = !this.showVerifyEmail && !canAccessPremium &&
|
|
|
|
!this.platformUtilsService.isSelfHost();
|
2018-08-21 04:21:13 +02:00
|
|
|
|
2021-07-21 11:32:27 +02:00
|
|
|
this.showProviders = (await this.userService.getAllProviders()).length > 0;
|
|
|
|
|
2021-11-22 14:41:40 +01:00
|
|
|
const allOrgs = await this.userService.getAllOrganizations();
|
|
|
|
this.showRedeemSponsorship = allOrgs.some(o => o.familySponsorshipAvailable) && !allOrgs.some(o => o.familySponsorshipFriendlyName != null);
|
|
|
|
|
2018-07-11 17:39:48 +02:00
|
|
|
await Promise.all([
|
|
|
|
this.groupingsComponent.load(),
|
|
|
|
this.organizationsComponent.load(),
|
|
|
|
]);
|
2018-06-06 23:25:57 +02:00
|
|
|
|
|
|
|
if (params == null) {
|
|
|
|
this.groupingsComponent.selectedAll = true;
|
2019-03-19 17:44:22 +01:00
|
|
|
await this.ciphersComponent.reload();
|
2018-06-06 23:25:57 +02:00
|
|
|
} else {
|
2020-04-08 22:48:30 +02:00
|
|
|
if (params.deleted) {
|
|
|
|
this.groupingsComponent.selectedTrash = true;
|
|
|
|
await this.filterDeleted();
|
|
|
|
} else if (params.favorites) {
|
2018-12-20 16:06:40 +01:00
|
|
|
this.groupingsComponent.selectedFavorites = true;
|
|
|
|
await this.filterFavorites();
|
|
|
|
} else if (params.type) {
|
|
|
|
const t = parseInt(params.type, null);
|
|
|
|
this.groupingsComponent.selectedType = t;
|
|
|
|
await this.filterCipherType(t);
|
|
|
|
} else if (params.folderId) {
|
|
|
|
this.groupingsComponent.selectedFolder = true;
|
|
|
|
this.groupingsComponent.selectedFolderId = params.folderId;
|
|
|
|
await this.filterFolder(params.folderId);
|
|
|
|
} else if (params.collectionId) {
|
|
|
|
this.groupingsComponent.selectedCollectionId = params.collectionId;
|
|
|
|
await this.filterCollection(params.collectionId);
|
|
|
|
} else {
|
|
|
|
this.groupingsComponent.selectedAll = true;
|
2019-03-19 17:44:22 +01:00
|
|
|
await this.ciphersComponent.reload();
|
2018-12-20 16:06:40 +01:00
|
|
|
}
|
2018-06-06 23:25:57 +02:00
|
|
|
}
|
2018-08-31 23:23:36 +02:00
|
|
|
|
|
|
|
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
|
|
|
|
this.ngZone.run(async () => {
|
|
|
|
switch (message.command) {
|
|
|
|
case 'syncCompleted':
|
|
|
|
if (message.successfully) {
|
|
|
|
await Promise.all([
|
|
|
|
this.groupingsComponent.load(),
|
|
|
|
this.organizationsComponent.load(),
|
|
|
|
this.ciphersComponent.load(this.ciphersComponent.filter),
|
|
|
|
]);
|
|
|
|
this.changeDetectorRef.detectChanges();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2018-06-06 23:25:57 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-08-21 04:21:13 +02:00
|
|
|
ngOnDestroy() {
|
|
|
|
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:25:57 +02:00
|
|
|
async clearGroupingFilters() {
|
2018-07-04 15:55:52 +02:00
|
|
|
this.ciphersComponent.showAddNew = true;
|
2018-06-07 15:05:25 +02:00
|
|
|
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchVault');
|
2019-03-19 17:44:22 +01:00
|
|
|
await this.ciphersComponent.reload();
|
2018-06-06 23:25:57 +02:00
|
|
|
this.clearFilters();
|
|
|
|
this.go();
|
|
|
|
}
|
|
|
|
|
|
|
|
async filterFavorites() {
|
2018-07-04 15:55:52 +02:00
|
|
|
this.ciphersComponent.showAddNew = true;
|
2018-06-07 15:05:25 +02:00
|
|
|
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchFavorites');
|
2021-02-03 18:41:33 +01:00
|
|
|
await this.ciphersComponent.reload(c => c.favorite);
|
2018-06-06 23:25:57 +02:00
|
|
|
this.clearFilters();
|
|
|
|
this.favorites = true;
|
|
|
|
this.go();
|
|
|
|
}
|
|
|
|
|
2020-04-08 22:48:30 +02:00
|
|
|
async filterDeleted() {
|
|
|
|
this.ciphersComponent.showAddNew = false;
|
|
|
|
this.ciphersComponent.deleted = true;
|
|
|
|
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchTrash');
|
|
|
|
await this.ciphersComponent.reload(null, true);
|
|
|
|
this.clearFilters();
|
|
|
|
this.deleted = true;
|
|
|
|
this.go();
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:25:57 +02:00
|
|
|
async filterCipherType(type: CipherType) {
|
2018-07-04 15:55:52 +02:00
|
|
|
this.ciphersComponent.showAddNew = true;
|
2018-06-07 15:05:25 +02:00
|
|
|
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchType');
|
2021-02-03 18:41:33 +01:00
|
|
|
await this.ciphersComponent.reload(c => c.type === type);
|
2018-06-06 23:25:57 +02:00
|
|
|
this.clearFilters();
|
|
|
|
this.type = type;
|
|
|
|
this.go();
|
|
|
|
}
|
|
|
|
|
|
|
|
async filterFolder(folderId: string) {
|
2018-07-04 15:55:52 +02:00
|
|
|
this.ciphersComponent.showAddNew = true;
|
2018-06-06 23:25:57 +02:00
|
|
|
folderId = folderId === 'none' ? null : folderId;
|
2018-06-07 15:05:25 +02:00
|
|
|
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchFolder');
|
2021-02-03 18:41:33 +01:00
|
|
|
await this.ciphersComponent.reload(c => c.folderId === folderId);
|
2018-06-06 23:25:57 +02:00
|
|
|
this.clearFilters();
|
|
|
|
this.folderId = folderId == null ? 'none' : folderId;
|
|
|
|
this.go();
|
|
|
|
}
|
|
|
|
|
|
|
|
async filterCollection(collectionId: string) {
|
2018-10-22 22:46:48 +02:00
|
|
|
this.ciphersComponent.showAddNew = true;
|
2018-06-07 15:05:25 +02:00
|
|
|
this.groupingsComponent.searchPlaceholder = this.i18nService.t('searchCollection');
|
2021-02-03 18:41:33 +01:00
|
|
|
await this.ciphersComponent.reload(c => c.collectionIds != null &&
|
2019-03-19 17:44:22 +01:00
|
|
|
c.collectionIds.indexOf(collectionId) > -1);
|
2018-06-06 23:25:57 +02:00
|
|
|
this.clearFilters();
|
|
|
|
this.collectionId = collectionId;
|
|
|
|
this.go();
|
|
|
|
}
|
|
|
|
|
2018-06-07 05:00:57 +02:00
|
|
|
filterSearchText(searchText: string) {
|
|
|
|
this.ciphersComponent.searchText = searchText;
|
2018-08-13 22:27:17 +02:00
|
|
|
this.ciphersComponent.search(200);
|
2018-06-07 05:00:57 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 15:21:23 +02:00
|
|
|
async editCipherAttachments(cipher: CipherView) {
|
2018-08-29 15:22:28 +02:00
|
|
|
const canAccessPremium = await this.userService.canAccessPremium();
|
|
|
|
if (cipher.organizationId == null && !canAccessPremium) {
|
2018-07-18 15:21:23 +02:00
|
|
|
this.messagingService.send('premiumRequired');
|
|
|
|
return;
|
|
|
|
} else if (cipher.organizationId != null) {
|
|
|
|
const org = await this.userService.getOrganization(cipher.organizationId);
|
|
|
|
if (org != null && (org.maxStorageGb == null || org.maxStorageGb === 0)) {
|
|
|
|
this.messagingService.send('upgradeOrganization', { organizationId: cipher.organizationId });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-09 19:29:30 +02:00
|
|
|
let madeAttachmentChanges = false;
|
2021-08-27 14:50:58 +02:00
|
|
|
const [modal] = await this.modalService.openViewRef(AttachmentsComponent, this.attachmentsModalRef, comp => {
|
|
|
|
comp.cipherId = cipher.id;
|
|
|
|
comp.onUploadedAttachment.subscribe(() => madeAttachmentChanges = true);
|
|
|
|
comp.onDeletedAttachment.subscribe(() => madeAttachmentChanges = true);
|
|
|
|
comp.onReuploadedAttachment.subscribe(() => madeAttachmentChanges = true);
|
|
|
|
});
|
2018-06-06 23:25:57 +02:00
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
modal.onClosed.subscribe(async () => {
|
2018-06-09 19:29:30 +02:00
|
|
|
if (madeAttachmentChanges) {
|
|
|
|
await this.ciphersComponent.refresh();
|
|
|
|
}
|
|
|
|
madeAttachmentChanges = false;
|
2018-06-06 23:25:57 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
async shareCipher(cipher: CipherView) {
|
|
|
|
const [modal] = await this.modalService.openViewRef(ShareComponent, this.shareModalRef, comp => {
|
|
|
|
comp.cipherId = cipher.id;
|
|
|
|
comp.onSharedCipher.subscribe(async () => {
|
|
|
|
modal.close();
|
|
|
|
await this.ciphersComponent.refresh();
|
|
|
|
});
|
2018-06-12 17:46:11 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
async editCipherCollections(cipher: CipherView) {
|
|
|
|
const [modal] = await this.modalService.openViewRef(CollectionsComponent, this.collectionsModalRef, comp => {
|
|
|
|
comp.cipherId = cipher.id;
|
|
|
|
comp.onSavedCollections.subscribe(async () => {
|
|
|
|
modal.close();
|
|
|
|
await this.ciphersComponent.refresh();
|
|
|
|
});
|
2018-06-12 19:08:47 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:25:57 +02:00
|
|
|
async addFolder() {
|
2021-08-27 14:50:58 +02:00
|
|
|
const [modal] = await this.modalService.openViewRef(FolderAddEditComponent, this.folderAddEditModalRef, comp => {
|
|
|
|
comp.folderId = null;
|
|
|
|
comp.onSavedFolder.subscribe(async () => {
|
|
|
|
modal.close();
|
|
|
|
await this.groupingsComponent.loadFolders();
|
|
|
|
});
|
2018-06-06 23:25:57 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async editFolder(folderId: string) {
|
2021-08-27 14:50:58 +02:00
|
|
|
const [modal] = await this.modalService.openViewRef(FolderAddEditComponent, this.folderAddEditModalRef, comp => {
|
|
|
|
comp.folderId = folderId;
|
|
|
|
comp.onSavedFolder.subscribe(async () => {
|
|
|
|
modal.close();
|
|
|
|
await this.groupingsComponent.loadFolders();
|
|
|
|
});
|
|
|
|
comp.onDeletedFolder.subscribe(async () => {
|
|
|
|
modal.close();
|
|
|
|
await this.groupingsComponent.loadFolders();
|
|
|
|
await this.filterFolder('none');
|
|
|
|
this.groupingsComponent.selectedFolderId = null;
|
|
|
|
});
|
2018-06-06 23:25:57 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
async addCipher() {
|
|
|
|
const component = await this.editCipher(null);
|
2018-06-07 05:23:14 +02:00
|
|
|
component.type = this.type;
|
|
|
|
component.folderId = this.folderId === 'none' ? null : this.folderId;
|
2018-10-22 22:46:48 +02:00
|
|
|
if (this.collectionId != null) {
|
2021-02-03 18:41:33 +01:00
|
|
|
const collection = this.groupingsComponent.collections.filter(c => c.id === this.collectionId);
|
2018-10-22 22:46:48 +02:00
|
|
|
if (collection.length > 0) {
|
|
|
|
component.organizationId = collection[0].organizationId;
|
|
|
|
component.collectionIds = [this.collectionId];
|
|
|
|
}
|
|
|
|
}
|
2018-06-07 05:23:14 +02:00
|
|
|
}
|
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
async editCipher(cipher: CipherView) {
|
|
|
|
const [modal, childComponent] = await this.modalService.openViewRef(AddEditComponent, this.cipherAddEditModalRef, comp => {
|
|
|
|
comp.cipherId = cipher == null ? null : cipher.id;
|
|
|
|
comp.onSavedCipher.subscribe(async (c: CipherView) => {
|
|
|
|
modal.close();
|
|
|
|
await this.ciphersComponent.refresh();
|
|
|
|
});
|
|
|
|
comp.onDeletedCipher.subscribe(async (c: CipherView) => {
|
|
|
|
modal.close();
|
|
|
|
await this.ciphersComponent.refresh();
|
|
|
|
});
|
|
|
|
comp.onRestoredCipher.subscribe(async (c: CipherView) => {
|
|
|
|
modal.close();
|
|
|
|
await this.ciphersComponent.refresh();
|
|
|
|
});
|
2018-06-07 05:23:14 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return childComponent;
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
async cloneCipher(cipher: CipherView) {
|
|
|
|
const component = await this.editCipher(cipher);
|
2020-02-10 20:03:36 +01:00
|
|
|
component.cloneMode = true;
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:50:58 +02:00
|
|
|
async updateKey() {
|
|
|
|
await this.modalService.openViewRef(UpdateKeyComponent, this.updateKeyModalRef);
|
2018-07-17 23:22:51 +02:00
|
|
|
}
|
|
|
|
|
2018-06-06 23:25:57 +02:00
|
|
|
private clearFilters() {
|
|
|
|
this.folderId = null;
|
|
|
|
this.collectionId = null;
|
|
|
|
this.favorites = false;
|
|
|
|
this.type = null;
|
2020-04-08 22:48:30 +02:00
|
|
|
this.deleted = false;
|
2018-06-06 23:25:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private go(queryParams: any = null) {
|
|
|
|
if (queryParams == null) {
|
|
|
|
queryParams = {
|
|
|
|
favorites: this.favorites ? true : null,
|
|
|
|
type: this.type,
|
|
|
|
folderId: this.folderId,
|
|
|
|
collectionId: this.collectionId,
|
2020-04-08 22:48:30 +02:00
|
|
|
deleted: this.deleted ? true : null,
|
2018-06-06 23:25:57 +02:00
|
|
|
};
|
|
|
|
}
|
2018-06-05 05:10:41 +02:00
|
|
|
|
2018-11-30 16:28:46 +01:00
|
|
|
this.router.navigate([], {
|
|
|
|
relativeTo: this.route,
|
|
|
|
queryParams: queryParams,
|
|
|
|
replaceUrl: true,
|
|
|
|
});
|
2018-06-06 23:25:57 +02:00
|
|
|
}
|
2018-06-05 05:10:41 +02:00
|
|
|
}
|