summaryrefslogtreecommitdiffstats
path: root/notify.pl
blob: fa0a8c72a7e648f572abdb4df8c66f617112cf85 (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
#!/usr/bin/env perl
#
# Copyright (c) 2019-2021 Mischa Peters <mischa @ openbsd.amsterdam>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
# vmm(4)/vmd(8) VM notify script for OpenBSD Amsterdam
# 2020/05/17 initial release
# 2021/05/09 complete restructure and KISS
#
use 5.024;
use strict;
use warnings;
use autodie;
use POSIX qw(strftime);
use HTTP::Tiny;

# get function and function_variable (vmid) from arguments
my $function = $ARGV[0] || "empty";
my $function_variable = $ARGV[1] || "empty";

# fuction to parse _deploy.conf and vm*.txt files
# all variables are stripped and added to either %vms or %conf
sub get_variables {
	my ($hash_name, @files)	= @_;
	my %hash;
	my $filename;
	my $vm_name;
	my $vm_number;

	for my $file (@files) {
		# When hash is 'vms' use the vm_name as key
		# Otherwise use 'conf' as key
		if ($hash_name eq "vms") {
			($filename = $file) =~ s/.*\///;
			($vm_name = $filename) =~ s/\.txt//;
			($vm_number = $vm_name) =~ s/^vm//;
			$hash{$vm_name}{'vm_number'} = $vm_number;
		}

		open my $fh, "<", "$file";
		while (my $row = <$fh>) {
			next if ($row =~ /^\s*($|#)/);
			chomp ($row);
			(my $key, my $val) = split(/=/, $row, 2);
			if ($hash_name eq "vms") {
				($hash{$vm_name}{$key} .= $val) =~ s/^"+|"+$//g;
			} else {
				($hash{$hash_name}{$key} .= $val) =~ s/^"+|"+$//g;
			}
		}
		close $fh;
	}
	return %hash;
}

sub mailout {
	my %conf = %{$_[0]};
	my %vms = %{$_[1]};

	my $_etc = $conf{'conf'}{'ETC'};
	my $_vms = $conf{'conf'}{'VMS'};
	my $_tmpl = $conf{'conf'}{'TEMPLATES'};
	my $_server = $conf{'conf'}{'SERVER'};
	my $_ip4netmask = $conf{'conf'}{'NETMASK'};
	my $_ip4gw = $conf{'conf'}{'ROUTER'};

	my $template = "$_tmpl/email-$function.txt";
	my $server_number = $1 if $_server =~ /([0-9]+)/;
	my $evenodd = $server_number % 2;
	my $year = strftime("%Y", localtime);
	my $month = strftime("%m", localtime);

	my $response = HTTP::Tiny->new->get('https://openbsd.amsterdam/index.html');
	my $total_donated = $1 if $response->{'content'} =~ /([0-9,]+) donated to the OpenBSD/;
	my $total_vms = $1 if $response->{'content'} =~ /([0-9]+) VMs deployed/;
	$response = HTTP::Tiny->new->get('https://openbsd.amsterdam/servers.html');
	my $total_hosts = () = $response->{'content'} =~ /(\>Server )/g;

	for my $vm_name (sort keys %vms) {
		my $_date = $vms{$vm_name}{'date'};
		my $_payment = $vms{$vm_name}{'payment'};
		my $_subscription = $vms{$vm_name}{'subscription'} || "no";
		my $_donated = $vms{$vm_name}{'donated'};
		my $_name = $vms{$vm_name}{'name'};
		my $_email = $vms{$vm_name}{'email'};
		my $_hostname = $vms{$vm_name}{'hostname'};
		my $_username = $vms{$vm_name}{'username'};

		(my $_firstname, my $_lastname) = split(/ /, $_name, 2);
		(my $_year, my $_month, my $_day) = split(/\//, $_date, 3);
		my $ip4address = qx(grep -A2 $vm_name $_etc/dhcpd.conf | awk '/fixed-address/{print \$2}' | tr -d ';\n');
		my $ip6address = qx(grep -A3 $vm_name $_etc/dhcpd.conf | awk '/fixed-address-ipv6/{print \$2}' | tr -d ';\n');
		(my $ip6gw = $ip6address) =~ s/::.*/::1/;

		open(my $fh, '<', $template);
		open my $fh_email, "|-", "/usr/sbin/sendmail -t";
		printf $fh_email "To: %s\n", $_email;
		while (my $row = <$fh>) {
			chomp $row;
			$row =~ s/NAME/$_firstname/g;
			$row =~ s/IPV4$/$ip4address/g;
			$row =~ s/IPV4NETMASK$/$_ip4netmask/g;
			$row =~ s/IPV4GW$/$_ip4gw/g;
			$row =~ s/IPV6$/$ip6address/g;
			$row =~ s/IPV6GW$/$ip6gw/g;
			$row =~ s/VMID/$vm_name/g;
			$row =~ s/SERVER/$_server/g;
			$row =~ s/HOSTNAME/$_hostname/g;
			$row =~ s/USERNAME/$_username/g;

			$row =~ s/YEAR/$year/g;
			$row =~ s/TOTAL_DONATED/$total_donated/g;
			$row =~ s/TOTAL_VMS/$total_vms/g;
			$row =~ s/TOTAL_HOSTS/$total_hosts/g;
			$row =~ s/PAYMENT/$_payment/g;

			if ($row =~ /TIME\((.*)\)/) {
				my @TIMES = split(/,/, $1);
				$row =~ s/TIME\(.*\)/$TIMES[$evenodd]/g;
			}
			print $fh_email "$row\n";
		}
		close $fh_email;
		print "$function: $_date, $_payment, $_name, $_email, $_hostname, $_server ($vm_name), $ip4address\n";
	}
}

# check if _deploy.conf exists
my $dev = $ENV{'HOME'} . "/openbsd.amsterdam/deploy.pl";
my $prod = $ENV{'HOME'};
my $dir;
my $debug;
my %conf;
my %vms;
if (-d "$dev") {
	$dir = $dev;
	$debug = 1;
	%conf = get_variables('conf',  "$dir/_deploy.conf");
} elsif (-d "$prod") {
	$dir = $prod;
	%conf = get_variables('conf',  "$dir/_deploy.conf");
} else {
	printf "Unable to find config file\n";
	exit 1;
}

# parse all vm*.txt files in the VMS directory
my @files = glob "$conf{'conf'}{'VMS'}/*.txt";
%vms = get_variables('vms', @files);

if ($function =~ /notify/) {
	mailout(\%conf, \%vms);
} elsif ($function =~ /(msg|deployed)/ and $function_variable !~ /empty/) {
	my %slice = %vms{$function_variable};
	mailout(\%conf, \%slice);
} elsif ($function =~ /(renewal|subscription|deprovision)/) {
	my $year = strftime("%Y", localtime);
	my $month = strftime("%m", localtime);
	for my $vm_name (sort keys %vms) {
		if ($vms{$vm_name}{'donated'} =~ /(done|expire|sponsor|renewal)/) { delete $vms{$vm_name}; next; }
		if ($vms{$vm_name}{'date'} =~ /$year\//) { delete $vms{$vm_name}; next; }
		if ($vms{$vm_name}{'date'} !~ /\/$month\//) { delete $vms{$vm_name}; next; }
		if ($function =~ /(renewal|deprovision)/) {
			if (defined $vms{$vm_name}{'subscription'} and $vms{$vm_name}{'subscription'} =~ /yes/) { delete $vms{$vm_name}; next; }
		}
		if ($function =~ /subscription/) {
			if (!defined $vms{$vm_name}{'subscription'} or $vms{$vm_name}{'subscription'} eq "" or $vms{$vm_name}{'subscription'} =~ /no/) { delete $vms{$vm_name}; next; }
		}
	}
	mailout(\%conf, \%vms);
} elsif ($function =~ /stopped/) {
	my @stopped_vms = qx(vmctl show | grep stopped | awk '{print \$9}');
	for my $vm_name (sort keys %vms) {
		if (!grep(/$vm_name/, @stopped_vms)) { delete $vms{$vm_name}; next; }
	}
	mailout(\%conf, \%vms);
} else {
	print "Specify function: deployed <vmid>, stopped, renewal, notify, deprovision, msg <vmid>\n";
}