Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / rt / sbin / rt-email-dashboards.in
1 #!@PERL@
2 # BEGIN BPS TAGGED BLOCK {{{
3 #
4 # COPYRIGHT:
5 #
6 # This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
7 #                                          <sales@bestpractical.com>
8 #
9 # (Except where explicitly superseded by other copyright notices)
10 #
11 #
12 # LICENSE:
13 #
14 # This work is made available to you under the terms of Version 2 of
15 # the GNU General Public License. A copy of that license should have
16 # been provided with this software, but in any event can be snarfed
17 # from www.gnu.org.
18 #
19 # This work is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 # General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 # 02110-1301 or visit their web page on the internet at
28 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
29 #
30 #
31 # CONTRIBUTION SUBMISSION POLICY:
32 #
33 # (The following paragraph is not intended to limit the rights granted
34 # to you to modify and distribute this software under the terms of
35 # the GNU General Public License and is only of importance to you if
36 # you choose to contribute your changes and enhancements to the
37 # community by submitting them to Best Practical Solutions, LLC.)
38 #
39 # By intentionally submitting any modifications, corrections or
40 # derivatives to this work, or any other work intended for use with
41 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
42 # you are the copyright holder for those contributions and you grant
43 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
44 # royalty-free, perpetual, license to use, copy, create derivative
45 # works based on those contributions, and sublicense and distribute
46 # those contributions and any derivatives thereof.
47 #
48 # END BPS TAGGED BLOCK }}}
49 use strict;
50 use warnings;
51
52 # fix lib paths, some may be relative
53 BEGIN { # BEGIN RT CMD BOILERPLATE
54     require File::Spec;
55     require Cwd;
56     my @libs = ("@RT_LIB_PATH@", "@LOCAL_LIB_PATH@");
57     my $bin_path;
58
59     for my $lib (@libs) {
60         unless ( File::Spec->file_name_is_absolute($lib) ) {
61             $bin_path ||= ( File::Spec->splitpath(Cwd::abs_path(__FILE__)) )[1];
62             $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
63         }
64         unshift @INC, $lib;
65     }
66
67 }
68
69 # Read in the options
70 my %opts;
71 use Getopt::Long;
72 GetOptions( \%opts,
73     "help|h", "dryrun", "time=i", "epoch=i", "all"
74 );
75
76 if ($opts{'help'}) {
77     require Pod::Usage;
78     print Pod::Usage::pod2usage(-verbose => 2);
79     exit;
80 }
81
82 require RT;
83 require RT::Interface::CLI;
84 RT::Interface::CLI->import(qw{ loc });
85
86 # Load the config file
87 RT::LoadConfig();
88
89 # Connect to the database and get RT::SystemUser and RT::Nobody loaded
90 RT::Init();
91
92 require RT::Dashboard::Mailer;
93 RT::Dashboard::Mailer->MailDashboards(
94     All    => $opts{all},
95     DryRun => $opts{dryrun},
96     Time   => ($opts{time} || $opts{epoch} || time), # epoch is the old-style
97     Opts   => \%opts,
98 );
99
100 =head1 NAME
101
102 rt-email-dashboards - Send email dashboards
103
104 =head1 SYNOPSIS
105
106     rt-email-dashboards [options]
107
108 =head1 DESCRIPTION
109
110 This tool will send users email based on how they have subscribed to
111 dashboards. A dashboard is a set of saved searches, the subscription controls
112 how often that dashboard is sent and how it's displayed.
113
114 Each subscription has an hour, and possibly day of week or day of month. These
115 are taken to be in the user's timezone if available, UTC otherwise.
116
117 =head1 SETUP
118
119 You'll need to have cron run this script every hour. Here's an example crontab
120 entry to do this.
121
122     0 * * * * @RT_SBIN_PATH_R@/rt-email-dashboards
123
124 This will run the script every hour on the hour. This may need some further
125 tweaking to be run as the correct user.
126
127 =head1 OPTIONS
128
129 This tool supports a few options. Most are for debugging.
130
131 =over 8
132
133 =item -h
134
135 =item --help
136
137 Display this documentation
138
139 =item --dryrun
140
141 Figure out which dashboards would be sent, but don't actually generate or email
142 any of them
143
144 =item --time SECONDS
145
146 Instead of using the current time to figure out which dashboards should be
147 sent, use SECONDS (usually since midnight Jan 1st, 1970, so C<1192216018> would
148 be Oct 12 19:06:58 GMT 2007).
149
150 =item --epoch SECONDS
151
152 Back-compat for --time SECONDS.
153
154 =item --all
155
156 Ignore subscription frequency when considering each dashboard (should only be
157 used with --dryrun for testing and debugging)
158
159 =back
160
161 =cut
162