summaryrefslogtreecommitdiff
path: root/lib/gitano/repository.lua
blob: 12c024812ad38ad7b1cece22fec5bc037cbf184c (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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
-- gitano.repository
--
-- Create/destroy/blahblah repositories under Gitano management
--
-- Copyright 2012 Daniel Silverstone <dsilvers@digital-scurf.org>
--

local gall = require 'gall'
local luxio = require 'luxio'
local sio = require 'luxio.simple'
local sp = require 'luxio.subprocess'
local log = require 'gitano.log'
local config = require 'gitano.config'
local util = require 'gitano.util'
local lace = require 'gitano.lace'
local i18n = require 'gitano.i18n'
local clod = require 'clod'

local base_rules = [[
-- Empty Ruleset
]]

local base_config = [[
project.head "refs/heads/master"
project.description ""
project.owner "gitano/nobody"
]]

local admin_name = {
   realname = "Gitano",
   email = "gitano@gitano-admin.git"
}

local adminrefname = "refs/gitano/admin"

local repo_method = {}

function repo_method:load_from_admin_ref(filename)
   local admincommit = self.git:get(adminrefname)
   local admintree = admincommit.content.tree.content
   local flat_tree = gall.tree.flatten(admintree)
   local entry = flat_tree[filename]
   if not entry then
      return nil, i18n.expand("ERROR_GENERIC_CONF_NOT_FOUND",
                              {sha=admincommit.sha, name=filename})
   end
   if entry.obj.type ~= "blob" then
      return nil, i18n.expand("ERROR_GENERIC_CONF_NOT_BLOB",
                              {sha=admincommit.sha, name=filename})
   end
   return entry.obj.content, admincommit.sha .. "::" .. filename
end

function repo_method:uses_hook(hookname)
   -- If the hook is global, then we use it
   if config.has_global_hook(self.config, hookname) then
      return true
   end
   local admincommit = self.git:get(adminrefname)
   local admintree = admincommit.content.tree.content
   local flat_tree = gall.tree.flatten(admintree)
   local entry = flat_tree["hooks/" .. hookname .. ".lua"]
   if not entry then
      return false
   end
   if entry.type ~= "blob" then
      return false
   end
   -- Got a hook, it's a blob, sounds good
   return true
end

function repo_method:fs_path()
   return ("%s/%s.git"):format(config.repo_path(),
                               self.name)
end

function repo_method:run_checks()
   -- Things we check for are:
   --   + appropriate gitano/* refs
   --   + hooks are all in place

   if not self.git:get_ref(adminrefname) then
      -- Admin branch is missing, create one.
      -- First, the blob for the rules
      local rules, msg = gall.object.create(self.git, "blob", base_rules)
      if not rules then
         return nil, msg
      end
      local conf, msg = gall.object.create(self.git, "blob", base_config)
      if not conf then
         return nil, msg
      end
      -- Next the tree containing the blob
      local flat_tree = {
         ["rules/main.lace"] = rules,
         ["project.conf"] = conf,
      }
      local tree, msg = gall.tree.create(self.git, flat_tree)
      if not tree then
         return nil, msg
      end
      -- Now a commit of the blob, using the gitano admin identity
      local commit, msg =
         gall.commit.create(self.git, {
                               author = admin_name,
                               committer = admin_name,
                               message = i18n.expand("INITIAL_ADMIN_TREE"),
                               tree = tree
         })
      if not commit then
         return nil, msg
      end
      -- Finally create/update the gitano/admin ref
      local ok, msg = self.git:update_ref(adminrefname, commit.sha)
      if not ok then
         return nil, msg
      end
   end

   -- Admin tree exists, validate and load it...
   local ok, tab =
      self:validate_admin_sha(self.git:get_ref(adminrefname))
   if not ok then
      return nil, tab
   end

   -- Validated, copy the data from tab across
   for k, v in pairs(tab) do
      self[k] = v
   end
   -- From here on down, self:conf_*() will work

   -- Remove trailing newlines from project descriptions
   local desc = self:conf_get "project.description"
   if desc:match("\n$") then
      desc = desc:match("^(.-)\n+$")
      self:conf_set("project.description", desc)
   end

   -- Now check and update the hooks
   local ok, msg = self:check_and_upgrade_hooks()
   if not ok then
      return nil, msg
   end

   -- Now update the git-local files from the rules and metadata
   local ok, msg = self:check_local_git_files()
   if not ok then
      return nil, msg
   end

   -- And all is well
   return true
end

function repo_method:conf_get(key)
   return self.project_config.settings[key]
end

function repo_method:conf_set(key, value)
   self.project_config.settings[key] = value
end

function repo_method:run_lace(context)
   self:populate_context(context)
   config.populate_context(self.config, context)
   --[[ Uncomment this to enable variable dumping.
   local vardump = luxio.getenv("GITANO_DUMP_VARIABLE_FILE")
   if vardump then
      local io = require "io"
      local pretty = require "pl.pretty"
      local t
      local fh = io.open(vardump, "r")
      if not fh then
         t = {}
      else
         t = pretty.read(fh:read("*a"))
         fh:close()
      end
      local op = context.operation
      for k, _ in pairs(context) do
         if not t[k] then
            t[k] = {}
         end
         t[k][op] = true
      end
      local fh = io.open(vardump, "w+")
      fh:write(pretty.write(t))
      fh:close()
   end
   --]]
   return lace.run(self.lace, context)
end

function repo_method:check_signature(obj, keyringname)
   local keyring = self.config.keyrings[keyringname]
   if not keyring then
      return false, "KEYNOTFOUND"
   end
   if obj.content then
      obj = obj.content
   end
   if not obj.signature then
      return false, "UNSIGNED"
   end
   local fd, filename = util.tempfile(self)
   local sfd = sio.wrap_fd(fd, false, filename)
   local b = keyring.blob.raw
   local w = 0
   local _b, err
   while w < #b do
      _b, err = sfd:write(b, w)
      if _b == nil or _b < 1 then
         -- I know we're not handling EINTR/EAGAIN, I don't care
         w = -1
         break
      end
      w = w + _b
   end
   sfd:close()
   if w == -1 then
      -- Failure to write keyring out...
      luxio.unlink(filename)
      return false, "KEYNOTFOUND"
   end
   -- Keyring written out, we need to validate the object now.
   local fprint, msg = gall.util.validate_signature(obj, filename)
   luxio.unlink(filename)
   if fprint then
      return fprint
   end
   if msg:match("BADSIG") then
      return false, "BADSIG"
   end
   return false, "KEYNOTFOUND"
end

function repo_method:check_local_git_files()
   -- Construct a fake read operation for anonymous
   -- accept => git-daemon-export-ok
   local context = {
      ["operation"] = "read",
      ["source"] = "git",
      ["user"] = "gitano/anonymous",
   }
   local action, reason = self:run_lace(context)
   local anonexport = false
   if action == "allow" then
      anonexport = true
   end
   if anonexport then
      local fh, errmsg = sio.open(self:fs_path() .. "/git-daemon-export-ok", "wc")

      if fh then
         fh:close()
      else
         log.warn(i18n.expand("ERROR_CANNOT_CREATE_EXPORT_FILE", {reason=errmsg}))
      end
   else
      luxio.unlink(self:fs_path() .. "/git-daemon-export-ok")
   end
   -- Now store our description into the description file
   local fh, err = sio.open(self:fs_path() .. ("/description.%d.new"):format(luxio.getpid()), "wc")
   if fh then
      fh:write(self:conf_get "project.description")
      fh:write("\n")
      fh:close()
      local ok, errno = luxio.rename(self:fs_path() .. ("/description.%d.new"):format(luxio.getpid()),
                                     self:fs_path() .. "/description")
      if ok ~= 0 then
         log.warn(i18n.expand("ERROR_UNABLE_TO_RENAME_INTO_PLACE",
                              {what="description", reason=luxio.strerror(errno)}))
      end
   else
      log.warn(i18n.expand("ERROR_UNABLE_TO_WRITE_FILE",
                           {what="description", reason=tostring(err)}))
   end
   -- Check that our HEAD is correctly configured
   local our_head = self:conf_get "project.head"
   if self.git.HEAD ~= our_head then
      self.git:symbolic_ref("HEAD", our_head)
      self.git.HEAD = our_head
   end
   -- Check that our owner is set correctly
   local owner = self.config.users[self:conf_get "project.owner"]
   if owner then
      self.git:config("gitweb.owner",
                      owner.real_name .. " <" .. owner.email_address .. ">")
   end
   -- Construct a cgitrc in case we're using cgit instead of gitweb
   local cgitrc = {}
   local function add_cgitrc(key, value)
      cgitrc[#cgitrc+1] = ("%s=%s"):format(key, tostring(value))
   end
   for _, suffix in ipairs {
      "readme", "section", "logo", "logo-link", "defbranch", "clone-url",
      "snapshots" } do
      local v = self.project_config.settings["cgitrc." .. suffix]
      if v then
         if v == "readme" and not v:find(":") then
            v = ":" .. v
         end
         add_cgitrc(suffix, v)
      end
   end
   if owner then
      add_cgitrc("owner", owner.real_name .. " <" .. owner.email_address .. ">")
   end
   local description = self:conf_get "project.description"
   if description and description ~= "" then
      add_cgitrc("desc", description)
   end
   local archive_marker = self:conf_get "project.archived"
   if archive_marker then
      add_cgitrc("hide", "1")
   end
   table.sort(cgitrc)
   cgitrc[#cgitrc+1] = ""
   cgitrc = table.concat(cgitrc, "\n")
   local fh, err = sio.open(self:fs_path() .. ("/cgitrc.%d.new"):format(luxio.getpid()), "wc")
   if fh then
      fh:write(cgitrc)
      fh:close()
      local ok, errno = luxio.rename(self:fs_path() .. ("/cgitrc.%d.new"):format(luxio.getpid()),
                                     self:fs_path() .. "/cgitrc")
      if ok ~= 0 then
         log.warn(i18n.expand("ERROR_UNABLE_TO_RENAME_INTO_PLACE",
                              {what="cgitrc", reason=luxio.strerror(errno)}))
      end
   else
      log.warn(i18n.expand("ERROR_UNABLE_TO_WRITE_FILE",
                           {what="cgitrc", reason=tostring(err)}))
   end

   return true
end

function repo_method:check_and_upgrade_hooks()
   log.ddebug(i18n.expand("DEBUG_CHECKING_HOOKS", {name=self.name}))
   for _, hook in ipairs {"pre-receive", "update", "post-receive"} do
      local hookfile = ("%s/hooks/%s"):format(self:fs_path(), hook)
      local hooktarget = ("%s/gitano-%s-hook"):format(config.lib_bin_path(),
                                                      hook)
      local ok, linkv = luxio.readlink(hookfile)
      local redo = false
      if ok > 0 then
         if linkv ~= hooktarget then
            redo = true
         end
      else
         redo = true
      end
      if redo then
         luxio.unlink(hookfile)
         luxio.symlink(hooktarget, hookfile)
      end
   end
   return true
end

function repo_method:validate_admin_sha(sha)
   if sha == string.rep("0", 40) then
      return nil, i18n.expand("ERROR_DELETED_ADMIN_REF")
   end
   local commit = self.git:get(sha)
   local tree = gall.tree.flatten(commit.content.tree.content)

   local function is_blob(thingy)
      return thingy and thingy.type and thingy.type == "blob"
   end

   if not is_blob(tree["project.conf"]) then
      return nil, i18n.expand("ERROR_NO_PROJECT_CONF")
   end

   local conf_text = tree["project.conf"].obj.content
   local conf, err = clod.parse(conf_text,
                                self.name .. ":" ..
                                   sha .. ":project.conf")
   if not conf then
      return nil, err
   end

   local ret = { project_config = conf }

   -- Verify if the clod config needs "migration"
   if conf.settings["owner"] and not conf.settings["project.owner"] then
      conf.settings["project.owner"] = conf.settings["owner"]
      conf.settings["owner"] = nil
   end
   if conf.settings["description"] and
   not conf.settings["project.description"] then
      conf.settings["project.description"] = conf.settings["description"]
      conf.settings["description"] = nil
   end
   if conf.settings["head"] and not conf.settings["project.head"] then
      conf.settings["project.head"] = conf.settings["head"]
      conf.settings["head"] = nil
   end

   -- Now verify that the clod has sufficient values to know
   -- what we're doing
   if not conf.settings["project.owner"] then
      conf.settings["project.owner"] = "gitano/nobody"
   end
   if not conf.settings["project.description"] then
      conf.settings["project.description"] = ""
   end
   if not conf.settings["project.head"] then
      conf.settings["project.head"] = "refs/heads/master"
   end

   -- Generate a Lace for the project at this ref
   local lace, msg = lace.compile(self, sha)
   if not lace then
      return nil, msg
   end
   -- And store it for use later
   ret.lace = lace

   return true, ret
end

function repo_method:populate_context(context)
   util.add_splitable(context, "repository", self.name,
                      "/", "dirname", "basename")
   context["_repo"] = self
   if not self.is_nascent then
      local lists_to_add = {}
      for k, v in self.project_config:each() do
         if k:match("%.i_[0-9]+$") then
            lists_to_add[k:gsub("%.i_[0-9]+$", "")] = true
         else
            local confkey = "config/" .. k:gsub("%.", "/")
            context[confkey] = v
         end
      end
      for k in pairs(lists_to_add) do
         local confkey = "config/" .. k:gsub("%.", "/")
         local vallist = self.project_config:get_list(k)
         local valset = {}
         for _, v in pairs(vallist) do valset[v] = true end
         context[confkey] = valset
      end
   end
end

function repo_method:realise()
   if not self.is_nascent then
      return false, i18n.expand("ERROR_REALISE_NON_NASCENT")
   end

   if not util.mkdir_p(util.dirname(self:fs_path())) then
      return false, i18n.expand("ERROR_CANNOT_PREP_PATH")
   end

   local r, msg = gall.repository.create(self:fs_path())
   if not r then
      return false, msg
   end

   self.git = r
   self.is_nascent = nil

   -- Finally, we're not nascent, validate the repo
   return self:run_checks()
end

function repo_method:conf_set_and_save(conf, newvalue, author, committer)
   local oldvalue = self:conf_get(conf)
   self:conf_set(conf, newvalue)
   local ok, msg = self:save_admin("Setting " .. conf .. " to " .. newvalue,
                                   author, committer)
   if not ok then
      self:conf_set(conf, oldvalue)
      return nil, msg
   end
   log.state("<" .. self.name .. "> Set " .. conf .. " to <" .. newvalue .. ">")
   return true
end

function repo_method:set_head(newhead, author, committer)
   if not newhead:match("^refs/") then
      newhead = "refs/heads/" .. newhead
   end
   local oldhead = self:conf_get "project.head"
   self:conf_set("project.head", newhead)
   local ok, msg = self:save_admin(i18n.expand("MSG_CHANGING_HEAD"),
                                   author, committer)
   if not ok then
      self:conf_set("project.head", oldhead)
      return nil, msg
   end
   log.state(i18n.expand("MSG_CHANGED_HEAD", {name=self.name, head=newhead}))
   return true
end

function repo_method:generate_confirmation(notes)
   -- Generate a confirmation token.
   --  To do this, we read *ALL* refs in the repository and their
   --  sha1 sums.  We then hash all that to generate a token
   --  for this repository at its current state.
   local refs = self.git:all_refs()
   local refnames = {}
   for ref in pairs(refs) do
      refnames[#refnames+1] = ref
   end
   table.sort(refnames)
   local str = notes or ""
   log.debug(i18n.expand("DEBUG_CALCULATE_TOKEN", {name=self.name}))
   for i = 1, #refnames do
      local ref, sha = refnames[i], refs[refnames[i]]
      log.ddebug(ref, "@", sha)
      str = str .. ref .. "@" .. sha .. "\n"
   end
   return self.git:hash_object("blob", str, false) or "ARGH!"
end

function repo_method:destroy_self(call_me)
   util.mkdir_p(config.repo_path() .. "/.graveyard")
   local graveyard_path = config.repo_path() .. "/.graveyard/".. call_me
   -- Is our destination location in the graveyard free?
   local ok, err = luxio.stat(graveyard_path)
   if ok == 0 then
      return false, i18n.expand("ERROR_GRAVESITE_OCCUPIED")
   end
   if err ~= luxio.ENOENT then
      return false, i18n.expand("ERROR_GRAVESITE_UNCHECKED")
   end
   -- Grave site is not occupied, attempt to rename ourselves
   local ok, err = luxio.rename(self:fs_path(), graveyard_path)
   if ok ~= 0 then
      return false, i18n.expand("ERROR_CANNOT_DESTROY_RENAME", {reason=luxio.strerror(err)})
   end
   -- Successfully renamed ourselves, we're destroyed.
   return true
end

function repo_method:rename_to(somename)
   -- Same cleanup as in find...
   if somename:match(".%.git$") then
      somename = somename:match("^(.+)%.git$")
   end
   -- Remove any '.'
   somename = somename:gsub("%.", "")
   -- Remove any leading or trailing /
   somename = somename:match("^/*(.-)/*$")

   local newpath = self.fs_path({name=somename,config=self.config})

   if not util.mkdir_p(util.dirname(newpath)) then
      return false, i18n.expand("ERROR_CANNOT_PREP_PATH")
   end

   local ok, err = luxio.rename(self:fs_path(), newpath)
   if ok ~= 0 then
      return false, i18n.expand("ERROR_CANNOT_RENAME_REPO", {reason=luxio.strerror(err)})
   end
   return true
end

function repo_method:copy_to(target)
   local ok, err

   if not target.is_nascent then
      return false, i18n.expand("ERROR_TARGET_NOT_NASCENT")
   end

   local newpath = target:fs_path()
   -- copy to a different path so it does not appear until finished
   local temp_path = newpath .. ".in_progress"

   if not util.mkdir_p(util.dirname(temp_path)) then
      return false, i18n.expand("ERROR_CANNOT_PREP_PATH")
   end

   -- attempt to create the target directory, so we can detect
   -- a copy is already in progress and return without removing
   -- the target directory
   ok, err = luxio.mkdir(temp_path, sio.tomode'0755')
   if ok ~= 0 then
      log.error(i18n.expand("ERROR_FAILED_TO_COPY",
                            {path=self:fs_path(),
                             newpath=newpath,
                             reason=i18n.expand("ERROR_COPY_IN_PROGRESS")}))
      return false, i18n.expand("ERROR_COPY_IN_PROGRESS")
   end

   local from = self:fs_path()
   local function filter(parent, name, info)
      return parent == from and name == "objects"
         or util.copy_dir_filter_base(parent, name, info)
   end
   -- copy non-objects parts of the git repository
   ok, err = util.copy_dir(from, temp_path, nil, filter)
   if not ok then
      log.error(i18n.expand("ERROR_FAILED_TO_COPY",
                            {path=from, newpath=temp_path, reason=err}))
      util.rm_rf(temp_path)
      return false, i18n.expand("ERROR_FAILED_COPYING_CONTENT")
   end
   -- Hardlink the objects tree
   local cbs = util.deep_copy(util.copy_dir_copy_callbacks)
   cbs[luxio.DT_REG] = util.hardlink_file
   ok, err = util.copy_dir(util.path_join(from, 'objects'),
                           util.path_join(temp_path, 'objects'),
                           cbs)
   if not ok then
      log.error(i18n.expand("ERROR_FAILED_HARDLINKING",
                            {path=from, newpath=temp_path, reason=err}))
      util.rm_rf(temp_path)
      return ok, i18n.expand("ERROR_FAILED_COPYING_CONTENT")
   end

   -- rename into place
   ok, err = luxio.rename(temp_path, newpath)
   if ok ~= 0 then
      log.error(i18n.expand("ERROR_FAILED_RENAME_REPOSITORY",
                            {from=temp_path, to=newpath,
                             reason=luxio.strerr(err)}))
      util.rm_rf(temp_path)
      return false, i18n.expand("ERROR_FAILED_COPYING_CONTENT")
   end

   return true
end

function repo_method:update_modified_date(shas)
   -- Update the info/web/last-modified
   local dirpath = self:fs_path() .. "/info/web"
   local modfile = dirpath .. "/last-modified"

   if not util.mkdir_p(dirpath) then
      return false, i18n.expand("ERROR_CANNOT_PREP_PATH_INFO")
   end

   local last_mod_mtime = 0
   local last_mod_offset = "+0000"
   local function update_based_on(mtime, offset)
      mtime = tonumber(mtime)
      if mtime > last_mod_mtime then
         last_mod_mtime = mtime
         last_mod_offset = offset
      end
   end
   local f = io.open(modfile, "r")
   if f then
      local s = f:read("*l")
      if s then
         local cur_mod_time, cur_mod_offset = s:find("^([0-9]+) ([+-][0-9]+)$")
         if cur_mod_time then
            update_based_on(cur_mod_time, cur_mod_offset)
         end
      end
      f:close()
   end
   for _, sha in pairs(shas) do
      if sha ~= string.rep("0", 40) then
         local obj = self.git:get(sha)
         if obj.type == "tag" then
            local tagger = obj.content.tagger
            update_based_on(tagger.unixtime, tagger.timezone)
         elseif obj.type == "commit" then
            local committer, author = obj.content.committer, obj.content.author
            update_based_on(committer.unixtime, committer.timezone)
            update_based_on(author.unixtime, author.timezone)
         end
      end
   end
   f = io.open(modfile, "w")
   if not f then
      return false, i18n.expand("ERROR_CANNOT_WRITE_LAST_MODIFIED")
   end
   f:write(("%d %s\n"):format(last_mod_mtime, last_mod_offset))
   f:close()
   return true
end

function repo_method:save_admin(reason, author, committer)
   local cursha = self.git:get_ref(adminrefname)
   local curcommit = self.git:get(cursha)
   local flat_tree = gall.tree.flatten(curcommit.content.tree.content)

   local new_conf_content = self.project_config:serialise()
   local conf_blob, msg = gall.object.create(self.git, "blob", new_conf_content)
   if not conf_blob then
      return nil, msg
   end

   flat_tree["project.conf"] = conf_blob

   local tree, msg = gall.tree.create(self.git, flat_tree)
   if not tree then
      return nil, msg
   end
   author = (author and {
                realname = self.config.users[author].real_name,
                email = self.config.users[author].email_address
            }) or admin_name
   committer = (committer and {
                   realname = self.config.users[committer].real_name,
                   email = self.config.users[committer].email_address
               }) or author
   -- Now a commit of the blob, using the gitano admin identity
   local commit, msg =
      gall.commit.create(self.git, {
                            author = author,
                            committer = committer,
                            message = reason or i18n.expand("MSG_UPDATED_ADMIN_TREE"),
                            tree = tree,
                            parents = { curcommit }
      })
   if not commit then
      return nil, msg
   end
   -- Check that it's all good
   local ok, msg = self:validate_admin_sha(commit.sha)
   if not ok then
      return nil, msg
   end
   -- Finally create/update the gitano/admin ref
   local ok, msg = self.git:update_ref(adminrefname, commit.sha, nil,
                                       curcommit.sha)
   if not ok then
      return nil, msg
   end

   return self:run_checks()
end

local _git_booleans = {
   ["true"] = true, yes = true, on = true,
   ["false"] = false, no = false, off = false,
}
local function _git_config_bool(v)
   if type(v) == "string" then
      return _git_booleans[v:lower()]
   elseif type(v) == "boolean" then
      return v
   end
   -- Intentional fall-through to return nil
end

function repo_method:git_command(t)
   local t_copy = util.deep_copy(t)
   table.insert(t_copy, 1, "git")
   if _git_config_bool(self:conf_get "git.receive.shallowUpdate") then
      table.insert(t_copy, 2, "-c")
      table.insert(t_copy, 3, "receive.shallowUpdate=true")
   end
   local proc = sp.spawn(t_copy)
   return proc:wait()
end

local repo_meta = {
   __index = repo_method,
}

local function check_repodir(dirname, repo)
   local dirp, err = luxio.opendir(dirname)

   if not dirp then
      if err == luxio.ENOENT then
         repo.is_nascent = true
         return repo
      else
         return nil, luxio.strerror(err)
      end
   else
      local needed = {
         branches = true,
         config = true,
         description = true,
         HEAD = true,
         objects = true,
         hooks = true,
         refs = true
      }
      local e, i
      repeat
         e, i = luxio.readdir(dirp)
         if e == 0 then
            needed[i.d_name] = nil
         end
      until not e
      if next(needed) then
         return nil, i18n.expand("ERROR_SOMETHING_MISSING", {what=next(needed)})
      end
   end

   return true
end

local function find_repository(config, reponame)
   -- Given the provided config, locate a repository represented by
   -- reponame.  If the repository does not exist then the returned
   -- repository is in a nascent state.
   --
   -- If the repository exists, then it is examined and brought up-to-date
   -- with any global config changes before being returned.
   -- Inject a leading '/'
   reponame = "/" .. reponame
   -- Remove any spaces, tabs, newlines or nulls
   reponame = reponame:gsub("[%s%z]+", "")
   -- Remove any '.' which follows a '/'
   reponame = reponame:gsub("/%.+", "/")
   -- simplify any sequence of '/' to a single '/'
   reponame = reponame:gsub("/+", "/")
   -- Remove any leading or trailing /
   reponame = reponame:match("^/*(.-)/*$")
   -- Remove trailing .git if present.
   if reponame:match(".%.git$") then
      reponame = reponame:match("^(.+)%.git$")
   end

   -- Construct the repo
   local repo = setmetatable({config = config, name = reponame}, repo_meta)

   local ok, msg = check_repodir(repo:fs_path(), repo)
   if not ok then
      return nil, msg
   end

   -- Nascent project repositories need to be returned now, no point looking
   -- for a git repo we can't find.
   if repo.is_nascent then
      -- Load a system lace.
      local lace, reason = lace.compile(repo)
      if not lace then
         return nil, reason
      end
      -- Stuff in the lace so :run_lace() work
      repo.lace = lace
      return repo
   end

   -- Let's get hold of a git repo for this

   local r, msg = gall.repository.new(repo:fs_path())
   if not r then
      return nil, msg
   end

   repo.git = r

   -- Okay, it smells alive, so let's verify it
   local ok, msg = repo:run_checks()
   if not ok then
      return nil, msg
   end

   return repo
end

local function foreach_repository(conf, callback, filterfn)
   -- Scan the contents of the configured repository root finding
   -- potential repo names.  Sort that list and then for each repo
   -- "find" it and call the callback with the name, repo and message

   local all_repos = {}

   local function scan_dir(dirname, prefix)
      local dirp, err = luxio.opendir(dirname)
      if not dirp then
         if err == luxio.ENOTDIR then
            return true
         end
         return nil, luxio.strerror(err)
      end
      local e, i
      local recurse = {}
      repeat
         e, i = luxio.readdir(dirp)
         if e == 0 then
            if i.d_name:find("%.git$") then
               -- Might be a repo, save for later
               all_repos[#all_repos+1] = (util.path_join(prefix, i.d_name)
                                         ):gsub("^/", "")
            else
               if i.d_name:find("^[^%.]") then
                  recurse[#recurse+1] = i.d_name
               end
            end
         end
      until not e
      dirp = nil  -- Allow GC of DIR handle
      -- Now try and recurse if possible,
      for i = 1, #recurse do
         local ok, msg = scan_dir(util.path_join(dirname, recurse[i]),
                                  util.path_join(prefix, recurse[i]))
         if not ok then
            return ok, msg
         end
      end
      return true
   end
   local ok, msg = scan_dir(config.repo_path(), "")
   if not ok then
      return ok, msg
   end

   -- Now for each repo name we think we've found, we "find" it and
   -- report that
   table.sort(all_repos)
   for i = 1, #all_repos do
      local want = true
      if filterfn and not filterfn(all_repos[i]) then
         want = false
      end
      if want then
         local ok, msg = find_repository(conf, all_repos[i])
         callback(all_repos[i], ok, msg)
      end
   end

   return true
end

return {
   find = find_repository,
   foreach = foreach_repository,
}