2018-03-30 15:30:30 -04:00
|
|
|
import {Injectable} from '@angular/core';
|
2019-03-03 10:30:12 +01:00
|
|
|
import {NetworkService} from '../../../model/network/network.service';
|
2018-03-30 15:30:30 -04:00
|
|
|
import {SettingsService} from '../settings.service';
|
|
|
|
import {AbstractSettingsService} from '../_abstract/abstract.settings.service';
|
2019-03-03 10:30:12 +01:00
|
|
|
import {DatabaseType, IndexingConfig} from '../../../../../common/config/private/IPrivateConfig';
|
2019-07-27 22:56:12 +02:00
|
|
|
import {TaskProgressDTO} from '../../../../../common/entities/settings/TaskProgressDTO';
|
2018-05-22 20:27:07 -04:00
|
|
|
import {BehaviorSubject} from 'rxjs';
|
2019-03-03 10:30:12 +01:00
|
|
|
import {IndexingDTO} from '../../../../../common/entities/settings/IndexingDTO';
|
|
|
|
import {StatisticDTO} from '../../../../../common/entities/settings/StatisticDTO';
|
2017-07-25 21:09:37 +02:00
|
|
|
|
|
|
|
@Injectable()
|
2017-07-27 23:10:16 +02:00
|
|
|
export class IndexingSettingsService extends AbstractSettingsService<IndexingConfig> {
|
2017-07-25 21:09:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(private _networkService: NetworkService,
|
|
|
|
_settingsService: SettingsService) {
|
|
|
|
super(_settingsService);
|
|
|
|
}
|
|
|
|
|
2017-07-27 23:10:16 +02:00
|
|
|
public updateSettings(settings: IndexingConfig): Promise<void> {
|
2018-03-30 15:30:30 -04:00
|
|
|
return this._networkService.putJson('/settings/indexing', {settings: settings});
|
2017-07-27 23:10:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-25 21:09:37 +02:00
|
|
|
public isSupported(): boolean {
|
2018-05-03 18:23:48 -04:00
|
|
|
return this._settingsService.settings.value.Server.database.type !== DatabaseType.memory;
|
2017-07-25 21:09:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-12-09 23:25:39 +01:00
|
|
|
getStatistic() {
|
|
|
|
return this._networkService.getJson<StatisticDTO>('/admin/statistic');
|
|
|
|
}
|
2017-07-25 21:09:37 +02:00
|
|
|
}
|