-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78a91ca
commit f14a083
Showing
9 changed files
with
229 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { ICollaborativeDrive } from '@jupyter/collaborative-drive'; | ||
import { | ||
ForkManager, | ||
IForkManager, | ||
IForkManagerToken | ||
} from '@jupyter/docprovider'; | ||
|
||
import { | ||
JupyterFrontEnd, | ||
JupyterFrontEndPlugin | ||
} from '@jupyterlab/application'; | ||
|
||
export const forkManagerPlugin: JupyterFrontEndPlugin<IForkManager> = { | ||
id: '@jupyter/docprovider-extension:forkManager', | ||
autoStart: true, | ||
requires: [ICollaborativeDrive], | ||
provides: IForkManagerToken, | ||
activate: (app: JupyterFrontEnd, drive: ICollaborativeDrive) => { | ||
const eventManager = app.serviceManager.events; | ||
const manager = new ForkManager({ drive, eventManager }); | ||
return manager; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
import { ICollaborativeDrive } from '@jupyter/collaborative-drive'; | ||
import { URLExt } from '@jupyterlab/coreutils'; | ||
import { Event } from '@jupyterlab/services'; | ||
import { ISignal, Signal } from '@lumino/signaling'; | ||
|
||
import { requestAPI, ROOM_FORK_URL } from './requests'; | ||
import { | ||
IAllForksResponse, | ||
IForkChangedEvent, | ||
IForkCreationResponse, | ||
IForkManager | ||
} from './tokens'; | ||
import { IForkProvider } from './ydrive'; | ||
|
||
const JUPYTER_COLLABORATION_FORK_EVENTS_URI = | ||
'https://schema.jupyter.org/jupyter_collaboration/fork/v1'; | ||
|
||
export class ForkManager implements IForkManager { | ||
constructor(options: ForkManager.IOptions) { | ||
const { drive, eventManager } = options; | ||
this._drive = drive; | ||
this._eventManager = eventManager; | ||
this._eventManager.stream.connect(this._handleEvent, this); | ||
} | ||
|
||
get isDisposed(): boolean { | ||
return this._disposed; | ||
} | ||
get forkAdded(): ISignal<ForkManager, IForkChangedEvent> { | ||
return this._forkAddedSignal; | ||
} | ||
get forkDeleted(): ISignal<ForkManager, IForkChangedEvent> { | ||
return this._forkDeletedSignal; | ||
} | ||
|
||
dispose(): void { | ||
if (this._disposed) { | ||
return; | ||
} | ||
this._eventManager?.stream.disconnect(this._handleEvent); | ||
this._disposed = true; | ||
} | ||
async createFork(options: { | ||
rootId: string; | ||
synchronize: boolean; | ||
label?: string; | ||
description?: string; | ||
}): Promise<IForkCreationResponse | undefined> { | ||
const { rootId, label, description, synchronize } = options; | ||
const init: RequestInit = { | ||
method: 'PUT', | ||
body: JSON.stringify({ label, description, synchronize }) | ||
}; | ||
const url = URLExt.join(ROOM_FORK_URL, rootId); | ||
const response = await requestAPI<IForkCreationResponse>(url, init); | ||
return response; | ||
} | ||
|
||
async getAllForks(rootId: string) { | ||
const url = URLExt.join(ROOM_FORK_URL, rootId); | ||
const init = { method: 'GET' }; | ||
const response = await requestAPI<IAllForksResponse>(url, init); | ||
return response; | ||
} | ||
|
||
async deleteFork(options: { forkId: string; merge: boolean }): Promise<void> { | ||
const { forkId, merge } = options; | ||
const url = URLExt.join(ROOM_FORK_URL, forkId); | ||
const query = URLExt.objectToQueryString({ merge }); | ||
const init = { method: 'DELETE' }; | ||
await requestAPI(`${url}${query}`, init); | ||
} | ||
getProvider(options: { | ||
documentPath: string; | ||
format: string; | ||
type: string; | ||
}): IForkProvider | undefined { | ||
const { documentPath, format, type } = options; | ||
const drive = this._drive; | ||
if (drive) { | ||
const docPath = documentPath.slice(drive.name.length + 1); | ||
const provider = drive.providers.get(`${format}:${type}:${docPath}`); | ||
return provider as IForkProvider | undefined; | ||
} | ||
return; | ||
} | ||
|
||
private _handleEvent(_: Event.IManager, emission: Event.Emission) { | ||
if (emission.schema_id === JUPYTER_COLLABORATION_FORK_EVENTS_URI) { | ||
switch (emission.action) { | ||
case 'create': { | ||
this._forkAddedSignal.emit(emission as any); | ||
break; | ||
} | ||
case 'delete': { | ||
this._forkDeletedSignal.emit(emission as any); | ||
break; | ||
} | ||
default: | ||
break; | ||
} | ||
} | ||
} | ||
|
||
private _disposed = false; | ||
private _drive: ICollaborativeDrive | undefined; | ||
private _eventManager: Event.IManager | undefined; | ||
private _forkAddedSignal = new Signal<ForkManager, IForkChangedEvent>(this); | ||
private _forkDeletedSignal = new Signal<ForkManager, IForkChangedEvent>(this); | ||
} | ||
|
||
export namespace ForkManager { | ||
export interface IOptions { | ||
drive: ICollaborativeDrive; | ||
eventManager: Event.IManager; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { Token } from '@lumino/coreutils'; | ||
import { IDisposable } from '@lumino/disposable'; | ||
import { ISignal } from '@lumino/signaling'; | ||
export interface IForkInfo { | ||
description?: string; | ||
root_roomid: string; | ||
synchronize: boolean; | ||
title?: string; | ||
} | ||
|
||
export interface IForkCreationResponse { | ||
fork_info: IForkInfo; | ||
fork_roomid: string; | ||
sessionId: string; | ||
} | ||
|
||
export interface IAllForksResponse { | ||
[forkId: string]: IForkInfo; | ||
} | ||
|
||
export interface IForkChangedEvent { | ||
fork_info: IForkInfo; | ||
fork_roomid: string; | ||
username?: string; | ||
} | ||
|
||
export interface IForkManager extends IDisposable { | ||
createFork(options: { | ||
rootId: string; | ||
synchronize: boolean; | ||
label?: string; | ||
description?: string; | ||
}): Promise<IForkCreationResponse | undefined>; | ||
getAllForks(documentId: string): Promise<IAllForksResponse>; | ||
deleteFork(options: { forkId: string; merge: boolean }): Promise<void>; | ||
|
||
forkAdded: ISignal<IForkManager, IForkChangedEvent>; | ||
forkDeleted: ISignal<IForkManager, IForkChangedEvent>; | ||
} | ||
|
||
export const IForkManagerToken = new Token<IForkManager>( | ||
'@jupyter/docprovider:IForkManagerToken' | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters