2018-03-30 15:30:30 -04: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 15:29:04 +02:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ShareSettingsService extends AbstractSettingsService<ClientConfig.SharingConfig> {
|
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
_settingsService: SettingsService) {
|
2017-07-15 17:29:40 +02:00
|
|
|
super(_settingsService);
|
2017-07-15 15:29:04 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-30 15:30:30 -04:00
|
|
|
public isSupported(): boolean {
|
2018-05-24 21:29:05 -04:00
|
|
|
return this._settingsService.settings.value.Server.database.type !== DatabaseType.memory &&
|
|
|
|
this._settingsService.settings.value.Client.authenticationRequired === true;
|
2017-07-15 15:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public updateSettings(settings: ClientConfig.SharingConfig): Promise<void> {
|
2018-03-30 15:30:30 -04:00
|
|
|
return this._networkService.putJson('/settings/share', {settings: settings});
|
2017-07-15 15:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|