diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-18 02:50:08 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-18 02:50:08 +0200 |
commit | babbae0f6f2dd9d8744ff442595e751a24809acc (patch) | |
tree | 0331004f941cd2ff8ebcd217bbaf40e4e7b7471d | |
parent | cube now public (diff) | |
download | joe-scripts-babbae0f6f2dd9d8744ff442595e751a24809acc.tar.gz joe-scripts-babbae0f6f2dd9d8744ff442595e751a24809acc.tar.bz2 joe-scripts-babbae0f6f2dd9d8744ff442595e751a24809acc.tar.xz joe-scripts-babbae0f6f2dd9d8744ff442595e751a24809acc.tar.zst joe-scripts-babbae0f6f2dd9d8744ff442595e751a24809acc.zip |
New script to count visitors on my website
-rwxr-xr-x | src/cron/counter.sh | 10 | ||||
-rwxr-xr-x | src/cron/gitjoe.pl (renamed from src/update/gitjoe.pl) | 0 | ||||
-rwxr-xr-x | src/gitjoe/chpublic.pl | 43 |
3 files changed, 10 insertions, 43 deletions
diff --git a/src/cron/counter.sh b/src/cron/counter.sh new file mode 100755 index 0000000..f3a7656 --- /dev/null +++ b/src/cron/counter.sh @@ -0,0 +1,10 @@ +#!/bin/sh -e + +logfile='/var/log/nginx/access.log' +destfile='/usr/local/www/jozan/index.html' +foretext='Unique visitors: ' +tmp=$(mktemp) + +sed "s/$foretext.*$/$foretext$(awk '{print $1}' $logfile | sort | uniq | wc -l | tr -d ' ')/" $destfile >"$tmp" +cat "$tmp" >$destfile +rm "$tmp" diff --git a/src/update/gitjoe.pl b/src/cron/gitjoe.pl index bb668b2..bb668b2 100755 --- a/src/update/gitjoe.pl +++ b/src/cron/gitjoe.pl diff --git a/src/gitjoe/chpublic.pl b/src/gitjoe/chpublic.pl deleted file mode 100755 index 9f17618..0000000 --- a/src/gitjoe/chpublic.pl +++ /dev/null @@ -1,43 +0,0 @@ -#!/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, 2 needed " - . colored("[user - reponame]", 'bold') - . "\n"; - exit 1; - } - my $usr = $ARGV[0]; - my $repo = $ARGV[1]; - my $home_dir = '/usr/home/' . $usr . '/'; - if (substr($repo, -4) ne '.git') { - $repo = $repo . '.git'; - } - my $state; - if (-e $home_dir . $repo . '/git-daemon-export-ok') { - unlink($home_dir . $repo . '/git-daemon-export-ok'); - $state = 'private'; - } - else { - open(my $fh, '>', $home_dir . $repo . '/git-daemon-export-ok'); - close($fh); - $state = 'public'; - my (undef, undef, $uid, $gid) = getpwnam($usr); - chown $uid, $gid, $home_dir . $repo . '/git-daemon-export-ok'; - } - print "Changed git repository " . colored($repo, 'bold green') - . " for user " . colored($usr, 'bold green') . " visibility " - . colored('state', 'bold') . " to " . colored($state, 'bold green') . ".\n"; - exit; -} - -main(); - -__END__ |