summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/lpdf-xmp.lmt
blob: e147c796fe04081cb4ef2bde1a8c7a156f3fa208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
if not modules then modules = { } end modules ['lpdf-xmp'] = {
    version   = 1.001,
    comment   = "companion to lpdf-ini.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files",
    comment   = "with help from Peter Rolf",
}

local tostring, type = tostring, type
local format, gsub, match = string.format, string.gsub, string.match
local concat = table.concat
local settings_to_array = utilities.parsers.settings_to_array
local utfchar = utf.char
local xmlfillin = xml.fillin
local md5HEX = md5.HEX
local osdate, ostime, ostimezone, osuuid = os.date, os.time, os.timezone, os.uuid

local trace_xmp  = false  trackers.register("backend.xmp",  function(v) trace_xmp  = v end)
local trace_info = false  trackers.register("backend.info", function(v) trace_info = v end)

local report_xmp  = logs.reporter("backend","xmp")
local report_info = logs.reporter("backend","info")

local backends             = backends
local pdfbackend           = backends.registered.pdf
local codeinjections       = pdfbackend.codeinjections

local lpdf                 = lpdf
local pdfdictionary        = lpdf.dictionary
local pdfconstant          = lpdf.constant
local pdfunicode           = lpdf.unicode
local pdfstring            = lpdf.string
local pdfreference         = lpdf.reference
local pdfflushstreamobject = lpdf.flushstreamobject

-- The XMP packet wrapper is kind of fixed, see page 10 of XMPSpecificationsPart1.pdf from
-- XMP-Toolkit-SDK-CC201607.zip. So we hardcode the id.

local xpacket = format ( [[
<?xpacket begin="%s" id="W5M0MpCehiHzreSzNTczkc9d"?>

%%s

<?xpacket end="w"?>]], utfchar(0xFEFF) )

local unknown = { false, false }
local mapping = table.setmetatableindex ( {
    -- user defined keys (pdfx:)
    ["ConTeXt.Jobname"]      = { "context", "rdf:Description/pdfx:ConTeXt.Jobname" },
    ["ConTeXt.Time"]         = { "date",    "rdf:Description/pdfx:ConTeXt.Time" },
    ["ConTeXt.Url"]          = { "context", "rdf:Description/pdfx:ConTeXt.Url" },
    ["ConTeXt.Support"]      = { "context", "rdf:Description/pdfx:ConTeXt.Support" },
    ["ConTeXt.Version"]      = { "context", "rdf:Description/pdfx:ConTeXt.Version" },
    ["ConTeXt.LMTX"]         = { "context", "rdf:Description/pdfx:ConTeXt.LMTX" },
    ["TeX.Support"]          = { "metadata","rdf:Description/pdfx:TeX.Support" },
    ["LuaTeX.Version"]       = { "metadata","rdf:Description/pdfx:LuaTeX.Version" },
    ["LuaTeX.Functionality"] = { "metadata","rdf:Description/pdfx:LuaTeX.Functionality" },
    ["LuaTeX.LuaVersion"]    = { "metadata","rdf:Description/pdfx:LuaTeX.LuaVersion" },
    ["LuaTeX.Platform"]      = { "metadata","rdf:Description/pdfx:LuaTeX.Platform" },
    ["ID"]                   = { "id",      "rdf:Description/pdfx:ID" },                         -- has date
    -- Adobe PDF schema
    ["Keywords"]             = { "metadata","rdf:Description/pdf:Keywords" },
    ["Producer"]             = { "metadata","rdf:Description/pdf:Producer" },
 -- ["Trapped"]              = { "pdf",     "rdf:Description/pdf:Trapped" },                     -- '/False' in /Info, but 'False' in XMP
    -- Dublin Core schema
    ["Format"]               = { "metadata","rdf:Description/dc:format" },                       -- optional, but nice to have
    -- These were dc:.../rdf:Seq/rdf:li but there was a (invalidating) bug in the iso
    ["Author"]               = { "metadata","rdf:Description/dc:creator" },
    ["Subject"]              = { "metadata","rdf:Description/dc:description" },
    ["Title"]                = { "metadata","rdf:Description/dc:title" },
    -- XMP Basic schema
    ["CreateDate"]           = { "date",    "rdf:Description/xmp:CreateDate" },
    ["CreationDate"]         = { "date",    "rdf:Description/xmp:CreationDate" },                -- dummy
    ["Creator"]              = { "metadata","rdf:Description/xmp:CreatorTool" },
    ["MetadataDate"]         = { "date",    "rdf:Description/xmp:MetadataDate" },
    ["ModDate"]              = { "date",    "rdf:Description/xmp:ModDate" },                     -- dummy
    ["ModifyDate"]           = { "date",    "rdf:Description/xmp:ModifyDate" },
    -- XMP Media Management schema
    ["DocumentID"]           = { "id",      "rdf:Description/xmpMM:DocumentID" },                -- uuid
    ["InstanceID"]           = { "id",      "rdf:Description/xmpMM:InstanceID" },                -- uuid
    ["RenditionClass"]       = { "pdf",     "rdf:Description/xmpMM:RenditionClass" },            -- PDF/X-4
    ["VersionID"]            = { "pdf",     "rdf:Description/xmpMM:VersionID" },                 -- PDF/X-4
    -- additional entries
    -- PDF/X
    ["GTS_PDFXVersion"]      = { "pdf",     "rdf:Description/pdfxid:GTS_PDFXVersion" },
    -- optional entries
    -- all what is visible in the 'document properties --> additional metadata' window
    -- XMP Rights Management schema (optional)
    ["Marked"]               = { "pdf",      "rdf:Description/xmpRights:Marked" },
 -- ["Owner"]                = { "metadata", "rdf:Description/xmpRights:Owner/rdf:Bag/rdf:li" }, -- maybe useful (not visible)
 -- ["UsageTerms"]           = { "metadata", "rdf:Description/xmpRights:UsageTerms" },           -- maybe useful (not visible)
    ["WebStatement"]         = { "metadata", "rdf:Description/xmpRights:WebStatement" },
    -- Photoshop PDF schema (optional)
    ["AuthorsPosition"]      = { "metadata", "rdf:Description/photoshop:AuthorsPosition" },
    ["Copyright"]            = { "metadata", "rdf:Description/photoshop:Copyright" },
    ["CaptionWriter"]        = { "metadata", "rdf:Description/photoshop:CaptionWriter" },
}, function() return unknown end )


local metadata         = nil
local trailerid        = true
local creationdate     = false
local modificationdate = false

local function pdftimestamp(str)
    local t = type(str)
    if t == "string" then
        local Y, M, D, h, m, s, Zs, Zh, Zm = match(str,"^(%d%d%d%d)%-(%d%d)%-(%d%d)T(%d%d):(%d%d):(%d%d)([%+%-])(%d%d):(%d%d)$")
        return Y and format("D:%s%s%s%s%s%s%s%s'%s'",Y,M,D,h,m,s,Zs,Zh,Zm)
    else
        return osdate("D:%Y%m%d%H%M%S",t == "number" and str or ostime()) -- maybe "!D..." : universal time
    end
end

local function pdfgetmetadata()
    if not metadata then
        local contextversion      = environment.version
        local luatexversion       = format("%1.2f",LUATEXVERSION)
        local luatexfunctionality = tostring(LUATEXFUNCTIONALITY)
        local jobname             = environment.jobname or tex.jobname or "unknown"
        local documentid          = trailerid and ("uuid:" .. osuuid()) or "no unique document id here"
        local instanceid          = trailerid and ("uuid:" .. osuuid()) or "no unique instance id here"
        metadata = creationdate and {
            producer            = format("LuaMetaTeX-%s",luatexversion),
            creator             = format("LuaMetaTeX %s %s + ConTeXt LMTX %s",luatexversion,luatexfunctionality,contextversion),
            luatexversion       = luatexversion,
            contextversion      = contextversion,
            luatexfunctionality = luatexfunctionality,
            luaversion          = tostring(LUAVERSION),
            platform            = os.platform,
            creationdate        = creationdate,
            modificationdate    = modificationdate,
            id                  = format("%s | %s",jobname,creationdate),
            documentid          = documentid,
            instanceid          = instanceid,
            jobname             = jobname,
        } or {
            producer            = "LuaMetaTeX",
            creator             = "LuaMetaTeX + ConTeXt LMTX",
            id                  = jobname,
            documentid          = documentid,
            instanceid          = instanceid,
            jobname             = jobname,
        }
     -- inspect(metadata)
    end
    return metadata
end

local function pdfsetmetadate(n,both)
    if n then
        n = converters.totime(n)
        if n then
            creationdate = osdate("%Y-%m-%dT%H:%M:%S",ostime(n)) .. ostimezone()
            if both then
                modificationdate = creationdate
            end
        end
    end
    return creationdate
end

lpdf.pdftimestamp = pdftimestamp

function lpdf.gettrailerid()
    if trailerid == true then
        return md5.HEX(osuuid())
    elseif type(trailerid) == "string" then
        return md5.HEX(trailerid)
    else
        return false
    end
end

-- string: use that, true: uuid, false: nothing

directives.register("backend.trailerid", function(v)
    trailerid = type(v) and v or toboolean(v)
end)

-- year-mm-dd : use that for creation and modification

local function setdates(v)
    local t = type(v)
    if t == "number" or t == "string" then
        local d = converters.totime(v)
        if d then
            report_info("forced date/time information %a will be used",pdfsetmetadate(d,true))
            return
        end
    end
    if toboolean(v) then
        creationdate     = osdate("%Y-%m-%dT%H:%M:%S") .. ostimezone()
        modificationdate = creationdate
    else
        creationdate     = false
        modificationdate = false
    end
end

setdates(true)

directives.register("backend.date", setdates)

-- maybe some day we will load the xmp file at runtime

local xmp, xmpfile, xmpname = nil, nil, "lpdf-pdx.xml"

local function setxmpfile(name)
    if xmp then
        report_xmp("discarding loaded file %a",xmpfile)
        xmp = nil
    end
    xmpfile = name ~= "" and name
end

codeinjections.setxmpfile = setxmpfile

interfaces.implement {
    name      = "setxmpfile",
    arguments = "string",
    actions   = setxmpfile
}

local function valid_xmp()
    if not xmp then
     -- local xmpfile = xmpfile or resolvers.findfile(xmpname) or ""
        if xmpfile and xmpfile ~= "" then
            xmpfile = resolvers.findfile(xmpfile) or ""
        end
        if not xmpfile or xmpfile == "" then
            xmpfile = resolvers.findfile(xmpname) or ""
        end
        if xmpfile ~= "" then
            report_xmp("using file %a",xmpfile)
        end
        local xmpdata = xmpfile ~= "" and io.loaddata(xmpfile) or ""
        xmp = xml.convert(xmpdata)
    end
    return xmp
end

function lpdf.addxmpinfo(tag,value,check)
    local pattern = mapping[tag][2]
    if type(pattern) == "string" then
        xmlfillin(xmp or valid_xmp(),pattern,value,check)
    end
end

-- redefined

local pdfaddtoinfo  = lpdf.addtoinfo
local pdfaddxmpinfo = lpdf.addxmpinfo

function lpdf.addtoinfo(tag,pdfvalue,strvalue)
    local pattern = mapping[tag][2]
    if pattern or strvalue == true then
        pdfaddtoinfo(tag,pdfvalue)
    end
    if type(pattern) == "string" then
        local value = (type(strvalue) == "string" and strvalue) or gsub(tostring(pdfvalue),"^%((.*)%)$","%1") -- hack
        if trace_info then
            report_info("set %a to %a",tag,value)
        end
        xmlfillin(xmp or valid_xmp(),pattern,value,check)
    end
end

local pdfaddtoinfo = lpdf.addtoinfo -- used later

-- for the do-it-yourselvers

function lpdf.insertxmpinfo(pattern,whatever,prepend)
    xml.insert(xmp or valid_xmp(),pattern,whatever,prepend)
end

function lpdf.injectxmpinfo(pattern,whatever,prepend)
    xml.inject(xmp or valid_xmp(),pattern,whatever,prepend)
end

-- flushing

local add_xmp_blob   = true
local indentity_done = false  -- using "setupidentity = function() end" fails as the meaning is frozen in register

local function setupidentity()
    if not done then
        --
        local identity = interactions.general.getidentity()
        local title    = identity.title
        local subtitle = identity.subtitle
        local author   = identity.author
        local date     = identity.date
        local keywords = identity.keywords
        --
        if date and date ~= "" then
            pdfsetmetadate(date)
        end
        if keywords then
            keywords = concat(settings_to_array(keywords), " ")
        end
        --
        local metadata       = pdfgetmetadata()
        local creator        = metadata.creator
        local contextversion = metadata.contextversion
        local id             = metadata.id
        local jobname        = metadata.jobname
        local creator        = metadata.creator
        local creation       = metadata.creationdate
        local modification   = metadata.modificationdate
        --
        if creator then
            pdfaddtoinfo("Creator",pdfunicode(creator),creator)
        end
        if creation then
            pdfaddtoinfo("CreationDate",pdfstring(pdftimestamp(creation)),creation)
        end
        if modification then
            pdfaddtoinfo("ModDate",pdfstring(pdftimestamp(modification)),modification)
        end
        if id then
            pdfaddtoinfo("ID",pdfstring(id),id) -- needed for pdf/x
        end
        --
        if title ~= "" then
            pdfaddtoinfo("Title",pdfunicode(title),title)
        end
        if subtitle ~= "" then
            pdfaddtoinfo("Subject",pdfunicode(subtitle),subtitle)
        end
        if author ~= "" then
            pdfaddtoinfo("Author",pdfunicode(author),author) -- '/Author' in /Info, 'Creator' in XMP
        end
        if keywords and keywords ~= "" then
            pdfaddtoinfo("Keywords",pdfunicode(keywords),keywords)
        end
        --
        if contextversion then
            pdfaddtoinfo("ConTeXt.Version",contextversion)
        end
        if creation then
            pdfaddtoinfo("ConTeXt.Time",creation)
        end
        if jobname then
            pdfaddtoinfo("ConTeXt.Jobname",jobname)
        end
        --
        pdfaddtoinfo("ConTeXt.Url","www.pragma-ade.com")
        pdfaddtoinfo("ConTeXt.Support","contextgarden.net")
        pdfaddtoinfo("TeX.Support","tug.org")
        --
        done = true
    else
        -- no need for a message
    end
end

local function flushxmpinfo()
    commands.pushrandomseed()
    commands.setrandomseed(ostime())

    local metadata   = pdfgetmetadata()
    local time       = metadata.time
    local producer   = metadata.producer
    local creator    = metadata.creator
    local documentid = metadata.documentid
    local instanceid = metadata.instanceid

    pdfaddtoinfo("Producer",producer)
    pdfaddtoinfo("Creator",creator)
    pdfaddtoinfo("CreationDate",time)
    pdfaddtoinfo("ModDate",time)

    if add_xmp_blob then

        pdfaddxmpinfo("DocumentID",documentid)
        pdfaddxmpinfo("InstanceID",instanceid)
        pdfaddxmpinfo("Producer",producer)
        pdfaddxmpinfo("CreatorTool",creator)
        pdfaddxmpinfo("CreateDate",time)
        pdfaddxmpinfo("ModifyDate",time)
        pdfaddxmpinfo("MetadataDate",time)
        pdfaddxmpinfo("LuaTeX.Version",metadata.luatexversion)
        pdfaddxmpinfo("LuaTeX.Functionality",metadata.luatexfunctionality)
        pdfaddxmpinfo("LuaTeX.LuaVersion",metadata.luaversion)
        pdfaddxmpinfo("LuaTeX.Platform",metadata.platform)

        local blob = xml.tostring(xml.first(xmp or valid_xmp(),"/x:xmpmeta"))
        local md = pdfdictionary {
            Subtype = pdfconstant("XML"),
            Type    = pdfconstant("Metadata"),
        }
        if trace_xmp then
            report_xmp("data flushed, see log file")
            logs.pushtarget("logfile")
            report_xmp("start xmp blob")
            logs.newline()
            logs.writer(blob)
            logs.newline()
            report_xmp("stop xmp blob")
            logs.poptarget()
        end
        blob = format(xpacket,blob)
        if not verbose and lpdf.compresslevel() > 0 then
            blob = gsub(blob,">%s+<","><")
        end
        local r = pdfflushstreamobject(blob,md,false) -- uncompressed
        lpdf.addtocatalog("Metadata",pdfreference(r))

    end

    commands.poprandomseed() -- hack
end

lpdf.registerpagefinalizer(setupidentity,"identity")
lpdf.registerdocumentfinalizer(flushxmpinfo,1,"metadata")

directives.register("backend.xmp",        function(v) add_xmp_blob = v end)
directives.register("backend.verbosexmp", function(v) verbose = v end)