You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
5.3 KiB
TypeScript
165 lines
5.3 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { PostsService } from 'app/posts.services';
|
|
import { isoLangs } from './locales_list';
|
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
import {DomSanitizer} from '@angular/platform-browser';
|
|
import { MatDialog } from '@angular/material/dialog';
|
|
import { ArgModifierDialogComponent } from 'app/dialogs/arg-modifier-dialog/arg-modifier-dialog.component';
|
|
import { CURRENT_VERSION } from 'app/consts';
|
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
import { CookiesUploaderDialogComponent } from 'app/dialogs/cookies-uploader-dialog/cookies-uploader-dialog.component';
|
|
|
|
@Component({
|
|
selector: 'app-settings',
|
|
templateUrl: './settings.component.html',
|
|
styleUrls: ['./settings.component.scss']
|
|
})
|
|
export class SettingsComponent implements OnInit {
|
|
all_locales = isoLangs;
|
|
supported_locales = ['en', 'es', 'de'];
|
|
initialLocale = localStorage.getItem('locale');
|
|
|
|
initial_config = null;
|
|
new_config = null
|
|
loading_config = false;
|
|
generated_bookmarklet_code = null;
|
|
bookmarkletAudioOnly = false;
|
|
|
|
_settingsSame = true;
|
|
|
|
latestGithubRelease = null;
|
|
CURRENT_VERSION = CURRENT_VERSION
|
|
|
|
get settingsAreTheSame() {
|
|
this._settingsSame = this.settingsSame()
|
|
return this._settingsSame;
|
|
}
|
|
|
|
set settingsAreTheSame(val) {
|
|
this._settingsSame = val;
|
|
}
|
|
|
|
constructor(public postsService: PostsService, private snackBar: MatSnackBar, private sanitizer: DomSanitizer,
|
|
private dialog: MatDialog) { }
|
|
|
|
ngOnInit() {
|
|
this.getConfig();
|
|
|
|
this.generated_bookmarklet_code = this.sanitizer.bypassSecurityTrustUrl(this.generateBookmarkletCode());
|
|
|
|
this.getLatestGithubRelease();
|
|
}
|
|
|
|
getConfig() {
|
|
this.initial_config = this.postsService.config;
|
|
this.new_config = JSON.parse(JSON.stringify(this.initial_config));
|
|
}
|
|
|
|
settingsSame() {
|
|
return JSON.stringify(this.new_config) === JSON.stringify(this.initial_config);
|
|
}
|
|
|
|
saveSettings() {
|
|
const settingsToSave = {'YoutubeDLMaterial': this.new_config};
|
|
this.postsService.setConfig(settingsToSave).subscribe(res => {
|
|
if (res['success']) {
|
|
if (!this.initial_config['Advanced']['multi_user_mode'] && this.new_config['Advanced']['multi_user_mode']) {
|
|
// multi user mode was enabled, let's check if default admin account exists
|
|
this.postsService.checkAdminCreationStatus(true);
|
|
}
|
|
// sets new config as old config
|
|
this.initial_config = JSON.parse(JSON.stringify(this.new_config));
|
|
this.postsService.reload_config.next(true);
|
|
}
|
|
}, err => {
|
|
console.error('Failed to save config!');
|
|
})
|
|
}
|
|
|
|
generateAPIKey() {
|
|
this.postsService.generateNewAPIKey().subscribe(res => {
|
|
if (res['new_api_key']) {
|
|
this.initial_config.API.API_key = res['new_api_key'];
|
|
this.new_config.API.API_key = res['new_api_key'];
|
|
}
|
|
});
|
|
}
|
|
|
|
localeSelectChanged(new_val) {
|
|
localStorage.setItem('locale', new_val);
|
|
this.openSnackBar('Language successfully changed! Reload to update the page.')
|
|
}
|
|
|
|
generateBookmarklet() {
|
|
this.bookmarksite('YTDL-Material', this.generated_bookmarklet_code);
|
|
}
|
|
|
|
generateBookmarkletCode() {
|
|
const currentURL = window.location.href.split('#')[0];
|
|
const homePageWithArgsURL = currentURL + '#/home;url=';
|
|
const audioOnly = this.bookmarkletAudioOnly;
|
|
// tslint:disable-next-line: max-line-length
|
|
const bookmarkletCode = `javascript:(function()%7Bwindow.open('${homePageWithArgsURL}' + encodeURIComponent(window.location) + ';audioOnly=${audioOnly}')%7D)()`;
|
|
return bookmarkletCode;
|
|
}
|
|
|
|
bookmarkletAudioOnlyChanged(event: MatCheckboxChange): void {
|
|
this.bookmarkletAudioOnly = event.checked;
|
|
this.generated_bookmarklet_code = this.sanitizer.bypassSecurityTrustUrl(this.generateBookmarkletCode());
|
|
}
|
|
|
|
// not currently functioning on most platforms. hence not in use
|
|
bookmarksite(title, url) {
|
|
// Internet Explorer
|
|
if (document.all) {
|
|
window['external']['AddFavorite'](url, title);
|
|
} else if (window['chrome']) {
|
|
// Google Chrome
|
|
this.openSnackBar('Chrome users must drag the \'Alternate URL\' link to your bookmarks.');
|
|
} else if (window['sidebar']) {
|
|
// Firefox
|
|
window['sidebar'].addPanel(title, url, '');
|
|
} else if (window['opera'] && window.print) {
|
|
// Opera
|
|
const elem = document.createElement('a');
|
|
elem.setAttribute('href', url);
|
|
elem.setAttribute('title', title);
|
|
elem.setAttribute('rel', 'sidebar');
|
|
elem.click();
|
|
}
|
|
}
|
|
|
|
openArgsModifierDialog() {
|
|
const dialogRef = this.dialog.open(ArgModifierDialogComponent, {
|
|
data: {
|
|
initial_args: this.new_config['Downloader']['custom_args']
|
|
}
|
|
});
|
|
dialogRef.afterClosed().subscribe(new_args => {
|
|
if (new_args !== null && new_args !== undefined) {
|
|
this.new_config['Downloader']['custom_args'] = new_args;
|
|
}
|
|
});
|
|
}
|
|
|
|
getLatestGithubRelease() {
|
|
this.postsService.getLatestGithubRelease().subscribe(res => {
|
|
this.latestGithubRelease = res;
|
|
});
|
|
}
|
|
|
|
openCookiesUploaderDialog() {
|
|
this.dialog.open(CookiesUploaderDialogComponent, {
|
|
width: '65vw'
|
|
});
|
|
}
|
|
|
|
// snackbar helper
|
|
public openSnackBar(message: string, action: string = '') {
|
|
this.snackBar.open(message, action, {
|
|
duration: 2000,
|
|
});
|
|
}
|
|
|
|
}
|