aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mpan
blob: 766604128bfd605813e6ba65983c988be9692318 (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
#!/usr/bin/perl
# vim: set et ts=4 sw=4:
#    Copyright 2012 Steven Tucker
#    Copyright 2013 - 2015 Matteo Pasotti
#    Copyright 2014 - 2015 Angelo Naselli
#
#    This file is part of manatools
#
#    ManaTools is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    ManaTools is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with ManaTools.  If not, see <http://www.gnu.org/licenses/>.

use strict;
use warnings;
use diagnostics;
use ManaTools::Privileges;
use ManaTools::SettingsReader;
use ManaTools::MainDisplay;
use yui;

my $cmdline = new yui::YCommandLine;

usage() if $cmdline->find("--help") > 0 || $cmdline->find("-h") > 0;

my $settings = getSettings();

if ($cmdline->find("--dev") > 0) {
    print "== Development mode ON\n";
}
else {
    ask_for_authentication($settings->{priv_method}) if is_root_capability_required();
}
my $mainWin = new ManaTools::MainDisplay();
while (1) {
    my $launch = $mainWin->start();

    if ($launch) {
        $mainWin->destroy();
        $launch->start();
    }
    else {
        $mainWin->destroy();
        last;
    }
    $mainWin->setupGui();
}


sub usage {
    print "\n";
    print "Usage mpan [options...]\n\n";
    print "Options:\n";
    print "\t--help | -h        print this help\n";
## anaselli: --name now is used only to add a path to /etc (e.g. --name mcc2 means /etc/mcc2)
    #          and it is overriden by --conf_dir, so it should be discussed better to understand
    #          if it is really needed any more.
    #          Window title is got from settings.conf (key title)
    print "\t--name string      specify the window title of the mana-tools panel\n";
    print "\t--conf_dir path    specify the settings.conf file directory\n";
    print "\n";
    exit(0);
}

# adpanel settings
sub getSettings {
    my ($self) = @_;

    my $confDir = "/etc/mpan";
    # yui commandline parser
    my $pos = $cmdline->find("--conf_dir");
    if ($pos > 0) {
        $confDir = $cmdline->arg($pos + 1);
    }
    else {
        $pos = $cmdline->find("--name");
        if ($pos > 0) {
            $confDir = "/etc/" . $cmdline->arg($pos+1);
        }
    }
    # configuration file name
    my $fileName = "$confDir/settings.conf";
    return new ManaTools::SettingsReader($fileName);
}

=pod

=head1 main

       main launcher

=cut

1;