2018-03-31 03:30:30 +08:00
|
|
|
import {Injectable} from '@angular/core';
|
|
|
|
import {NetworkService} from '../../model/network/network.service';
|
|
|
|
import {DatabaseType} from '../../../../common/config/private/IPrivateConfig';
|
|
|
|
import {ClientConfig} from '../../../../common/config/public/ConfigClass';
|
|
|
|
import {SettingsService} from '../settings.service';
|
|
|
|
import {AbstractSettingsService} from '../_abstract/abstract.settings.service';
|
2017-07-15 21:29:04 +08:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ShareSettingsService extends AbstractSettingsService<ClientConfig.SharingConfig> {
|
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
_settingsService: SettingsService) {
|
2017-07-15 23:29:40 +08:00
|
|
|
super(_settingsService);
|
2017-07-15 21:29:04 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-31 03:30:30 +08:00
|
|
|
public isSupported(): boolean {
|
2018-05-04 07:17:08 +08:00
|
|
|
return this._settingsService.settings.value.Server.database.type !== DatabaseType.memory;
|
2017-07-15 21:29:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public updateSettings(settings: ClientConfig.SharingConfig): Promise<void> {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this._networkService.putJson('/settings/share', {settings: settings});
|
2017-07-15 21:29:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|