diff options
author | matthew <matthew> | 2009-07-10 15:17:28 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-07-10 15:17:28 +0000 |
commit | 6ce6b1bf890f03f5ea3cd69c298a4d15d714d739 (patch) | |
tree | c4c3b8d62c9c822a9a53a1441efb79abe06d5faf /perllib/CronFns.pm | |
parent | d8965858c21a47753ba1ba9292f00d24df22a650 (diff) |
Store site lang for reports, updates, alerts, so that future emails on them
are in that language.
Diffstat (limited to 'perllib/CronFns.pm')
-rwxr-xr-x | perllib/CronFns.pm | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/perllib/CronFns.pm b/perllib/CronFns.pm new file mode 100755 index 000000000..f494ed022 --- /dev/null +++ b/perllib/CronFns.pm @@ -0,0 +1,51 @@ +#!/usr/bin/perl -w + +# CronFns.pm: +# Shared functions for cron-run scripts +# +# Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved. +# Email: matthew@mysociety.org. WWW: http://www.mysociety.org +# +# $Id: CronFns.pm,v 1.1 2009-07-10 15:17:29 matthew Exp $ + +package CronFns; + +use strict; +require 5.8.0; + +# Horrible boilerplate to set up appropriate library paths. +use FindBin; +use lib "$FindBin::Bin/../perllib"; +use lib "$FindBin::Bin/../../perllib"; + +use mySociety::Locale; + +sub options { + die "Either no arguments, --nomail or --verbose" if (@ARGV>1); + my $nomail = 0; + my $verbose = 0; + $nomail = 1 if (@ARGV==1 && $ARGV[0] eq '--nomail'); + $verbose = 1 if (@ARGV==1 && $ARGV[0] eq '--verbose'); + $verbose = 1 if $nomail; + return ($verbose, $nomail); +} + +sub site { + my $base_url = shift; + my $site = 'fixmystreet'; + $site = 'emptyhomes' if $base_url =~ 'emptyhomes'; + return $site; +} + +sub language { + my $site = shift; + if ($site eq 'emptyhomes') { + mySociety::Locale::negotiate_language('en-gb,English,en_GB|cy,Cymraeg,cy_GB'); + mySociety::Locale::gettext_domain('FixMyStreet-EmptyHomes', 1); + } else { + mySociety::Locale::negotiate_language('en-gb,English,en_GB|nb,Norwegian,nb_NO'); # XXX Testing + mySociety::Locale::gettext_domain('FixMyStreet', 1); + } +} + +1; |