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

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

sub main {
	my $argc = $#ARGV + 1;
	if ($argc < 3) {
		print colored("Failed!\n", 'bold red')
			. "Missing argument, 3 needed "
			. colored("[user - reponame - new description]", 'bold')
			. "\n";
		exit 1;
	}
	my $usr = $ARGV[0];
	my $repo = $ARGV[1];
	my $desc = $ARGV[2];
	my $home_dir = '/usr/home/' . $usr . '/';
	if (substr($repo, -4) ne '.git') {
		$repo = $repo . '.git';
	}
	$repo = $repo . '/';
	open(my $desc_fh, '>:encoding(UTF-8)', $home_dir . $repo . 'description');
	print $desc_fh $desc;
	close($desc_fh);
	# my (undef, undef, $uid, $gid) = getpwnam($usr);
	# chown $uid, $gid, $home_dir . '.ssh/';
	# system(
	# 	'/usr/local/bin/dash',
	# 	'-c',
	# 	'/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'description'
	# 	);
	print "Changed git repository " . colored($repo, 'bold green') . " description for user " . colored($usr, 'bold') . ".\n"
	. "New description: ". colored($desc, 'bold green') . ".\n";
	exit;
}

main();

__END__