/[mon-modules]/sms.alert
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /sms.alert

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.8 - (show annotations)
Tue Oct 28 17:37:05 2003 UTC (20 years, 5 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +14 -1 lines
added interval -i hh:mm-hh:mm option. You can use it to send sms messages
to different phone numbers depending on time period or to not send
messages at all :-)

1 #!/usr/bin/perl -w
2 #
3 # sms.alert - send an alert via smstools available at
4 # http://www.isis.de/~s.frings/smstools/
5 #
6 # based on qpage.alert and mail.alert by Jim Trocki, trockij@transmeta.com
7 #
8 # usage:
9 # sms.alter [flags...] -g group -s system 385abxxxxxx|name[ 12345|name...]
10 #
11 # flags which are standard:
12 #
13 # -u this is upalert
14 # -g grp group
15 # -s sys system
16 # -l time time to next alert
17 #
18 # flags specific to sms.alert: (all optional)
19 #
20 # -f send flash sms (directly to screen)
21 # -x send extended message (all output, smstools with split it in
22 # multiple smses if needed)
23 # -i hh:mm-hh:mm send sms only if it falls in this interval
24 #
25 # it users file /usr/local/etc/sms.addressbook as addressbook in format
26 #
27 # 123456 name
28 #
29 # where 123456 is phone number (with country prefix, but without +) and
30 # name is alias used like:
31 #
32 # sms.alert -f dobrica
33 #
34 # in mon.cf
35
36 my $sms_outgoing = "/var/spool/sms/outgoing";
37 my $sms_addressbook = "/usr/local/etc/sms.addressbook";
38
39 use strict;
40 my %opt;
41 use Getopt::Std;
42 getopts ("S:s:g:h:t:l:ufi:", \%opt);
43
44 # read addressbook
45 my %name2phone;
46 if (open(A, $sms_addressbook)) {
47 while(<A>) {
48 chomp;
49 next if (/^[#;]/);
50 my ($phone,$name) = split(/\s+/,$_,2);
51 $name2phone{lc($name)} = $phone;
52 }
53 }
54
55 #
56 # the first line is summary information, adequate to send to a pager
57 # or email subject line
58 #
59 #
60 # the following lines normally contain more detailed information,
61 # but this is monitor-dependent
62 #
63 my @MSG=<STDIN>;
64 my $summary = shift @MSG;
65 chomp $summary;
66
67 if ($opt{i}) {
68 if ($opt{i} =~ /(\d+):(\d+)-(\d+):(\d+)/) {
69 my $from = $1 * 60 + $2;
70 my $to = $3 * 60 + $4;
71 my ($sec,$min,$hour) = localtime(time);
72 my $t = $hour * 60 + $min;
73 exit 0 if ($t < $from || $t > $to);
74 } else {
75 die "interval time format: hh:mm-hh:mm"
76 }
77 }
78
79 $summary = $opt{S} if $opt{S};
80
81 my ($wday,$mon,$day,$tm) = split (/\s+/, localtime);
82
83 my $ALERT = $opt{u} ? "UPALERT" : "ALERT";
84
85 my $sms = "From: mon\n";
86 $sms .= "Flash: yes\n" if $opt{f};
87 $sms .= "\n$ALERT";
88 $sms .= " $opt{g}/$opt{s}" if ($opt{g} && $opt{s});
89 $sms .= " $summary ($wday $mon $day $tm)\n";
90 # add next alter time
91 $sms .= "Secs until next alert: $opt{l}\n" if $opt{l};
92 # add rest of text
93 $sms .= join("\n",@MSG) if $opt{x};
94
95 my $suffix = 0;
96
97 foreach my $to (@ARGV) {
98 if (open(SMS, "> $sms_outgoing/mon-$$-$suffix")) {
99 my $phone = $to;
100 $phone = $name2phone{lc($to)} if ($name2phone{lc($to)});
101 die "$phone is not phone number! " if ($phone !~ m/^\d+$/);
102 print SMS "To: $phone\n$sms";
103 close SMS;
104 $suffix++;
105 } else {
106 die "could not open sms file in '$sms_outgoing': $!";
107 }
108 }

  ViewVC Help
Powered by ViewVC 1.1.26