const Logger = require('../../Logger') const { areEquivalent, copyValue, getTitleIgnorePrefix, getTitlePrefixAtEnd } = require('../../utils/index') class VideoMetadata { constructor(metadata) { this.title = null this.description = null this.explicit = false this.language = null if (metadata) { this.construct(metadata) } } construct(metadata) { this.title = metadata.title this.description = metadata.description this.explicit = metadata.explicit this.language = metadata.language || null } toJSON() { return { title: this.title, description: this.description, explicit: this.explicit, language: this.language } } toJSONMinified() { return { title: this.title, titleIgnorePrefix: this.titlePrefixAtEnd, description: this.description, explicit: this.explicit, language: this.language } } toJSONExpanded() { return this.toJSONMinified() } clone() { return new VideoMetadata(this.toJSON()) } get titleIgnorePrefix() { return getTitleIgnorePrefix(this.title) } get titlePrefixAtEnd() { return getTitlePrefixAtEnd(this.title) } setData(mediaMetadata = {}) { this.title = mediaMetadata.title || null this.description = mediaMetadata.description || null this.explicit = !!mediaMetadata.explicit this.language = mediaMetadata.language || null } update(payload) { var json = this.toJSON() var hasUpdates = false for (const key in json) { if (payload[key] !== undefined) { if (!areEquivalent(payload[key], json[key])) { this[key] = copyValue(payload[key]) Logger.debug('[VideoMetadata] Key updated', key, this[key]) hasUpdates = true } } } return hasUpdates } } module.exports = VideoMetadata