2018-05-17 16:52:06 +02:00
|
|
|
import * as papa from 'papaparse';
|
|
|
|
|
|
|
|
import { CipherType } from '../enums/cipherType';
|
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
import { ApiService } from '../abstractions/api.service';
|
2018-05-17 16:52:06 +02:00
|
|
|
import { CipherService } from '../abstractions/cipher.service';
|
|
|
|
import { ExportService as ExportServiceAbstraction } from '../abstractions/export.service';
|
|
|
|
import { FolderService } from '../abstractions/folder.service';
|
|
|
|
|
|
|
|
import { CipherView } from '../models/view/cipherView';
|
2018-07-05 20:39:58 +02:00
|
|
|
import { CollectionView } from '../models/view/collectionView';
|
2018-05-17 16:52:06 +02:00
|
|
|
import { FolderView } from '../models/view/folderView';
|
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
import { Cipher } from '../models/domain/cipher';
|
|
|
|
import { Collection } from '../models/domain/collection';
|
|
|
|
|
|
|
|
import { CipherData } from '../models/data/cipherData';
|
|
|
|
import { CollectionData } from '../models/data/collectionData';
|
2018-07-06 18:55:48 +02:00
|
|
|
import { CollectionDetailsResponse } from '../models/response/collectionResponse';
|
2018-07-05 20:39:58 +02:00
|
|
|
|
2018-12-17 16:32:02 +01:00
|
|
|
import { CipherWithIds as CipherExport } from '../models/export/cipherWithIds';
|
|
|
|
import { CollectionWithId as CollectionExport } from '../models/export/collectionWithId';
|
|
|
|
import { FolderWithId as FolderExport } from '../models/export/folderWithId';
|
|
|
|
|
2018-05-17 16:52:06 +02:00
|
|
|
export class ExportService implements ExportServiceAbstraction {
|
2018-07-05 20:39:58 +02:00
|
|
|
constructor(private folderService: FolderService, private cipherService: CipherService,
|
|
|
|
private apiService: ApiService) { }
|
2018-05-17 16:52:06 +02:00
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
async getExport(format: 'csv' | 'json' = 'csv'): Promise<string> {
|
2018-05-17 16:52:06 +02:00
|
|
|
let decFolders: FolderView[] = [];
|
|
|
|
let decCiphers: CipherView[] = [];
|
|
|
|
const promises = [];
|
|
|
|
|
|
|
|
promises.push(this.folderService.getAllDecrypted().then((folders) => {
|
|
|
|
decFolders = folders;
|
|
|
|
}));
|
|
|
|
|
|
|
|
promises.push(this.cipherService.getAllDecrypted().then((ciphers) => {
|
|
|
|
decCiphers = ciphers;
|
|
|
|
}));
|
|
|
|
|
|
|
|
await Promise.all(promises);
|
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
if (format === 'csv') {
|
2018-12-17 16:32:02 +01:00
|
|
|
const foldersMap = new Map<string, FolderView>();
|
|
|
|
decFolders.forEach((f) => {
|
|
|
|
foldersMap.set(f.id, f);
|
|
|
|
});
|
|
|
|
|
|
|
|
const exportCiphers: any[] = [];
|
|
|
|
decCiphers.forEach((c) => {
|
|
|
|
// only export logins and secure notes
|
|
|
|
if (c.type !== CipherType.Login && c.type !== CipherType.SecureNote) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (c.organizationId != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const cipher: any = {};
|
|
|
|
cipher.folder = c.folderId != null && foldersMap.has(c.folderId) ?
|
|
|
|
foldersMap.get(c.folderId).name : null;
|
|
|
|
cipher.favorite = c.favorite ? 1 : null;
|
|
|
|
this.buildCommonCipher(cipher, c);
|
|
|
|
exportCiphers.push(cipher);
|
|
|
|
});
|
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
return papa.unparse(exportCiphers);
|
|
|
|
} else {
|
2018-12-17 16:32:02 +01:00
|
|
|
const jsonDoc: any = {
|
|
|
|
folders: [],
|
|
|
|
items: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
decFolders.forEach((f) => {
|
2018-12-17 19:21:06 +01:00
|
|
|
if (f.id == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-12-17 16:32:02 +01:00
|
|
|
const folder = new FolderExport();
|
|
|
|
folder.build(f);
|
|
|
|
jsonDoc.folders.push(folder);
|
|
|
|
});
|
|
|
|
|
|
|
|
decCiphers.forEach((c) => {
|
|
|
|
if (c.organizationId != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const cipher = new CipherExport();
|
|
|
|
cipher.build(c);
|
|
|
|
cipher.collectionIds = null;
|
|
|
|
jsonDoc.items.push(cipher);
|
|
|
|
});
|
|
|
|
|
|
|
|
return JSON.stringify(jsonDoc, null, ' ');
|
2018-07-05 20:39:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async getOrganizationExport(organizationId: string, format: 'csv' | 'json' = 'csv'): Promise<string> {
|
|
|
|
const decCollections: CollectionView[] = [];
|
|
|
|
const decCiphers: CipherView[] = [];
|
|
|
|
const promises = [];
|
|
|
|
|
|
|
|
promises.push(this.apiService.getCollections(organizationId).then((collections) => {
|
2018-07-05 20:49:48 +02:00
|
|
|
const collectionPromises: any = [];
|
2018-07-05 20:39:58 +02:00
|
|
|
if (collections != null && collections.data != null && collections.data.length > 0) {
|
|
|
|
collections.data.forEach((c) => {
|
2018-07-06 18:55:48 +02:00
|
|
|
const collection = new Collection(new CollectionData(c as CollectionDetailsResponse));
|
2018-07-05 20:39:58 +02:00
|
|
|
collectionPromises.push(collection.decrypt().then((decCol) => {
|
|
|
|
decCollections.push(decCol);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return Promise.all(collectionPromises);
|
|
|
|
}));
|
|
|
|
|
|
|
|
promises.push(this.apiService.getCiphersOrganization(organizationId).then((ciphers) => {
|
2018-07-05 20:49:48 +02:00
|
|
|
const cipherPromises: any = [];
|
2018-07-05 20:39:58 +02:00
|
|
|
if (ciphers != null && ciphers.data != null && ciphers.data.length > 0) {
|
|
|
|
ciphers.data.forEach((c) => {
|
|
|
|
const cipher = new Cipher(new CipherData(c));
|
|
|
|
cipherPromises.push(cipher.decrypt().then((decCipher) => {
|
|
|
|
decCiphers.push(decCipher);
|
|
|
|
}));
|
2018-05-17 16:52:06 +02:00
|
|
|
});
|
|
|
|
}
|
2018-07-05 20:39:58 +02:00
|
|
|
return Promise.all(cipherPromises);
|
|
|
|
}));
|
2018-05-17 16:52:06 +02:00
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
await Promise.all(promises);
|
|
|
|
|
|
|
|
if (format === 'csv') {
|
2018-12-17 16:32:02 +01:00
|
|
|
const collectionsMap = new Map<string, CollectionView>();
|
|
|
|
decCollections.forEach((c) => {
|
|
|
|
collectionsMap.set(c.id, c);
|
|
|
|
});
|
|
|
|
|
|
|
|
const exportCiphers: any[] = [];
|
|
|
|
decCiphers.forEach((c) => {
|
|
|
|
// only export logins and secure notes
|
|
|
|
if (c.type !== CipherType.Login && c.type !== CipherType.SecureNote) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const cipher: any = {};
|
|
|
|
cipher.collections = [];
|
|
|
|
if (c.collectionIds != null) {
|
|
|
|
cipher.collections = c.collectionIds.filter((id) => collectionsMap.has(id))
|
|
|
|
.map((id) => collectionsMap.get(id).name);
|
|
|
|
}
|
|
|
|
this.buildCommonCipher(cipher, c);
|
|
|
|
exportCiphers.push(cipher);
|
|
|
|
});
|
|
|
|
|
2018-07-05 20:39:58 +02:00
|
|
|
return papa.unparse(exportCiphers);
|
|
|
|
} else {
|
2018-12-17 16:32:02 +01:00
|
|
|
const jsonDoc: any = {
|
|
|
|
collections: [],
|
|
|
|
items: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
decCollections.forEach((c) => {
|
|
|
|
const collection = new CollectionExport();
|
|
|
|
collection.build(c);
|
|
|
|
jsonDoc.collections.push(collection);
|
|
|
|
});
|
|
|
|
|
|
|
|
decCiphers.forEach((c) => {
|
|
|
|
const cipher = new CipherExport();
|
|
|
|
cipher.build(c);
|
|
|
|
jsonDoc.items.push(cipher);
|
|
|
|
});
|
2018-12-17 16:54:03 +01:00
|
|
|
return JSON.stringify(jsonDoc, null, ' ');
|
2018-07-05 20:39:58 +02:00
|
|
|
}
|
2018-05-17 16:52:06 +02:00
|
|
|
}
|
|
|
|
|
2018-12-17 16:32:02 +01:00
|
|
|
getFileName(prefix: string = null, extension: string = 'csv'): string {
|
2018-05-17 16:52:06 +02:00
|
|
|
const now = new Date();
|
|
|
|
const dateString =
|
|
|
|
now.getFullYear() + '' + this.padNumber(now.getMonth() + 1, 2) + '' + this.padNumber(now.getDate(), 2) +
|
|
|
|
this.padNumber(now.getHours(), 2) + '' + this.padNumber(now.getMinutes(), 2) +
|
|
|
|
this.padNumber(now.getSeconds(), 2);
|
|
|
|
|
2018-12-17 16:32:02 +01:00
|
|
|
return 'bitwarden' + (prefix ? ('_' + prefix) : '') + '_export_' + dateString + '.' + extension;
|
2018-05-17 16:52:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private padNumber(num: number, width: number, padCharacter: string = '0'): string {
|
|
|
|
const numString = num.toString();
|
|
|
|
return numString.length >= width ? numString :
|
|
|
|
new Array(width - numString.length + 1).join(padCharacter) + numString;
|
|
|
|
}
|
2018-07-05 20:39:58 +02:00
|
|
|
|
|
|
|
private buildCommonCipher(cipher: any, c: CipherView) {
|
|
|
|
cipher.type = null;
|
|
|
|
cipher.name = c.name;
|
|
|
|
cipher.notes = c.notes;
|
|
|
|
cipher.fields = null;
|
|
|
|
// Login props
|
|
|
|
cipher.login_uri = null;
|
|
|
|
cipher.login_username = null;
|
|
|
|
cipher.login_password = null;
|
|
|
|
cipher.login_totp = null;
|
|
|
|
|
|
|
|
if (c.fields) {
|
|
|
|
c.fields.forEach((f: any) => {
|
|
|
|
if (!cipher.fields) {
|
|
|
|
cipher.fields = '';
|
|
|
|
} else {
|
|
|
|
cipher.fields += '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
cipher.fields += ((f.name || '') + ': ' + f.value);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (c.type) {
|
|
|
|
case CipherType.Login:
|
|
|
|
cipher.type = 'login';
|
|
|
|
cipher.login_username = c.login.username;
|
|
|
|
cipher.login_password = c.login.password;
|
|
|
|
cipher.login_totp = c.login.totp;
|
|
|
|
|
|
|
|
if (c.login.uris) {
|
|
|
|
cipher.login_uri = [];
|
|
|
|
c.login.uris.forEach((u) => {
|
|
|
|
cipher.login_uri.push(u.uri);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CipherType.SecureNote:
|
|
|
|
cipher.type = 'note';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cipher;
|
|
|
|
}
|
2018-05-17 16:52:06 +02:00
|
|
|
}
|