aboutsummaryrefslogtreecommitdiffstats
path: root/src/gitjoe/newrepo.pl
blob: eb24e7e5e644567713f2465ac369a412ec11fa9c (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
#!/usr/local/bin/perl

use strict;
use warnings;
use Term::ANSIColor;

sub main {
	my $argc = $#ARGV + 1;
	if ($argc < 2) {
		print colored("Failed!\n", 'bold red')
			. "Missing argument, at least 2 needed "
			. colored("[user - reponame - (description)]", 'bold')
			. "\n";
		exit 1;
	}
	my $usr = $ARGV[0];
	my $repo = $ARGV[1];
	my $desc = "";
	if ($argc >= 3) {
		$desc = $ARGV[2];
	}
	my $home_dir = '/usr/home/' . $usr . '/';
	if (substr($repo, -4) ne '.git') {
		$repo = $repo . '.git';
	}
	$repo = $repo . '/';
	mkdir $home_dir . $repo, 0755;
	system(
		'/usr/local/bin/git',
		'-C',
		$home_dir . $repo,
		'init',
		'--bare'
		);
	my (undef, undef, $uid, $gid) = getpwnam($usr);
	find(
		sub {
			chown $uid, $gid, $_;
		},
		$home_dir . $repo
		);
	# system(
	# 	'/usr/local/bin/dash',
	# 	'-c',
	# 	'/usr/sbin/chown -v -R ' . $usr . ':' . $usr . ' ' . $home_dir . $repo
	# 	);
	system(
		'/usr/local/bin/dash',
		'-c',
		'/usr/bin/touch ' .  $home_dir . $repo . 'git-daemon-export-ok'
		);
	system(
		'/usr/local/bin/dash',
		'-c',
		'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'git-daemon-export-ok'
		);
	open(my $owner_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'owner');
	print $owner_fh $usr;
	close($owner_fh);
	system(
		'/usr/local/bin/dash',
		'-c',
		'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'owner'
		);
	open(my $url_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'url');
	substr($repo, -1) = "";
	print $url_fh 'git://jozanleclerc.xyz/' . $usr . '/' . $repo;
	close($url_fh);
	$repo = $repo . '/';
	system(
		'/usr/local/bin/dash',
		'-c',
		'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'url'
		);
	if ($argc >= 3) {
		open(my $desc_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'description');
		print $desc_fh $desc;
		close($desc_fh);
		system(
			'/usr/local/bin/dash',
			'-c',
			'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'description'
			);
	}
	else {
		open(my $desc_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'description');
		print $desc_fh 'No description yet';
		close($desc_fh);
		system(
			'/usr/local/bin/dash',
			'-c',
			'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'description'
			);
	}
	substr($repo, -1) = "";
	print "Created git repository " . colored($repo, 'bold green') . " for user " . colored($usr, 'bold') . ".\n";
	print "Remote url: " . colored($usr . '@jozanleclerc.xyz:' . $repo, 'bold green') . "\n"
		. "Public clone url: " . colored('git://jozanleclerc.xyz/' . $usr . '/' . $repo, 'bold green') . "\n";
	exit;
}

main();

__END__