import type { TFile } from 'obsidian'; import { MarkdownView, Notice, parseYaml, Plugin, stringifyYaml, TFolder } from 'obsidian'; import { requestUrl, normalizePath } from 'obsidian'; import type { MediaType } from 'src/utils/MediaType'; import { APIManager } from './api/APIManager'; import { BoardGameGeekAPI } from './api/apis/BoardGameGeekAPI'; import { ComicVineAPI } from './api/apis/ComicVineAPI'; import { GiantBombAPI } from './api/apis/GiantBombAPI'; import { MALAPI } from './api/apis/MALAPI'; import { MALAPIManga } from './api/apis/MALAPIManga'; import { MobyGamesAPI } from './api/apis/MobyGamesAPI'; import { MusicBrainzAPI } from './api/apis/MusicBrainzAPI'; import { OMDbAPI } from './api/apis/OMDbAPI'; import { OpenLibraryAPI } from './api/apis/OpenLibraryAPI'; import { SteamAPI } from './api/apis/SteamAPI'; import { TMDBMovieAPI } from './api/apis/TMDBMovieAPI'; import { TMDBSeasonAPI } from './api/apis/TMDBSeasonAPI'; import { TMDBSeriesAPI } from './api/apis/TMDBSeriesAPI'; import { VNDBAPI } from './api/apis/VNDBAPI'; import { WikipediaAPI } from './api/apis/WikipediaAPI'; import { ConfirmOverwriteModal } from './modals/ConfirmOverwriteModal'; import type { SeasonSelectModalElement } from './modals/MediaDbSeasonSelectModal'; import { MediaDbSeasonSelectModal } from './modals/MediaDbSeasonSelectModal'; import type { MediaTypeModel } from './models/MediaTypeModel'; import type { SeasonModel } from './models/SeasonModel'; import { PropertyMapper } from './settings/PropertyMapper'; import { PropertyMappingModel } from './settings/PropertyMapping'; import type { MediaDbPluginSettings } from './settings/Settings'; import { getDefaultSettings, MediaDbSettingTab } from './settings/Settings'; import { BulkImportHelper } from './utils/BulkImportHelper'; import { DateFormatter } from './utils/DateFormatter'; import { MEDIA_TYPES, MediaTypeManager } from './utils/MediaTypeManager'; import type { SearchModalOptions } from './utils/ModalHelper'; import { ModalHelper } from './utils/ModalHelper'; import type { CreateNoteOptions } from './utils/Utils'; import { replaceIllegalFileNameCharactersInString, unCamelCase, hasTemplaterPlugin, useTemplaterPluginInFile } from './utils/Utils'; import 'src/styles.css'; export type Metadata = Record; export interface MediaTypeModelObj { id: string; type: MediaType; dataSource: string; } export default class MediaDbPlugin extends Plugin { settings!: MediaDbPluginSettings; apiManager!: APIManager; mediaTypeManager!: MediaTypeManager; modelPropertyMapper!: PropertyMapper; modalHelper!: ModalHelper; bulkImportHelper!: BulkImportHelper; dateFormatter!: DateFormatter; frontMatterRexExpPattern: string = '^(---)\\n[\\s\\S]*?\\n---'; async onload(): Promise { this.apiManager = new APIManager(); // register APIs this.apiManager.registerAPI(new OMDbAPI(this)); this.apiManager.registerAPI(new MALAPI(this)); this.apiManager.registerAPI(new MALAPIManga(this)); this.apiManager.registerAPI(new WikipediaAPI(this)); this.apiManager.registerAPI(new MusicBrainzAPI(this)); this.apiManager.registerAPI(new SteamAPI(this)); this.apiManager.registerAPI(new TMDBSeriesAPI(this)); this.apiManager.registerAPI(new TMDBSeasonAPI(this)); this.apiManager.registerAPI(new TMDBMovieAPI(this)); this.apiManager.registerAPI(new BoardGameGeekAPI(this)); this.apiManager.registerAPI(new OpenLibraryAPI(this)); this.apiManager.registerAPI(new ComicVineAPI(this)); this.apiManager.registerAPI(new MobyGamesAPI(this)); this.apiManager.registerAPI(new GiantBombAPI(this)); this.apiManager.registerAPI(new VNDBAPI(this)); this.mediaTypeManager = new MediaTypeManager(); this.modelPropertyMapper = new PropertyMapper(this); this.modalHelper = new ModalHelper(this); this.bulkImportHelper = new BulkImportHelper(this); this.dateFormatter = new DateFormatter(); await this.loadSettings(); // register the settings tab this.addSettingTab(new MediaDbSettingTab(this.app, this)); this.mediaTypeManager.updateTemplates(this.settings); this.mediaTypeManager.updateFolders(this.settings); this.dateFormatter.setFormat(this.settings.customDateFormat); // add icon to the left ribbon const ribbonIconEl = this.addRibbonIcon('database', 'Add new Media DB entry', () => this.createEntryWithAdvancedSearchModal()); ribbonIconEl.addClass('obsidian-media-db-plugin-ribbon-class'); this.registerEvent( this.app.workspace.on('file-menu', (menu, file) => { if (file instanceof TFolder) { menu.addItem(item => { item.setTitle('Import folder as Media DB entries') .setIcon('database') .onClick(() => this.bulkImportHelper.import(file)); }); } }), ); // register command to open search modal this.addCommand({ id: 'open-media-db-search-modal', name: 'Create Media DB entry', callback: () => this.createEntryWithSearchModal(), }); for (const mediaType of MEDIA_TYPES) { this.addCommand({ id: `open-media-db-search-modal-with-${mediaType}`, name: `Create Media DB entry (${unCamelCase(mediaType)})`, callback: () => this.createEntryWithSearchModal({ preselectedTypes: [mediaType] }), }); } this.addCommand({ id: 'open-media-db-advanced-search-modal', name: 'Create Media DB entry (advanced search)', callback: () => this.createEntryWithAdvancedSearchModal(), }); // register command to open id search modal this.addCommand({ id: 'open-media-db-id-search-modal', name: 'Create Media DB entry by id', callback: () => this.createEntryWithIdSearchModal(), }); // register command to update the open note this.addCommand({ id: 'update-media-db-note', name: 'Update open note (this will recreate the note)', checkCallback: (checking: boolean) => { if (!this.app.workspace.getActiveFile()) { return false; } if (!checking) { void this.updateActiveNote(false); } return true; }, }); this.addCommand({ id: 'update-media-db-note-metadata', name: 'Update metadata', checkCallback: (checking: boolean) => { if (!this.app.workspace.getActiveFile()) { return false; } if (!checking) { void this.updateActiveNote(true); } return true; }, }); // register link insert command this.addCommand({ id: 'add-media-db-link', name: 'Insert link', checkCallback: (checking: boolean) => { if (!this.app.workspace.getActiveFile()) { return false; } if (!checking) { void this.createLinkWithSearchModal(); } return true; }, }); } async createLinkWithSearchModal(): Promise { const apiSearchResults = await this.modalHelper.openAdvancedSearchModal({}, async advancedSearchModalData => { return await this.apiManager.query(advancedSearchModalData.query, advancedSearchModalData.apis); }); if (!apiSearchResults) { return; } const selectResults = await this.modalHelper.openSelectModal({ elements: apiSearchResults, multiSelect: false }, async selectModalData => { return await this.queryDetails(selectModalData.selected); }); if (!selectResults || selectResults.length < 1) { return; } const link = `[${selectResults[0].title}](${selectResults[0].url})`; const view = this.app.workspace.getActiveViewOfType(MarkdownView); // Make sure the user is editing a Markdown file. if (view) { view.editor.replaceRange(link, view.editor.getCursor()); } } async createEntryWithSearchModal(searchModalOptions?: SearchModalOptions): Promise { let types: string[] = []; let apiSearchResults = await this.modalHelper.openSearchModal(searchModalOptions ?? {}, async searchModalData => { types = searchModalData.types; const apis = this.apiManager.apis.filter(x => x.hasTypeOverlap(searchModalData.types)).map(x => x.apiName); try { return await this.apiManager.query(searchModalData.query, apis); } catch (e) { console.warn('MDB | Query failed:', e); new Notice(`Search failed: ${e}`); return []; } }); if (!apiSearchResults || apiSearchResults.length === 0) { new Notice('No results found.'); return; } // filter the results apiSearchResults = apiSearchResults.filter(x => types.contains(x.type)); if (apiSearchResults.length === 0) { new Notice('No results found for the selected types.'); return; } // Show selection modal - for seasons, skip detail query const selectResults = types.length === 1 && types[0] === 'season' ? await this.modalHelper.openSelectModal( { elements: apiSearchResults, description: 'Select one search result to proceed.', submitButtonText: 'Ok', }, async selectModalData => selectModalData.selected, ) : await this.modalHelper.openSelectModal({ elements: apiSearchResults }, async selectModalData => this.queryDetails(selectModalData.selected)); if (!selectResults || selectResults.length === 0) { return; } // Handle season selection for both direct season searches and series-to-season conversion const seasonHandlingResult = await this.handleSeasonWorkflow(types, selectResults); if (seasonHandlingResult.handled) { return; } // Show preview and confirm const confirmed = await this.modalHelper.openPreviewModal({ elements: selectResults }, async previewModalData => previewModalData.confirmed); if (!confirmed) { return; } // User confirmed, create notes and exit await this.createMediaDbNotes(selectResults); } /** * Handles the season workflow for both direct season searches and series-to-season conversion. * Returns an object indicating what happened and how to proceed. */ private async handleSeasonWorkflow(types: string[], selectResults: MediaTypeModel[]): Promise<{ handled: boolean; seasonsCreated?: boolean }> { // Case 1: User searched specifically for seasons and selected a series from TMDB if (types.length === 1 && types[0] === 'season' && selectResults.length === 1 && selectResults[0].dataSource === 'TMDBSeasonAPI') { const created = await this.showSeasonSelectAndCreate(selectResults[0].id, selectResults[0].englishTitle || selectResults[0].title); return { handled: true, seasonsCreated: created }; } // Case 2: User searched for series but it's actually from TMDBSeasonAPI // (This happens when searching for seasons returns series results) if (types.includes('series') && selectResults.some(r => r.dataSource === 'TMDBSeriesAPI')) { const seriesResults = selectResults.filter(r => r.dataSource === 'TMDBSeriesAPI'); // If only one series result and user searched for seasons, show season selection if (seriesResults.length === 1 && types.includes('season')) { const created = await this.showSeasonSelectAndCreate(seriesResults[0].id, seriesResults[0].title); return { handled: true, seasonsCreated: created }; } } return { handled: false }; } /** * Shows the season selection modal for a given series and creates notes for selected seasons. * Returns true if seasons were successfully created, false if cancelled. */ private async showSeasonSelectAndCreate(seriesId: string, seriesTitle: string): Promise { const tmdbSeasonAPI = this.apiManager.getApiByName('TMDBSeasonAPI') as TMDBSeasonAPI; if (!tmdbSeasonAPI) { new Notice('TMDBSeasonAPI not available.'); return false; } try { // Fetch all seasons for the selected series const allSeasons = await tmdbSeasonAPI.getSeasonsForSeries(seriesId); if (!allSeasons || allSeasons.length === 0) { new Notice('No seasons found for this series.'); return false; } // Show season selection modal const selectedSeasons = await this.showSeasonSelectModal(allSeasons, seriesTitle); if (!selectedSeasons || selectedSeasons.length === 0) { return false; } // Create notes for all selected seasons in parallel await this.createNotesForSelectedSeasons(selectedSeasons, allSeasons, tmdbSeasonAPI); new Notice(`Successfully created ${selectedSeasons.length} season ${selectedSeasons.length === 1 ? 'entry' : 'entries'}.`); return true; } catch (e) { console.warn('MDB | Error in season selection workflow:', e); new Notice(`Error loading seasons: ${e}`); return false; } } /** * Shows the season selection modal and returns the selected seasons. */ private async showSeasonSelectModal(allSeasons: SeasonModel[], seriesTitle: string): Promise { const modal = new MediaDbSeasonSelectModal( this, allSeasons.map(s => ({ season_number: s.seasonNumber, name: s.seasonTitle || s.title, episode_count: s.episodes || 0, air_date: s.year, poster_path: s.image, })), true, seriesTitle, ); return new Promise(resolve => { modal.setSubmitCb(resolve); modal.open(); }); } /** * Creates notes for all selected seasons by fetching full metadata and creating entries. */ private async createNotesForSelectedSeasons(selectedSeasons: SeasonSelectModalElement[], allSeasons: SeasonModel[], tmdbSeasonAPI: TMDBSeasonAPI): Promise { await Promise.all( selectedSeasons.map(async selectedSeason => { const seasonModel = allSeasons.find(s => s.seasonNumber === selectedSeason.season_number); if (seasonModel) { try { // Fetch full metadata using getById const fullMetadata = await tmdbSeasonAPI.getById(seasonModel.id); await this.createMediaDbNotes([fullMetadata]); } catch (e) { console.warn(`MDB | Failed to create season ${selectedSeason.season_number}:`, e); new Notice(`Failed to create season ${selectedSeason.season_number}: ${e}`); } } }), ); } async createEntryWithAdvancedSearchModal(): Promise { const apiSearchResults = await this.modalHelper.openAdvancedSearchModal({}, async advancedSearchModalData => { return await this.apiManager.query(advancedSearchModalData.query, advancedSearchModalData.apis); }); if (!apiSearchResults || apiSearchResults.length === 0) { new Notice('No results found.'); return; } let selectResults: MediaTypeModel[]; const proceed: boolean = false; while (!proceed) { selectResults = (await this.modalHelper.openSelectModal({ elements: apiSearchResults }, async selectModalData => { return await this.queryDetails(selectModalData.selected); })) ?? []; if (!selectResults || selectResults.length < 1) { return; } const confirmed = await this.modalHelper.openPreviewModal({ elements: selectResults }, async previewModalData => { return previewModalData.confirmed; }); if (!confirmed) { return; } break; } await this.createMediaDbNotes(selectResults!); } async createEntryWithIdSearchModal(): Promise { let idSearchResult: MediaTypeModel | undefined = undefined; let proceed: boolean = false; while (!proceed) { idSearchResult = await this.modalHelper.openIdSearchModal({}, async idSearchModalData => { return await this.apiManager.queryDetailedInfoById(idSearchModalData.query, idSearchModalData.api); }); if (!idSearchResult) { return; } proceed = await this.modalHelper.openPreviewModal({ elements: [idSearchResult] }, async previewModalData => { return previewModalData.confirmed; }); } if (!idSearchResult) { return; } await this.createMediaDbNoteFromModel(idSearchResult, { attachTemplate: true, openNote: true }); } async createMediaDbNotes(models: MediaTypeModel[], attachFile?: TFile): Promise { // Create notes in parallel for better performance const results = await Promise.allSettled(models.map(model => this.createMediaDbNoteFromModel(model, { attachTemplate: true, attachFile: attachFile }))); // Report any failures const failures = results.filter(r => r.status === 'rejected'); if (failures.length > 0) { console.warn('MDB | Some notes failed to create:', failures); new Notice(`${models.length - failures.length} of ${models.length} notes created successfully.`); } } async queryDetails(models: MediaTypeModel[]): Promise { // Query details in parallel for better performance const results = await Promise.allSettled(models.map(model => this.apiManager.queryDetailedInfo(model))); // Filter out failures and return successful results const detailModels: MediaTypeModel[] = results .filter((r): r is PromiseFulfilledResult => r.status === 'fulfilled' && r.value !== undefined) .map(r => r.value!); // Log failures for debugging const failures = results.filter(r => r.status === 'rejected'); if (failures.length > 0) { console.warn('MDB | Some detail queries failed:', failures); } return detailModels; } async createMediaDbNoteFromModel(mediaTypeModel: MediaTypeModel, options: CreateNoteOptions): Promise { try { console.debug('MDB | creating new note'); options.openNote = this.settings.openNoteInNewTab; if (this.settings.imageDownload) { await this.downloadImageForMediaModel(mediaTypeModel); } const fileContent = await this.generateMediaDbNoteContents(mediaTypeModel, options); options.folder ??= await this.mediaTypeManager.getFolder(mediaTypeModel, this.app); const targetFile = await this.createNote(this.mediaTypeManager.getFileName(mediaTypeModel), fileContent, options); if (this.settings.enableTemplaterIntegration) { await useTemplaterPluginInFile(this.app, targetFile); } } catch (e) { console.warn(e); new Notice(`${e}`); } } /** * Tries to download the image for a media model. * * @param mediaTypeModel * @returns true if the image was downloaded, false otherwise */ private async downloadImageForMediaModel(mediaTypeModel: MediaTypeModel): Promise { if (mediaTypeModel.image && typeof mediaTypeModel.image === 'string' && mediaTypeModel.image.startsWith('http')) { try { const imageUrl = mediaTypeModel.image; const imageExt = imageUrl.split('.').pop()?.split(/#|\?/)[0] ?? 'jpg'; const imageFileName = `${replaceIllegalFileNameCharactersInString(`${mediaTypeModel.type}_${mediaTypeModel.title} (${mediaTypeModel.year})`)}.${imageExt}`; const imagePath = normalizePath(`${this.settings.imageFolder}/${imageFileName}`); if (!this.app.vault.getAbstractFileByPath(this.settings.imageFolder)) { await this.app.vault.createFolder(this.settings.imageFolder); } if (!this.app.vault.getAbstractFileByPath(imagePath)) { const response = await requestUrl({ url: imageUrl, method: 'GET' }); await this.app.vault.createBinary(imagePath, response.arrayBuffer); } // Update model to use local image path mediaTypeModel.image = `[[${imagePath}]]`; return true; } catch (e) { console.warn('MDB | Failed to download image:', e); } } return false; } generateMediaDbNoteFrontmatterPreview(mediaTypeModel: MediaTypeModel): string { const fileMetadata = this.modelPropertyMapper.convertObject(mediaTypeModel.toMetaDataObject()); return stringifyYaml(fileMetadata); } /** * Generates the content of a note from a media model and some options. * * @param mediaTypeModel * @param options */ async generateMediaDbNoteContents(mediaTypeModel: MediaTypeModel, options: CreateNoteOptions): Promise { let template = await this.mediaTypeManager.getTemplate(mediaTypeModel, this.app); let fileMetadata: Record; if (this.settings.useDefaultFrontMatter) { fileMetadata = this.modelPropertyMapper.convertObject(mediaTypeModel.toMetaDataObject()); } else { fileMetadata = { id: mediaTypeModel.id, type: mediaTypeModel.type, dataSource: mediaTypeModel.dataSource, }; } let fileContent = ''; template = options.attachTemplate ? template : ''; ({ fileMetadata, fileContent } = await this.attachFile(fileMetadata, fileContent, options.attachFile)); ({ fileMetadata, fileContent } = await this.attachTemplate(fileMetadata, fileContent, template)); if (this.settings.enableTemplaterIntegration && hasTemplaterPlugin(this.app)) { // Include the media variable in all templater commands by using a top level JavaScript execution command. fileContent = `---\n<%* const media = ${JSON.stringify(mediaTypeModel)} %>\n${stringifyYaml(fileMetadata)}---\n${fileContent}`; } else { fileContent = `---\n${stringifyYaml(fileMetadata)}---\n${fileContent}`; } return fileContent; } async attachFile(fileMetadata: Metadata, fileContent: string, fileToAttach?: TFile): Promise<{ fileMetadata: Metadata; fileContent: string }> { if (!fileToAttach) { return { fileMetadata: fileMetadata, fileContent: fileContent }; } const attachFileMetadata = this.getMetadataFromFileCache(fileToAttach); // TODO: better object merging fileMetadata = Object.assign(attachFileMetadata, fileMetadata); let attachFileContent: string = await this.app.vault.read(fileToAttach); const regExp = new RegExp(this.frontMatterRexExpPattern); attachFileContent = attachFileContent.replace(regExp, ''); attachFileContent = attachFileContent.startsWith('\n') ? attachFileContent.substring(1) : attachFileContent; fileContent += attachFileContent; return { fileMetadata: fileMetadata, fileContent: fileContent }; } async attachTemplate(fileMetadata: Metadata, fileContent: string, template: string | undefined): Promise<{ fileMetadata: Metadata; fileContent: string }> { if (!template) { return { fileMetadata: fileMetadata, fileContent: fileContent }; } const templateMetadata = this.getMetaDataFromFileContent(template); // TODO: better object merging fileMetadata = Object.assign(templateMetadata, fileMetadata); const regExp = new RegExp(this.frontMatterRexExpPattern); const attachFileContent = template.replace(regExp, ''); fileContent += attachFileContent; return { fileMetadata: fileMetadata, fileContent: fileContent }; } getMetaDataFromFileContent(fileContent: string): Metadata { let metadata: Metadata; const regExp = new RegExp(this.frontMatterRexExpPattern); const frontMatterRegExpResult = regExp.exec(fileContent); if (!frontMatterRegExpResult) { return {}; } let frontMatter = frontMatterRegExpResult[0]; if (!frontMatter) { return {}; } frontMatter = frontMatter.substring(4); frontMatter = frontMatter.substring(0, frontMatter.length - 3); metadata = parseYaml(frontMatter) as Metadata; if (!metadata) { metadata = {}; } console.debug(`MDB | metadata read from file content`, metadata); return metadata; } getMetadataFromFileCache(file: TFile): Metadata { const metadata: Metadata | undefined = this.app.metadataCache.getFileCache(file)?.frontmatter; return structuredClone(metadata ?? {}); } /** * Creates a note in the vault. * * @param fileName * @param fileContent * @param options */ async createNote(fileName: string, fileContent: string, options: CreateNoteOptions): Promise { // find and possibly create the folder set in settings or passed in folder const folder = options.folder ?? this.app.vault.getAbstractFileByPath('/'); if (!folder || !(folder instanceof TFolder)) { throw new Error('MDB | invalid folder'); } fileName = replaceIllegalFileNameCharactersInString(fileName); const filePath = `${folder.path}/${fileName}.md`; // look if file already exists and ask if it should be overwritten const file = this.app.vault.getAbstractFileByPath(filePath); if (file) { const shouldOverwrite = await new Promise(resolve => { new ConfirmOverwriteModal(this.app, fileName, resolve).open(); }); if (!shouldOverwrite) { throw new Error('MDB | file creation cancelled by user'); } await this.app.vault.delete(file); } // create the file const targetFile = await this.app.vault.create(filePath, fileContent); console.debug(`MDB | created new file at ${filePath}`); // open newly created file if (options.openNote) { const activeLeaf = this.app.workspace.getUnpinnedLeaf(); if (!activeLeaf) { console.warn('MDB | no active leaf, not opening newly created note'); return targetFile; } await activeLeaf.openFile(targetFile, { state: { mode: 'source' } }); } return targetFile; } /** * Update the active note by querying the API again. * Tries to read the type, id and dataSource of the active note. If successful it will query the api, delete the old note and create a new one. */ async updateActiveNote(onlyMetadata: boolean = false): Promise { const activeFile = this.app.workspace.getActiveFile() ?? undefined; if (!activeFile) { throw new Error('MDB | there is no active note'); } let metadata = this.getMetadataFromFileCache(activeFile); metadata = this.modelPropertyMapper.convertObjectBack(metadata); console.debug(`MDB | read metadata`, metadata); if (!metadata?.type || !metadata?.dataSource || !metadata?.id) { throw new Error('MDB | active note is not a Media DB entry or is missing metadata'); } const validOldMetadata: MediaTypeModelObj = metadata as unknown as MediaTypeModelObj; console.debug(`MDB | validOldMetadata`, validOldMetadata); const oldMediaTypeModel = this.mediaTypeManager.createMediaTypeModelFromMediaType(validOldMetadata, validOldMetadata.type); console.debug(`MDB | oldMediaTypeModel created`, oldMediaTypeModel); let newMediaTypeModel = await this.apiManager.queryDetailedInfoById(validOldMetadata.id, validOldMetadata.dataSource); if (!newMediaTypeModel) { return; } newMediaTypeModel = Object.assign(oldMediaTypeModel, newMediaTypeModel.getWithOutUserData()); console.debug(`MDB | newMediaTypeModel after merge`, newMediaTypeModel); if (onlyMetadata) { await this.createMediaDbNoteFromModel(newMediaTypeModel, { attachFile: activeFile, folder: activeFile.parent ?? undefined, openNote: true }); } else { await this.createMediaDbNoteFromModel(newMediaTypeModel, { attachTemplate: true, folder: activeFile.parent ?? undefined, openNote: true }); } } async loadSettings(): Promise { const diskSettings: MediaDbPluginSettings = (await this.loadData()) as MediaDbPluginSettings; const defaultSettings: MediaDbPluginSettings = getDefaultSettings(this); const loadedSettings: MediaDbPluginSettings = Object.assign({}, defaultSettings, diskSettings); // Migrate property mappings using the dedicated migration method const migratedModels = PropertyMappingModel.migrateModels( loadedSettings.propertyMappingModels || [], defaultSettings.propertyMappingModels.map(m => PropertyMappingModel.fromJSON(m)), ); // Store as plain data for serialization loadedSettings.propertyMappingModels = migratedModels.map(m => m.toJSON()); this.settings = loadedSettings; } async saveSettings(): Promise { this.mediaTypeManager.updateTemplates(this.settings); this.mediaTypeManager.updateFolders(this.settings); this.dateFormatter.setFormat(this.settings.customDateFormat); await this.saveData(this.settings); } }