summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/drive.ts
blob: f11573685e16696512063138ba283d29db62dda0 (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
import Stream from './stream';
import StreamManager from './stream-manager';
import MiOS from '../../mios';

/**
 * Drive stream connection
 */
export class DriveStream extends Stream {
	constructor(os: MiOS, me) {
		super(os, 'drive', {
			i: me.account.token
		});
	}
}

export class DriveStreamManager extends StreamManager<DriveStream> {
	private me;
	private os: MiOS;

	constructor(os: MiOS, me) {
		super();

		this.me = me;
		this.os = os;
	}

	public getConnection() {
		if (this.connection == null) {
			this.connection = new DriveStream(this.os, this.me);
		}

		return this.connection;
	}
}