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
|
# Copyright © 2010 Julian Blake Kongslie <jblake@omgwallhack.org>
# Licensed under the BSD 3-clause license.
use strict;
use warnings;
package Piny::Repo;
use Moose;
use Moose::Util::TypeConstraints;
use MooseX::StrictConstructor;
use Digest::SHA qw( sha256_hex );
use File::Find qw( find );
use File::Temp qw( );
use IO::Dir qw( );
use Math::GMP qw( );
use IkiWiki::FakeSetup qw( readSetup writeSetup );
use Piny::Config;
use Piny::Environment;
use Piny::Group;
use Piny::User;
use Piny::User::IkiWiki;
# Types
subtype 'Reponame'
=> as 'Str'
=> where { $_ =~ /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/ }
=> message { 'That name is not in the correct format for a piny repo.' }
;
subtype 'SimpleText'
=> as 'Str'
=> where { $_ =~ /^[\x{0020}-\x{FDCF}\x{FDF0}-\x{FFFD}]{1,80}$/ }
=> message { 'That description is not in the correct format for a piny repo.' }
;
# Attributes
has 'name' =>
( is => 'ro'
, isa => 'Reponame'
, required => 1
);
has 'shortname' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'group' =>
( is => 'ro'
, isa => 'Piny::Group'
, lazy_build => 1
, init_arg => undef
);
has 'path' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'description' =>
( is => 'rw'
, isa => 'SimpleText'
, trigger => \&_set_description
, lazy_build => 1
, init_arg => undef
);
has 'repostat' =>
( is => 'ro'
, isa => 'ArrayRef'
, lazy_build => 1
, init_arg => undef
);
has 'owner' =>
( is => 'rw'
, isa => 'Piny::User'
, trigger => \&_change_owner
, lazy_build => 1
, init_arg => undef
);
has 'globally_readable' =>
( is => 'ro'
, isa => 'Bool'
, lazy_build => 1
, init_arg => undef
);
has 'globally_writable' =>
( is => 'ro'
, isa => 'Bool'
, lazy_build => 1
, init_arg => undef
);
has 'cgit_url' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_setup' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_destdir' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_srcdir' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_url' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_cgiurl' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_historyurl' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_diffurl' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'ikiwiki_cgipath' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'secure_path' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'apache_global_config' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'apache_secure_config' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'apache_www_config' =>
( is => 'ro'
, isa => 'Str'
, lazy_build => 1
, init_arg => undef
);
has 'config' =>
( is => 'ro'
, isa => 'Piny::Config'
, lazy_build => 1
, init_arg => undef
, clearer => 'clear_config'
);
# Public methods
sub add_access {
my ( $s, @users ) = @_;
$s->group->add_member( @users );
};
sub remove_access {
my ( $s, @users ) = @_;
$s->group->remove_member( @users );
};
sub has_access {
my ( $s, $user ) = @_;
return $s->owner->uid == $user->uid || $user->has_group( $s->group );
};
sub rebuild {
my ( $s ) = @_;
$s->rebuild_git;
$s->destroy_ikiwiki;
if ( $s->config->piny_ikiwiki =~ /^(1|true)$/ ) {
$s->rebuild_ikiwiki;
};
};
sub rebuild_git {
my ( $s ) = @_;
my $dirperm;
my $fileperm;
unless( getgrnam("git-" . $s->shortname ) ) {
system( "/usr/sbin/addgroup", "--quiet", "git-" . $s->shortname ) and die "Could not create repo group!";
system( "/usr/sbin/adduser", "--quiet", $s->owner->name, "git-" . $s->shortname ) and die "Could not add you to the repo group!";
getpwnam("iki-" . $s->shortname) and system( "/usr/sbin/adduser", "--quiet", "iki-" . $s->shortname, "git-" . $s->shortname ) and die "Could not add ikiwiki user to git group!";
};
foreach( "git-daemon-export-ok", "packed-refs" ) {
unless( -e $s->path . "/" . $_ ) {
open( TOUCH, ">", $s->path . "/" . $_ ) or die "Could not touch $_ for repo: $!";
close( TOUCH );
};
};
foreach( "info", "logs", "branches" ) {
(-e $s->path . "/" . $_) or mkdir( $s->path . "/" . $_ ) or die "Could not mkdir $_ for repo: $!";
};
if ( $s->config->core_sharedrepository eq "0666" ) {
$dirperm = "2777";
$fileperm = "0644";
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
$dirperm = "2775";
$fileperm = "0644";
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
$dirperm = "2770";
$fileperm = "0640";
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
$dirperm = "2750";
$fileperm = "0640";
} else {
die $s->config->core_sharedrepository . "is an unhandled value!"
};
# FIXME: we should verify we are not breaking someone else's object hardlinks with these chmod or chown operations
system( "/usr/bin/find " . $s->path . "/refs " . $s->path . "/info " . $s->path . "/branches " . $s->path . "/objects " . $s->path . "/logs " . $s->path . "/HEAD " . $s->path . "/packed-refs -type d -print0 | /usr/bin/xargs -0 /bin/chmod $dirperm" ) and die "Could not chmod shared git resources!";
system( "/usr/bin/find " . $s->path . "/refs " . $s->path . "/info " . $s->path . "/branches " . $s->path . "/objects " . $s->path . "/logs " . $s->path . "/HEAD " . $s->path . "/packed-refs -type f -print0 | /usr/bin/xargs -0 /bin/chmod $fileperm" ) and die "Could not chmod shared git resources!"; # most files are either immutable or replaced at link level
system( "/usr/bin/find " . $s->path . "/refs " . $s->path . "/info " . $s->path . "/branches " . $s->path . "/objects " . $s->path . "/logs " . $s->path . "/HEAD " . $s->path . "/packed-refs -print0 | /usr/bin/xargs -0 /bin/chgrp " . $s->group->name ) and die "Could not chgrp shared git resources!";
$ENV{"GIT_DIR"} = $s->path;
system( "/usr/bin/git", "config", "gitweb.owner", $s->owner->email->address ) and die "Could not git config gitweb.owner!";
# packed-refs files aren't modifiable under our permission system and are poorly supported on old version of git anyway.
system( "/usr/bin/git", "config", "gc.packrefs", "0" ) and die "Could not git config gc.packrefs!";
# git-upload-pack will default to core.sharedrepository 'false', so we make sure the pinyconfig value is set here.
system( "/usr/bin/git", "config", "core.sharedrepository", $s->config->core_sharedrepository ) and die "Could not git config core.sharedrepository!";
delete $ENV{"GIT_DIR"};
chown( 0, 0, $s->path ) or die "Could not change ownership of " . $s->path;
chmod( 00755, $s->path ) or die "Could not change mode of " . $s->path;
foreach( "config", "description", "git-daemon-export-ok" ) {
chown( 0, 0, $s->path . "/" . $_ ) or die "Could not change ownership of $_!";
chmod( 00644, $s->path . "/" . $_ ) or die "Could not change mode of $_!";
};
$s->clear_config;
$s->config->save;
};
sub rebuild_ikiwiki {
my ( $s ) = @_;
unless( getpwnam("iki-" . $s->shortname ) ) {
system( "/usr/sbin/adduser", "--quiet", "--system", "--group", "--gecos", $s->shortname, "iki-" . $s->shortname ) and die "Could not create ikiwiki user!";
system( "/usr/sbin/adduser", "--quiet", "iki-" . $s->shortname, "git-" . $s->shortname ) and die "Could not add ikiwiki user to the repo group!";
};
my $ikiuser = Piny::User::IkiWiki->new( "name" => "iki-" . $s->shortname );
system( "/bin/chown", "-R", $ikiuser->name . "." . $ikiuser->name, $s->path . "/hooks" ) and die "Could not change ownership of git hooks!";
open( SETUP, ">", "/etc/ikiwiki/piny/" . $s->name . ".setup" ) or die "Could not open new ikiwiki setup file: $!";
print SETUP $s->ikiwiki_setup;
close( SETUP ) or die "Could not close new ikiwiki setup file: $!";
foreach( $s->ikiwiki_srcdir, $s->config->piny_ikiwikidestdir . $s->name, $s->ikiwiki_destdir, $s->secure_path ) {
unless( -d $_ ) { mkdir( $_ ) };
system( "/bin/chown", "-R", $ikiuser->name . ".", $_ ) and die "Could not change ownership of ikiwiki directories!";
};
system( "/usr/bin/find " . $s->ikiwiki_srcdir . " -type d -name .ikiwiki -print0 | xargs -0 --no-run-if-empty rm -r") and die "Could not remove old Ikiwiki state dir!";
unless( -d $s->ikiwiki_srcdir . ".git" ) {
# do this after the chown -R because there are a lot of object hardlinks flying around that don't want to chown
system( "/usr/bin/sudo", "-u", $ikiuser->name, "/usr/bin/git", "clone", "--quiet", $s->path, $s->ikiwiki_srcdir ) and die "Could not clone repo to ikiwiki srcdir!";
};
open( WIKILIST, ">", "/etc/ikiwiki/wikilist.d/" . $s->name ) or die "Could not create wikilist.d file: $!";
print WIKILIST $ikiuser->name . " /etc/ikiwiki/piny/" . $s->name . ".setup\n";
close( WIKILIST ) or die "Could not close wikilist.d file: $!";
$s->rebuild_wikilist;
system( "/usr/bin/sudo", "-u", $ikiuser->name, "/usr/bin/ikiwiki", "--setup", "/etc/ikiwiki/piny/" . $s->name . ".setup" ) and die "Could not do initial compile of ikiwiki!";
my $globaltemp = File::Temp->new( ) or die "Could not create temporary file: $!";
$globaltemp->unlink_on_destroy( 0 );
print $globaltemp $s->apache_global_config;
$globaltemp->close or die "Could not close new wikilist: $!";
rename( $globaltemp->filename, "/etc/apache2/piny/global/" . $s->name ) or die "Could not rename apache config: $!";
my $securetemp = File::Temp->new( ) or die "Could not create temporary file: $!";
$securetemp->unlink_on_destroy( 0 );
print $securetemp $s->apache_secure_config;
$securetemp->close or die "Could not close new wikilist: $!";
rename( $securetemp->filename, "/etc/apache2/piny/secure/" . $s->name ) or die "Could not rename apache config: $!";
my $wwwtemp = File::Temp->new( ) or die "Could not create temporary file: $!";
$wwwtemp->unlink_on_destroy( 0 );
print $wwwtemp $s->apache_www_config;
$wwwtemp->close or die "Could not close new wikilist: $!";
rename( $wwwtemp->filename, "/etc/apache2/piny/www/" . $s->name ) or die "Could not rename apache config: $!";
system( "/etc/init.d/apache2", "reload" ) and die "Could not reload apache config!";
};
sub rebuild_wikilist {
my $temp = File::Temp->new( ) or die "Could not create temporary file: $!";
$temp->unlink_on_destroy( 0 );
my $dh = IO::Dir->new( "/etc/ikiwiki/wikilist.d" ) or die "Could not open wikilist.d directory: $!";
while ( defined ( my $entry = $dh->read ) ) {
next if ( $entry =~ /^\./ );
open( FILE, "<", "/etc/ikiwiki/wikilist.d/" . $entry ) or die "Could not open wikilist.d entry $entry: $!";
print $temp <FILE>;
close( FILE ) or die "Could not close wikilist.d entry $entry: $!";
};
$temp->close or die "Could not close new wikilist: $!";
chmod( 00644, $temp->filename ) or die "Could not fix mode of new wikilist: $!";
rename( $temp->filename, "/etc/ikiwiki/wikilist" ) or die "Could not rename over old wikilist: $!";
};
sub destroy {
my ( $s ) = @_;
$s->destroy_ikiwiki;
$s->destroy_git;
};
sub destroy_git {
my ( $s ) = @_;
system( "rm", "-rf", $s->path );
system( "delgroup", $s->group->name );
};
sub destroy_ikiwiki {
my ( $s ) = @_;
my $user = Piny::Environment->instance->user;
foreach( "/etc/apache2/piny/global/" . $s->name, "/etc/apache2/piny/secure/" . $s->name, "/etc/apache2/piny/www/" . $s->name, ) {
if ( -e $_ ) {
unlink( $_ );
};
};
system( "/etc/init.d/apache2", "reload" ) and die "Could not reload apache config!";
if ( -e "/etc/ikiwiki/wikilist.d/" . $s->name ) {
unlink( $_ );
$s->rebuild_wikilist;
};
foreach( $s->secure_path, $s->config->piny_ikiwikidestdir . $s->name, $s->config->piny_ikiwikisecurepath . "read/" . $s->name, $s->ikiwiki_destdir, $s->ikiwiki_srcdir, "/etc/ikiwiki/piny/" . $s->name . ".setup" ) {
if ( -e $_ ) {
system( "rm", "-rf", $_ );
};
};
my $ikiuser = Piny::User::IkiWiki->new( "name" => "iki-" . $s->name );
getpwnam( "iki-" . $s->shortname ) and system( "deluser", "--quiet", "--remove-home", "iki-" . $s->shortname );
getgrnam( "iki-" . $s->shortname ) and system( "delgroup", "--quiet", "iki-" . $s->shortname );
};
# Triggers
sub _set_description {
my ( $s, $new_description, $old_description ) = @_;
open( my $fd, ">", $s->path . "/description" ) or die "Unable to open " . $s->path . "/description for writing: $!";
print $fd $new_description;
close( $fd ) or die "Error when closing " . $s->path . "/description: $!";
};
sub _change_owner {
my ( $s, $new_owner, $old_owner ) = @_;
find( { wanted => sub { chown( $new_owner->uid, -1, $_ ) or die "Couldn't chown $_: $!"; }, no_chdir => 1 }, $s->path . "/objects" );
$s->clear_ikiwiki_setup;
};
# Class methods
sub all_repos {
my ( $class, $dir ) = @_;
$dir = "/srv/git" unless defined $dir;
my @ret;
find( { wanted => sub { if ( /^[^.].*\.git$/ ) { $File::Find::prune = 1; push( @ret, $File::Find::name ); }; } }, $dir );
@ret = map { s/^\Q$dir\E\/?//; s/\.git$//; $class->new( name => $_ ); } @ret;
return @ret;
};
# Only sets up needed data; ->rebuild takes care of the rest.
sub create {
my ( $class, $name, $description, $source ) = @_;
if ( not defined $source) {
$source = Piny::Config->new->piny_template;
};
my $user = Piny::Environment->instance->user;
find_type_constraint( "Reponame" )->assert_valid( $name );
find_type_constraint( "SimpleText" )->assert_valid( $description );
my $repo = $class->new( "name" => $name );
mkdir( $repo->path ) or die "The repo $name appears to already exist! ($!)";
chdir( "/srv/git" ); # so git-clone can do the work of resolving local repo names for us
if ( defined $source ) {
system( "/bin/chown", $user . "." . $user, $repo->path ) and die "Could not change ownership of repo path!"; # permissions are overridden later
if ( system( "/usr/bin/sudo", "-u", $user, "/usr/bin/git", "clone", "--bare", "--no-hardlinks", "--quiet", $source, $repo->path ) ) { # sudo -u $user needed in order to test user readability of whatever they want to clone. the mode o+rx should probably be masked off if we want private repos to stay private.
system( "/bin/rm", "-r", $repo->path ) and die "Failed to clean up after failed clone operation!";
die( "Could not clone repository!\n" );
};
} else {
system( "/usr/bin/git", "init", "--bare", "--quiet", $repo->path ) and die "Could not initialize git repo!";
};
system( "/bin/chown", "-R", $user->name, $repo->path . "/objects" ) and die "Could not change ownership of $_ for repo: $!";
$repo->description( $description );
$repo->rebuild_git;
$repo = $class->new( $name );
if ( $repo->config->piny_ikiwiki =~ /^(1|true)$/ ) {
$repo->rebuild_ikiwiki;
};
return $repo;
};
# Builder methods
# If constructed with just one argument, then treat it as a repo name.
around BUILDARGS => sub {
my ( $orig, $class ) = ( shift, shift );
if ( @_ == 1 && ! ref $_[0] ) {
return $class->$orig( name => $_[0] );
} else {
return $class->$orig( @_ );
};
};
my @letter1 = ( 'a' .. 'z' ); # First digit is base 26.
my @lettern = ( '0' .. '9', 'a' .. 'z', '-', '_' ); # Remaining digits are base 38.
sub _build_shortname {
my ( $s ) = @_;
my $str = $s->name;
# Short inputs don't need to be hashed.
return $str if length $str <= 28;
# We have to use Math::GMP here instead of Math::BigInt or pragma bignum
# support because we actually require infinite precision integer arithmetic,
# and bignum tends to only give us 40 decimal digits of precision during
# division because the Perl maintainers are jackasses.
my $n = Math::GMP->new( "0x" . sha256_hex( $str ) );
my ( $m );
# First digit.
( $n, $m ) = $n->bdiv( scalar @letter1 );
my $out = $letter1[$m];
# Remaining digits.
while ( length $out < 28 and $n > 0 ) {
( $n, $m ) = $n->bdiv( scalar @lettern );
$out .= $lettern[$m];
};
return $out;
};
sub _build_group {
my ( $s ) = @_;
return Piny::Group->new( name => "git-" . $s->shortname );
};
sub _build_path {
my ( $s ) = @_;
return "/srv/git/" . $s->name . ".git";
};
sub _build_description {
my ( $s ) = @_;
open( my $d, "<", $s->path . "/description" ) or die "Unable to open " . $s->path . "/description: $!";
my $desc;
{
local $/ = undef;
$desc = <$d>;
};
close( $d );
return $desc;
};
sub _build_repostat {
my ( $s ) = @_;
my @res = stat( $s->path . "/objects" );
die "stat( " . $s->path . "/objects ) failed: $!" unless @res;
return \@res;
};
sub _build_owner {
my ( $s ) = @_;
my ( $uid ) = $s->repostat->[4];
return Piny::User->new( uid => $uid );
};
sub _build_globally_readable {
my ( $s ) = @_;
return ( $s->repostat->[2] & 0444 ) == 0444;
};
sub _build_globally_writable {
my ( $s ) = @_;
return ( $s->repostat->[2] & 0111 ) == 0111;
};
sub _build_cgit_url {
my ( $s ) = @_;
if ( $s->config->core_sharedrepository eq "0666" ) {
return $s->config->piny_ikiwikisecureurl . "cgit/" . $s->name;
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
return $s->config->piny_ikiwikisecureurl . "cgit/" . $s->name;
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
return $s->config->piny_ikiwikisecureurl . "auth/cgit/" . $s->name;
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
return $s->config->piny_ikiwikisecureurl . "auth/cgit/" . $s->name;
} else {
die ( $s->config->core_sharedrepository . "is an unhandled value!" );
};
}
sub _build_ikiwiki_setup {
my ( $s ) = @_;
my ( $package, $config ) = readSetup( "/usr/share/libpiny/ikiwiki.setup" );
$config->{"wikiname"} = $s->name;
$config->{"adminemail"} = $s->owner->email->address;
$config->{"srcdir"} = $s->ikiwiki_srcdir;
$config->{"destdir"} = $s->ikiwiki_destdir;
$config->{"url"} = $s->ikiwiki_url;
$config->{"cgiurl"} = $s->ikiwiki_cgiurl;
$config->{"historyurl"} = $s->ikiwiki_historyurl;
$config->{"diffurl"} = $s->ikiwiki_diffurl;
$config->{"wrappers"} =
[ { "wrapper" => $s->ikiwiki_cgipath
, "wrappergroup" => $s->group->name
, "wrappermode" => "06755"
, "cgi" => 1
}
, { "wrapper" => $s->path . "/hooks/post-update"
, "wrappergroup" => $s->group->name
, "wrappermode" => "06755"
, "notify" => 0
}
];
if ( -e "/etc/ikiwiki/piny/" . $s->name . ".setup.pl" ) {
system( "perl", "-C", "/etc/ikiwiki/piny/" . $s->name . ".setup.pl" ) && die ( 'Failed to compile ikiwiki overrides file!' );
undef $@;
eval {
package TEMP;
use Piny;
$TEMP::repo = $s;
$TEMP::conf = $config;
no strict 'vars';
do "/etc/ikiwiki/piny/" . $s->name . ".setup.pl";
};
};
return writeSetup( $package, $config );
};
sub _build_ikiwiki_destdir {
my ( $s ) = @_;
if ( $s->config->core_sharedrepository eq "0666" ) {
return ( $s->config->piny_ikiwikidestdir . $s->name );
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
return ( $s->config->piny_ikiwikidestdir . $s->name );
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
return ( $s->config->piny_ikiwikisecurepath . "read/" . $s->name );
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
return ( $s->config->piny_ikiwikisecurepath . "read/" . $s->name );
} else {
die ( $s->config->core_sharedrepository . "is an unhandled value!" );
};
};
sub _build_ikiwiki_srcdir {
my ( $s ) = @_;
return $s->config->piny_ikiwikisrcdir . $s->name;
};
sub _build_ikiwiki_url {
my ( $s ) = @_;
if ( $s->config->core_sharedrepository eq "0666" ) {
return ( $s->config->piny_ikiwikiurl . $s->name );
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
return ( $s->config->piny_ikiwikiurl . $s->name );
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
return ( $s->config->piny_ikiwikisecureurl . "read/" . $s->name );
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
return ( $s->config->piny_ikiwikisecureurl . "read/" . $s->name );
} else {
die ( $s->config->core_sharedrepository . "is an unhandled value!" );
};
};
sub _build_ikiwiki_cgiurl {
my ( $s ) = @_;
return $s->config->piny_ikiwikisecureurl . "write/" . $s->name . "/ikiwiki.cgi";
};
sub _build_secure_path {
my ( $s ) = @_;
return $s->config->piny_ikiwikisecurepath . "write/" . $s->name;
};
sub _build_ikiwiki_cgipath {
my ( $s ) = @_;
return $s->secure_path . "/ikiwiki.cgi";
};
sub _build_ikiwiki_historyurl {
my ( $s ) = @_;
return $s->cgit_url . "/log/[[file]]";
};
sub _build_ikiwiki_diffurl {
my ( $s ) = @_;
return $s->cgit_url . "/commit/?id=[[sha1_commit]]";
};
sub _build_apache_global_config {
my ( $s ) = @_;
if ( $s->config->core_sharedrepository eq "0666" ) {
return (
"<Directory " . $s->secure_path . ">\n SSLRequireSSL\n AuthPAM_Enabled on\n" . " AuthPAM_FallThrough off\n AuthBasicAuthoritative off\n AuthType Basic\n AuthName \"Valid Piny user needed.\"\n" . " Require valid-user\n" . " </Directory>\n"
);
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
return (
"<Directory " . $s->secure_path . ">\n SSLRequireSSL\n AuthPAM_Enabled on\n AuthGROUP_Enabled on\n AuthPAM_FallThrough off\n AuthBasicAuthoritative off\n AuthType Basic\n AuthName \"User with access to " . $s->name . " repository needed.\"\n Require group " . $s->group->name . "\n</Directory>\n"
);
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
return (
"<Directory " . $s->secure_path . ">\n SSLRequireSSL\n AuthPAM_Enabled on\n AuthGROUP_Enabled on\n AuthPAM_FallThrough off\n AuthBasicAuthoritative off\n AuthType Basic\n AuthName \"User with access to " . $s->name . " repository needed.\"\n Require group " . $s->group->name . "\n</Directory>\n" .
"<Directory " . $s->ikiwiki_destdir . ">\n SSLRequireSSL\n AuthPAM_Enabled on\n AuthGROUP_Enabled on\n AuthPAM_FallThrough off\n AuthBasicAuthoritative off\n AuthType Basic\n AuthName \"User with access to " . $s->name . " repository needed.\"\n Require group " . $s->group->name . "\n</Directory>\n"
);
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
return (
"<Directory " . $s->secure_path . ">\n SSLRequireSSL\n AuthPAM_Enabled on\n" . " AuthPAM_FallThrough off\n AuthBasicAuthoritative off\n AuthType Basic\n AuthName \"Owner of " . $s->name . " repository needed.\"\n Require user " . $s->owner->name . "\n</Directory>\n" .
"<Directory " . $s->ikiwiki_destdir . ">\n SSLRequireSSL\n AuthPAM_Enabled on\n AuthGROUP_Enabled on\n AuthPAM_FallThrough off\n AuthBasicAuthoritative off\n AuthType Basic\n AuthName \"User with access to " . $s->name . " repository needed.\"\n Require group " . $s->group->name . "\n</Directory>\n"
);
} else {
die ( $s->config->core_sharedrepository . "is an unhandled value!" );
};
};
sub _build_apache_secure_config {
my ( $s ) = @_;
if ( $s->config->core_sharedrepository eq "0666" ) {
return ( "Redirect /read/" . $s->name . " " . $s->ikiwiki_url . "\n" );
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
return ( "Redirect /read/" . $s->name . " " . $s->ikiwiki_url . "\n" );
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
return ( "Redirect /cgit/" . $s->name . " /auth/cgit/" . $s->name . "\n" );
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
return ( "Redirect /cgit/" . $s->name . " /auth/cgit/" . $s->name . "\n" );
} else {
die ( $s->config->core_sharedrepository . "is an unhandled value!" );
};
};
sub _build_apache_www_config {
my ( $s ) = @_;
if ( $s->config->core_sharedrepository eq "0666" ) {
return ( "\n" );
} elsif ( $s->config->core_sharedrepository =~ /^(0664|all|everybody|world)$/ ) {
return ( "\n" );
} elsif ( $s->config->core_sharedrepository =~ /^(0660|true|1|group)$/ ) {
return ( "Redirect /" . $s->name . " " . $s->ikiwiki_url . "\n" );
} elsif ( $s->config->core_sharedrepository =~ /^(0640|false|0)$/ ) {
return ( "Redirect /" . $s->name . " " . $s->ikiwiki_url . "\n" );
} else {
die ( $s->config->core_sharedrepository . "is an unhandled value!" );
};
};
sub _build_config {
my ( $s ) = @_;
return Piny::Config->new( confpath => $s->path . "/config" );
};
# Moose boilerplate
__PACKAGE__->meta->make_immutable;
1;
|