summaryrefslogtreecommitdiff
path: root/scripts/context/lua/mtx-install-modules.lua
blob: 63b89296643394a418f32ecd20c469840e597cde (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
if not modules then modules = { } end modules ['mtx-install-modules'] = {
    version   = 1.234,
    comment   = "companion to mtxrun.lua",
    author    = "Hans Hagen",
    copyright = "ConTeXt Development Team",
    license   = "see context related readme files"
}

-- Installing tikz is a bit tricky because there are many packages involved and it's
-- sort of impossible to derive from the names what to include in the installation.
-- I tried to use the ctan scrips we ship but there is no way to reliably derive a
-- set from the topics or packages using the web api (there are also some
-- inconsistencies between the json and xml interfaces that will not be fixed). A
-- wildcard pull of everything tikz/pgf is likely to fail or at least gives files we
-- don't want and/or need, the solution is to be specific.
--
-- After that was implemented the script changed name and now also installs the
-- third party modules.
--
-- We use curl and not the built in socket library because all kind of ssl and
-- redirection can kick in and who know how it evolves.
--
-- We use the context unzipper because we cannot be sure if unzip is present on the
-- system. In many cases windows, linux and osx installations lack it by default.
--
-- This script should be run in the tex root where there is also a texmf-context sub
-- directory; it will quit otherwise. The modules path will be created when absent.
--
-- Maybe some day we can get the modules from ctan but then we need a consistent
-- names and such.

local find = string.find

local helpinfo = [[
<?xml version="1.0"?>
<application>
 <metadata>
  <entry name="name">mtx-install</entry>
  <entry name="detail">ConTeXt Installer</entry>
  <entry name="version">2.01</entry>
 </metadata>
 <flags>
  <category name="basic">
   <subcategory>
    <flag name="list"><short>list modules</short></flag>
    <flag name="installed"><short>list installed modules</short></flag>
    <flag name="install"><short>install modules</short></flag>
    <flag name="uninstall"><short>uninstall modules</short></flag>
    <flag name="module"><short>install (zip) file(s)</short></flag>
   </subcategory>
  </category>
 </flags>
 <examples>
  <category>
   <title>Examples</title>
   <subcategory>
    <example><command>mtxrun --script install-modules --list</command></example>
   </subcategory>
   <subcategory>
    <example><command>mtxrun --script install-modules --install filter letter</command></example>
    <example><command>mtxrun --script install-modules --install tikz</command></example>
    <example><command>mtxrun --script install-modules --install --all</command></example>
   </subcategory>
   <subcategory>
    <example><command>mtxrun --script install-modules --install   --module t-letter.zip</command></example>
    <example><command>mtxrun --script install-modules --uninstall --module t-letter.zip</command></example>
   </subcategory>
   <subcategory>
    <example><command>mtxrun --script install-modules --installed</command></example>
   </subcategory>
  </category>
 </examples>
</application>
]]

local application = logs.application {
    name     = "mtx-install-modules",
    banner   = "ConTeXt Module Installer 1.00",
    helpinfo = helpinfo,
}

local report = application.report

scripts         = scripts         or { }
scripts.modules = scripts.modules or { }

local okay, curl = pcall(require,"libs-imp-curl")

local fetched = curl and curl.fetch and function(str)
    local data, message = curl.fetch {
        url            = str,
        followlocation = true,
        sslverifyhost  = false,
        sslverifypeer  = false,
    }
    if not data then
        report("some error: %s",message)
    end
    return data
end or function(str)
    -- So, no redirect to http, which means that we cannot use the built in socket
    -- library. What if the client is happy with http?
    local data = os.resultof("curl -sSL " .. str)
    return data
end

-- We use some abstraction:

local urls = {
    ctan    = "https://mirrors.ctan.org/install",
    modules = "https://modules.contextgarden.net/dl"
}

-- Some package this in the root which is asking for conflicts.

-- local badones = {
--  -- "LICENSE",
--  -- "README",
--  -- "README.md",
--  -- "VERSION",
-- }

local tmpzipfile = "temp.zip"
local checkdir   = "texmf-context"
local targetdir  = "texmf-modules"
local basefile   = "mtx-install-imp-modules.lua"
local lists      = false

-- local lists = {
--     ["tikz"] = {
--         url   = "ctan",
--         zips  = { }, -- table of zip files
--         wipes = { }, -- (nested) table of delete patterns
--     },
--     ["filter"] = {
--         url   = "modules",
--         zips  = { "t-filter.zip" }
--     },
-- }

local function loadlists()
    if not lists then
        lists = { }
        local mainfile = resolvers.findfile(basefile)
        if mainfile and mainfile ~= "" then
            local path  = file.pathpart(mainfile)
            local files = dir.glob((path == "" and "." or path) .. "/mtx-install-imp*.lua")
            for i=1,#files do
                local name = files[i]
                local data = table.load(name)
                if data then
                    local entries = data.lists
                    if entries then
                        report("loading entries from file %a",name)
                        for entry, data in table.sortedhash(entries) do
                            if lists[entry] then
                                report("entry %a already set from %a",entry,name)
                            else
                                lists[entry] = data
                            end
                        end
                    else
                        report("no entries in file %a",name)
                    end
                end
            end
        else
            report("base file %a is not found",basefile)
        end
        report()
    end
end

local function validate(n)
    return not (
           find(n,"latex")
     -- or find(n,"lualatex")
        or find(n,"plain")
        or find(n,"optex")
        or find(n,"luatex")
        or find(n,"pdftex")
    )
end

local function install(list,wipe)
    if type(list) ~= "table" then
        report("unknown specification")
    end
    local zips  = list.zips
    local wipes = list.wipes
    if type(zips) ~= "table" then
        report("incomplete specification")
    else
     -- report("installing into %a",targetdir)
        for i=1,#zips do
            local remote = list.url
            local where  = zips[i]
            local hash = file.addsuffix(sha2.HASH256(where),"tma")
            local data = table.load(hash)
            if data then
                local name = data.name
                local list = data.list
                if name and list then
                    report()
                    report("removing %i old files for %a",#list,name)
                    report()
                    for i=1,#list do
                        os.remove(list[i])
                    end
                end
            end
            if not wipe then
                if remote then
                    where = (urls[remote] or remote) .. "/" .. where
                end
                local data  = fetched(where)
                if string.find(data,"^PK") then
                    io.savedata(tmpzipfile,data)
                    report("from %a",where)
                    report("into %a",targetdir)
                    local done = utilities.zipfiles.unzipdir {
                        zipname  = tmpzipfile,
                        path     = ".",
                        verbose  = "steps",
                        collect  = true,
                        validate = validate,
                    }
                    table.save(hash,{ name = where, list = done })
                    os.remove(tmpzipfile)
                else
                    report("unknown %a",where)
                end
            end
        end

        local function wiper(wipes)
            for i=1,#wipes do
                local s = wipes[i]
                if type(s) == "table" then
                    wiper(s)
                elseif type(s) == "string" then
                    local t = dir.glob(s)
                    report("wiping %i files in %a",#t,s)
                    for i=1,#t do
                        os.remove(t[i])
                    end
                end
            end
        end

        if type(wipes) == "table" then
            wiper(wipes)
        end
    end
end

function scripts.modules.list()
    loadlists()
    for k, v in table.sortedhash(lists) do
        report("%-20s: %-36s : % t",k,urls[v.url],v.zips)
    end
end

function scripts.modules.installed()
    local files = dir.glob(targetdir .. "/*.tma")
    if files then
        for i=1,#files do
            local data = table.load(files[i])
            if data then
                local name = data.name
                local list = data.list
                if name and list then
                    report("%4i : %s",#list,name)
                end
            end
        end
    end
end

function scripts.modules.install(wipe)
    local curdir = dir.current()
    local done   = false
    if not lfs.isdir(checkdir) then
        report("unknown subdirectory %a",checkdir)
    elseif not dir.mkdirs(targetdir) then
        report("unable to create %a",targetdir)
    elseif not lfs.chdir(targetdir) then
        report("unable to go into %a",targetdir)
    elseif environment.argument("module") or environment.argument("modules") then
        local files = environment.files
        if #files == 0 then
            report("no archive names provided")
        else
            for i=1,#files do
                local name = files[i]
                if url.hasscheme(name) then
                    install({ url = false, zips = { file.addsuffix(name,"zip") } }, wipe)
                else
                    loadlists()
                    install({ url = "modules", zips = { file.addsuffix(name,"zip") } }, wipe)
                end
            end
            done = files
        end
    else
        loadlists()
        local files = environment.argument("all") and table.sortedkeys(lists) or environment.files
        if #files == 0 then
            report("no module names provided")
        else
            for i=1,#files do
                local name = files[i]
                local list = lists[name]
                if list then
                    install(list,wipe)
                end
            end
            done = files
        end
    end
    if done then
        --
     -- for i=1,#badones do
     --     os.remove(badones[i])
     -- end
        local okay = false
        local files = dir.glob("*")
        for i=1,#files do
            local name = files[i]
            if file.suffix(name) == "tma" then
                -- keep it
            else
                if not okay then
                    report()
                    okay = true
                end
                report("removed %a",name)
                os.remove(name)
            end
        end
        --
        report()
        report("renewing file database")
        report()
        resolvers.renewcache()
        resolvers.load()
        report()
        report("installed: % t",done)
        report()
    end
    lfs.chdir(curdir)
end

function scripts.modules.uninstall()
    scripts.modules.install(true)
end

if environment.argument("list") then
    scripts.modules.list()
elseif environment.argument("installed") then
    scripts.modules.installed()
elseif environment.argument("install") then
    scripts.modules.install()
elseif environment.argument("uninstall") then
    scripts.modules.uninstall()
elseif environment.argument("exporthelp") then
    application.export(environment.argument("exporthelp"),environment.files[1])
else
    application.help()
    report("")
end