summaryrefslogtreecommitdiffstats
path: root/bin/drakguard
blob: 05078a3761aab49faaed55b1f54833a429ddf6ac (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/usr/bin/perl

use lib qw(/usr/lib/libDrakX);
# i18n: IMPORTANT: to get correct namespace (drakguard instead of libDrakX)
BEGIN { unshift @::textdomains, 'drakguard' }
use strict;
use diagnostics;
use common;
use standalone;
use mygtk2;
use ugtk2 qw(:create :helpers :wrappers);
use Gtk2::SimpleList;
use interactive;

my $toolname = 'drakguard';
my $title = N("Parental Control");
my $icon = "IC-control-52";

$ugtk2::wm_icon = $icon;
my $w = ugtk2->new($title);
#- so that transient_for is defined, for wait messages and popups to be centered
$::main_window = $w->{real_window};
my $in = interactive->vnew('su');

my $allusers_list = Gtk2::SimpleList->new(N("All users") => 'text');
$allusers_list->get_selection->set_mode('multiple');
@{$allusers_list->{data}} = sort(list_users());

my $users_list = Gtk2::SimpleList->new(N("Allowed users") => 'text');
$users_list->get_selection->set_mode('multiple');

my $whitelist = Gtk2::SimpleList->new(N("Allowed addresses") => 'text');
$whitelist->get_selection->set_mode('multiple');
my $blacklist = Gtk2::SimpleList->new(N("Forbidden addresses") => 'text');
$blacklist->get_selection->set_mode('multiple');

my $whitelist = Gtk2::SimpleList->new(N("Allowed addresses") => 'text');
$whitelist->get_selection->set_mode('multiple');

my ($enable, $level, $time_control, $allow_time_change);
$level ||= "Normal";

sub update_time_change {
    gtkval_modify(\$allow_time_change, $enable && $time_control);
}

$w->{ok_clicked} = \&save;
$w->{cancel_clicked} = \&quit_gui;

gtkadd($w->{window},
       gtknew('VBox', spacing => 5, children => [
           $::isEmbedded ? () : (0, Gtk2::Banner->new($icon, $title)),
           1, gtknew('Notebook', children => [
               gtknew('Label', text => N("Configuration")),
               gtknew('VBox', spacing => 5, border_width => 5, children => [
                   1, gtknew('WrappedLabel', text => N("This tool allows to configure parental control. It can block access to web sites and restrict connection during a specified timeframe.")),
                   1, gtknew('Label'),
                   0, gtknew('Title2', label => N("Main options")),
                   0, gtknew('CheckButton', text => N("Enable parental control"),
                             active_ref => \$enable, toggled => \&update_time_change),
                   0, gtknew('HBox', children_tight => [
                       gtknew('Label_Left', text_markup => N("Control level"),
                                 alignment => [ 0, 0.5 ]),
                       gtknew('ComboBox',
                                 list => [ N_("Low"), N_("Normal"), N_("High") ],
                                 text_ref => \$level,
                                 sensitive_ref => \$enable,
                                 format => \&translate),
                   ]),
                   1, gtknew('Label'),
                   0, gtknew('Title2', label => N("User access")),
                   0, gtknew('HBox', spacing => 5, children_tight => [
                       $allusers_list,
                       gtknew('VBox', spacing => 5, children_tight => [
                           gtknew('Button', text => N("Add")),
                           gtknew('Button', text => N("Remove")),
                       ]),
                       $users_list,
                   ]),
                   1, gtknew('Label'),
                   0, gtknew('Title2', label => N("Time control")),
                   0, gtknew('CheckButton', text => N("Allow connections only between these times:"),
                             active_ref => \$time_control, sensitive_ref => \$enable,
                             toggled => \&update_time_change),
                   0, gtknew('HBox', spacing => 20, children_tight => [
                       gtknew('Label', text => N("Start:")),
                       gtknew('HBox', spacing => 2, children_tight => [
                           gtknew('SpinButton', lower => 0, upper => 24, step_increment => 1, value => 18,
                                  sensitive_ref => \$allow_time_change),
                           gtknew('Label', text => ':'),
                           gtknew('SpinButton', lower => 0, upper => 60, step_increment => 1,
                                  sensitive_ref => \$allow_time_change),
                       ]),
                       gtknew('Label'),
                       gtknew('Label', text => N("End:")),
                       gtknew('HBox', spacing => 2, children_tight => [
                           gtknew('SpinButton', lower => 0, upper => 24, step_increment => 1, value => 21,
                                  sensitive_ref => \$allow_time_change),
                           gtknew('Label', text => ':'),
                           gtknew('SpinButton', lower => 0, upper => 60, step_increment => 1,
                                  sensitive_ref => \$allow_time_change),
                       ]),
                   ]),
               ]),
               gtknew('Label', text => N("Blacklist")),
               gtknew('VBox', spacing => 5, children => [
                   1, gtknew('ScrolledWindow', width => 500, height => 300, child => $blacklist),
                   0, gtknew('HButtonBox', border_width => 5, layout => 'edge', children_loose => [
                       gtknew('Button', text => N("Remove from blacklist"), clicked => sub { unblacklist(get_selected_blacklist()) }),
                       gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit })
                   ]),
               ]),
               gtknew('Label', text => N("Whitelist")),
               gtknew('VBox', spacing => 5, children => [
                   1, gtknew('ScrolledWindow', width => 500, height => 300, child => $whitelist),
                   0, gtknew('HButtonBox', border_width => 5, layout => 'edge', children_loose => [
                       gtknew('Button', text => N("Remove from whitelist"), clicked => sub { unwhitelist(get_selected_whitelist()) }),
                       gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit })
                   ]),
               ]),
           ]),
           0, $w->create_okcancel(
               undef, undef, undef,
               [ N("Help"), sub { run_program::raw({ detach => 1 }, 'drakhelp', '--id', $toolname) } ]),
       ]),
);

$w->show;
Gtk2->main;

ugtk2::exit(0);

sub list_remove_addr {
    my ($list, @addr) = @_;
    #- workaround buggy Gtk2::SimpleList array abstraction, it destroys references
    @$list = map { member($_->[0], @addr) ? () : [ @$_ ] } @$list;
}

sub get_selected_blacklist() {
    uniq(map { $blacklist->{data}[$_][0] } $blacklist->get_selected_indices);
}

sub blacklist {
    my @addr = @_;
}

sub unblacklist {
    my @addr = @_;
    list_remove_addr($blacklist->{data}, @addr);
}

sub get_selected_whitelist() {
    uniq(map { $whitelist->{data}[$_][0] } $whitelist->get_selected_indices);
}

sub whitelist {
    my @addr = @_;
}

sub unwhitelist {
    my @addr = @_;
    list_remove_addr($whitelist->{data}, @addr);
}

sub quit_gui() { Gtk2->main_quit }

sub save {

}