aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/CronFns.pm
blob: f494ed0229b1e101235c5e86ac9e2fd40e92c025 (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
#!/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;