2021-05-13 18:57:37 +02:00
|
|
|
import { Store } from 'redux';
|
|
|
|
import JoplinServerApi from '../../JoplinServerApi';
|
|
|
|
import Folder from '../../models/Folder';
|
|
|
|
import Note from '../../models/Note';
|
|
|
|
import Setting from '../../models/Setting';
|
|
|
|
import { State, stateRootKey, StateShare } from './reducer';
|
|
|
|
|
|
|
|
export default class ShareService {
|
|
|
|
|
|
|
|
private static instance_: ShareService;
|
|
|
|
private api_: JoplinServerApi = null;
|
|
|
|
private store_: Store<any> = null;
|
|
|
|
|
|
|
|
public static instance(): ShareService {
|
|
|
|
if (this.instance_) return this.instance_;
|
|
|
|
this.instance_ = new ShareService();
|
|
|
|
return this.instance_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public initialize(store: Store<any>) {
|
|
|
|
this.store_ = store;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get enabled(): boolean {
|
2021-06-03 17:12:07 +02:00
|
|
|
return [9, 10].includes(Setting.value('sync.target')); // Joplin Server, Joplin Cloud targets
|
2021-05-13 18:57:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private get store(): Store<any> {
|
|
|
|
return this.store_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get state(): State {
|
|
|
|
return this.store.getState()[stateRootKey] as State;
|
|
|
|
}
|
|
|
|
|
|
|
|
private api(): JoplinServerApi {
|
|
|
|
if (this.api_) return this.api_;
|
|
|
|
|
2021-06-03 17:12:07 +02:00
|
|
|
const syncTargetId = Setting.value('sync.target');
|
|
|
|
|
2021-05-13 18:57:37 +02:00
|
|
|
this.api_ = new JoplinServerApi({
|
2021-06-03 17:12:07 +02:00
|
|
|
baseUrl: () => Setting.value(`sync.${syncTargetId}.path`),
|
|
|
|
username: () => Setting.value(`sync.${syncTargetId}.username`),
|
|
|
|
password: () => Setting.value(`sync.${syncTargetId}.password`),
|
2021-05-13 18:57:37 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return this.api_;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async shareFolder(folderId: string) {
|
|
|
|
const folder = await Folder.load(folderId);
|
|
|
|
if (!folder) throw new Error(`No such folder: ${folderId}`);
|
|
|
|
|
|
|
|
if (folder.parent_id) {
|
|
|
|
await Folder.save({ id: folder.id, parent_id: '' });
|
|
|
|
}
|
|
|
|
|
|
|
|
const share = await this.api().exec('POST', 'api/shares', {}, { folder_id: folderId });
|
|
|
|
|
|
|
|
// Note: race condition if the share is created but the app crashes
|
|
|
|
// before setting share_id on the folder. See unshareFolder() for info.
|
|
|
|
await Folder.save({ id: folder.id, share_id: share.id });
|
|
|
|
await Folder.updateAllShareIds();
|
|
|
|
|
|
|
|
return share;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async unshareFolder(folderId: string) {
|
|
|
|
const folder = await Folder.load(folderId);
|
|
|
|
if (!folder) throw new Error(`No such folder: ${folderId}`);
|
|
|
|
|
|
|
|
const share = this.shares.find(s => s.folder_id === folderId);
|
|
|
|
if (!share) throw new Error(`No share for folder: ${folderId}`);
|
|
|
|
|
|
|
|
// First, delete the share - which in turns is going to remove the items
|
|
|
|
// for all users, except the owner.
|
|
|
|
await this.deleteShare(share.id);
|
|
|
|
|
|
|
|
// Then reset the "share_id" field for the folder and all sub-items.
|
|
|
|
// This could potentially be done server-side, when deleting the share,
|
|
|
|
// but since clients are normally responsible for maintaining the
|
|
|
|
// share_id property, we do it here for consistency. It will also avoid
|
|
|
|
// conflicts because changes will come only from the clients.
|
|
|
|
//
|
|
|
|
// Note that there could be a race condition here if the share is
|
|
|
|
// deleted, but the app crashes just before setting share_id to "". It's
|
|
|
|
// very unlikely to happen so we leave like this for now.
|
|
|
|
//
|
|
|
|
// We could potentially have a clean up process at some point:
|
|
|
|
//
|
|
|
|
// - It would download all share objects
|
|
|
|
// - Then look for all items where the share_id is not in any of these
|
|
|
|
// shares objects
|
|
|
|
// - And set those to ""
|
|
|
|
//
|
|
|
|
// Likewise, it could apply the share_id to folders based on
|
|
|
|
// share.folder_id
|
|
|
|
//
|
|
|
|
// Setting the share_id is not critical - what matters is that when the
|
|
|
|
// share is deleted, other users no longer have access to the item, so
|
|
|
|
// can't change or read them.
|
|
|
|
await Folder.save({ id: folder.id, share_id: '' });
|
|
|
|
|
|
|
|
// It's ok if updateAllShareIds() doesn't run because it's executed on
|
|
|
|
// each sync too.
|
|
|
|
await Folder.updateAllShareIds();
|
|
|
|
}
|
|
|
|
|
2021-05-16 17:28:49 +02:00
|
|
|
public async shareNote(noteId: string): Promise<StateShare> {
|
2021-05-13 18:57:37 +02:00
|
|
|
const note = await Note.load(noteId);
|
|
|
|
if (!note) throw new Error(`No such note: ${noteId}`);
|
|
|
|
|
|
|
|
const share = await this.api().exec('POST', 'api/shares', {}, { note_id: noteId });
|
|
|
|
|
|
|
|
await Note.save({ id: note.id, is_shared: 1 });
|
|
|
|
|
|
|
|
return share;
|
|
|
|
}
|
|
|
|
|
2021-05-16 17:28:49 +02:00
|
|
|
public async unshareNote(noteId: string) {
|
|
|
|
const note = await Note.load(noteId);
|
|
|
|
if (!note) throw new Error(`No such note: ${noteId}`);
|
|
|
|
|
|
|
|
const shares = await this.refreshShares();
|
|
|
|
const noteShares = shares.filter(s => s.note_id === noteId);
|
|
|
|
|
|
|
|
const promises: Promise<void>[] = [];
|
|
|
|
|
|
|
|
for (const share of noteShares) {
|
|
|
|
promises.push(this.deleteShare(share.id));
|
|
|
|
}
|
|
|
|
|
|
|
|
await Promise.all(promises);
|
|
|
|
|
|
|
|
await Note.save({ id: note.id, is_shared: 0 });
|
|
|
|
}
|
|
|
|
|
2021-05-13 18:57:37 +02:00
|
|
|
public shareUrl(share: StateShare): string {
|
|
|
|
return `${this.api().baseUrl()}/shares/${share.id}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get shares() {
|
|
|
|
return this.state.shares;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get shareLinkNoteIds(): string[] {
|
|
|
|
return this.shares.filter(s => !!s.note_id).map(s => s.note_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async addShareRecipient(shareId: string, recipientEmail: string) {
|
|
|
|
return this.api().exec('POST', `api/shares/${shareId}/users`, {}, {
|
|
|
|
email: recipientEmail,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async deleteShareRecipient(shareUserId: string) {
|
|
|
|
await this.api().exec('DELETE', `api/share_users/${shareUserId}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async deleteShare(shareId: string) {
|
|
|
|
await this.api().exec('DELETE', `api/shares/${shareId}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async loadShares() {
|
|
|
|
return this.api().exec('GET', 'api/shares');
|
|
|
|
}
|
|
|
|
|
|
|
|
private async loadShareUsers(shareId: string) {
|
|
|
|
return this.api().exec('GET', `api/shares/${shareId}/users`);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async loadShareInvitations() {
|
|
|
|
return this.api().exec('GET', 'api/share_users');
|
|
|
|
}
|
|
|
|
|
|
|
|
public async respondInvitation(shareUserId: string, accept: boolean) {
|
|
|
|
if (accept) {
|
|
|
|
await this.api().exec('PATCH', `api/share_users/${shareUserId}`, null, { status: 1 });
|
|
|
|
} else {
|
|
|
|
await this.api().exec('PATCH', `api/share_users/${shareUserId}`, null, { status: 2 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async refreshShareInvitations() {
|
|
|
|
const result = await this.loadShareInvitations();
|
|
|
|
|
|
|
|
this.store.dispatch({
|
|
|
|
type: 'SHARE_INVITATION_SET',
|
|
|
|
shareInvitations: result.items,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-16 17:28:49 +02:00
|
|
|
public async refreshShares(): Promise<StateShare[]> {
|
2021-05-13 18:57:37 +02:00
|
|
|
const result = await this.loadShares();
|
|
|
|
|
|
|
|
this.store.dispatch({
|
|
|
|
type: 'SHARE_SET',
|
|
|
|
shares: result.items,
|
|
|
|
});
|
2021-05-16 17:28:49 +02:00
|
|
|
|
|
|
|
return result.items;
|
2021-05-13 18:57:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public async refreshShareUsers(shareId: string) {
|
|
|
|
const result = await this.loadShareUsers(shareId);
|
|
|
|
|
|
|
|
this.store.dispatch({
|
|
|
|
type: 'SHARE_USER_SET',
|
|
|
|
shareId: shareId,
|
|
|
|
shareUsers: result.items,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async maintenance() {
|
|
|
|
if (this.enabled) {
|
|
|
|
await this.refreshShareInvitations();
|
|
|
|
await this.refreshShares();
|
|
|
|
Setting.setValue('sync.userId', this.api().userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|