UNPKG

exceljs

Version:

Excel Workbook Manager - Read and Write xlsx and csv Files.

125 lines (114 loc) 4.93 kB
/** * Copyright (c) 2016 Guyon Roche * LICENCE: MIT - please refer to LICENCE file included with this module * or https://github.com/guyonroche/exceljs/blob/master/LICENSE */ 'use strict'; var utils = require('../../../utils/utils'); var XmlStream = require('../../../utils/xml-stream'); var BaseXform = require('../base-xform'); var DateXform = require('../simple/date-xform'); var StringXform = require('../simple/string-xform'); var CoreXform = module.exports = function () { this.map = { 'dc:creator': new StringXform({ tag: 'dc:creator' }), 'dc:title': new StringXform({ tag: 'dc:title' }), 'dc:subject': new StringXform({ tag: 'dc:subject' }), 'dc:description': new StringXform({ tag: 'dc:description' }), 'dc:identifier': new StringXform({ tag: 'dc:identifier' }), 'dc:language': new StringXform({ tag: 'dc:language' }), 'cp:keywords': new StringXform({ tag: 'cp:keywords' }), 'cp:category': new StringXform({ tag: 'cp:category' }), 'cp:lastModifiedBy': new StringXform({ tag: 'cp:lastModifiedBy' }), 'cp:lastPrinted': new DateXform({ tag: 'cp:lastPrinted', format: CoreXform.DateFormat }), 'cp:revision': new DateXform({ tag: 'cp:revision' }), 'cp:contentStatus': new StringXform({ tag: 'cp:contentStatus' }), 'dcterms:created': new DateXform({ tag: 'dcterms:created', attrs: CoreXform.DateAttrs, format: CoreXform.DateFormat }), 'dcterms:modified': new DateXform({ tag: 'dcterms:modified', attrs: CoreXform.DateAttrs, format: CoreXform.DateFormat }) }; }; CoreXform.DateFormat = function (dt) { return dt.toISOString().replace(/[.]\d{3}/, ''); }; CoreXform.DateAttrs = { 'xsi:type': 'dcterms:W3CDTF' }; CoreXform.CORE_PROPERTY_ATTRIBUTES = { 'xmlns:cp': 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties', 'xmlns:dc': 'http://purl.org/dc/elements/1.1/', 'xmlns:dcterms': 'http://purl.org/dc/terms/', 'xmlns:dcmitype': 'http://purl.org/dc/dcmitype/', 'xmlns:xsi': 'http://www.w3.org/2001/XMLSchema-instance' }; utils.inherits(CoreXform, BaseXform, { render: function render(xmlStream, model) { xmlStream.openXml(XmlStream.StdDocAttributes); xmlStream.openNode('cp:coreProperties', CoreXform.CORE_PROPERTY_ATTRIBUTES); this.map['dc:creator'].render(xmlStream, model.creator); this.map['dc:title'].render(xmlStream, model.title); this.map['dc:subject'].render(xmlStream, model.subject); this.map['dc:description'].render(xmlStream, model.description); this.map['dc:identifier'].render(xmlStream, model.identifier); this.map['dc:language'].render(xmlStream, model.language); this.map['cp:keywords'].render(xmlStream, model.keywords); this.map['cp:category'].render(xmlStream, model.category); this.map['cp:lastModifiedBy'].render(xmlStream, model.lastModifiedBy); this.map['cp:lastPrinted'].render(xmlStream, model.lastPrinted); this.map['cp:revision'].render(xmlStream, model.revision); this.map['cp:contentStatus'].render(xmlStream, model.contentStatus); this.map['dcterms:created'].render(xmlStream, model.created); this.map['dcterms:modified'].render(xmlStream, model.modified); xmlStream.closeNode(); }, parseOpen: function parseOpen(node) { if (this.parser) { this.parser.parseOpen(node); return true; } switch (node.name) { case 'cp:coreProperties': return true; default: this.parser = this.map[node.name]; if (this.parser) { this.parser.parseOpen(node); return true; } throw new Error('Unexpected xml node in parseOpen: ' + JSON.stringify(node)); } }, parseText: function parseText(text) { if (this.parser) { this.parser.parseText(text); } }, parseClose: function parseClose(name) { if (this.parser) { if (!this.parser.parseClose(name)) { this.parser = undefined; } return true; } switch (name) { case 'cp:coreProperties': this.model = { creator: this.map['dc:creator'].model, title: this.map['dc:title'].model, subject: this.map['dc:subject'].model, description: this.map['dc:description'].model, identifier: this.map['dc:identifier'].model, language: this.map['dc:language'].model, keywords: this.map['cp:keywords'].model, category: this.map['cp:category'].model, lastModifiedBy: this.map['cp:lastModifiedBy'].model, lastPrinted: this.map['cp:lastPrinted'].model, revision: this.map['cp:revision'].model, contentStatus: this.map['cp:contentStatus'].model, created: this.map['dcterms:created'].model, modified: this.map['dcterms:modified'].model }; return false; default: throw new Error('Unexpected xml node in parseClose: ' + name); } } }); //# sourceMappingURL=core-xform.js.map