/********************************************************************************** * * Copyright (C) 2017 MuK IT GmbH * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * **********************************************************************************/ odoo.define('muk_preview.PreviewGenerator', function (require) { "use strict"; var core = require('web.core'); var PreviewHandler = require('muk_preview.PreviewHandler'); var QWeb = core.qweb; var _t = core._t; var PreviewGenerator = core.Class.extend({ handler: {}, init: function(widget, additional_handler) { this.widget = widget; this.handler = _.extend(this.handler, { "PDFHandler": new PreviewHandler.PDFHandler(widget), "OpenOfficeHandler": new PreviewHandler.OpenOfficeHandler(widget) }); this.handler = _.extend(this.handler, additional_handler); }, createPreview: function(url, mimetype, extension, title) { var matchedHandler = false; _.each(this.handler, function(handler, key, handler_list) { if(handler.checkExtension(extension) || handler.checkType(mimetype)) { matchedHandler = handler; } }); if(matchedHandler) { return matchedHandler.createHtml(url, mimetype, extension, title); } else { var $content = $.Deferred(); $content.resolve($(QWeb.render('UnsupportedContent', { url: url, mimetype: mimetype || _t('Unknown'), extension: extension || _t('Unknown'), title: title || _t('Unknown') }))); return $content; } } }); PreviewGenerator.createPreview = function(widget, url, mimetype, extension, title) { return new PreviewGenerator(widget, {}).createPreview(url, mimetype, extension, title); }; return PreviewGenerator; });