summaryrefslogtreecommitdiffstats
path: root/mdkonline.gtk
diff options
context:
space:
mode:
authorDaouda Lo <daouda@mandriva.com>2004-11-04 19:00:11 +0000
committerDaouda Lo <daouda@mandriva.com>2004-11-04 19:00:11 +0000
commit206eb7008f39d733222a1a89703ca64c0f2b0bf7 (patch)
treeed708558a990fc5ac483a24d725bd315cafe8077 /mdkonline.gtk
parent7ae1fd8e63cf72813b9013964617d49cc5f58201 (diff)
downloadmgaonline-206eb7008f39d733222a1a89703ca64c0f2b0bf7.tar
mgaonline-206eb7008f39d733222a1a89703ca64c0f2b0bf7.tar.gz
mgaonline-206eb7008f39d733222a1a89703ca64c0f2b0bf7.tar.bz2
mgaonline-206eb7008f39d733222a1a89703ca64c0f2b0bf7.tar.xz
mgaonline-206eb7008f39d733222a1a89703ca64c0f2b0bf7.zip
merge changes from MNF, MDK-10-update
Diffstat (limited to 'mdkonline.gtk')
-rwxr-xr-xmdkonline.gtk304
1 files changed, 304 insertions, 0 deletions
diff --git a/mdkonline.gtk b/mdkonline.gtk
new file mode 100755
index 00000000..f4c18227
--- /dev/null
+++ b/mdkonline.gtk
@@ -0,0 +1,304 @@
+#!/usr/bin/perl
+################################################################################
+# MandrakeOnline #
+# #
+# Copyright (C) 2001-2002-2003-2004 Mandrakesoft #
+# #
+# Daouda Lo <daouda@mandrakesoft.com> #
+#
+# This program is free software; you can redistribute it and/or modify #
+# it under the terms of the GNU General Public License Version 2 as #
+# published by the Free Software Foundation. #
+# #
+# This program 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 this program; if not, write to the Free Software #
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
+################################################################################
+
+use strict;
+use lib qw(/usr/lib/libDrakX /usr/lib/libDrakX/drakfirsttime);
+use common;
+use standalone;
+use lang;
+
+BEGIN { unshift @::textdomains, 'mdkonline', 'drakfirstboot' }
+
+$::no_ugtk_init = 1;
+if (check_for_xserver()) {
+ $::no_ugtk_init = 0;
+ eval { require ugtk2 };
+ die "Can't load ugtk2...\n" if $@;
+ ugtk2->import(qw(:all));
+} else {
+ exec("/usr/sbin/mdkonline_tui");
+}
+
+use mdkonline;
+use comdialog;
+use Digest::MD5 qw(md5 md5_hex md5_base64);
+
+my $confdir = '/root/.MdkOnline';
+my $conffile = "$confdir/mdkupdate";
+
+add_icon_path("/usr/share/drakfirsttime/pixmaps/");
+
+require_root_capability();
+my $create_account = 0;
+
+my ($o, $p);
+
+#for compatibilities
+mkdir_p($confdir) if !-d $confdir;
+mdkonline::mv_files("/root/.mdkupdate", $conffile);
+
+$o->{mw} = ugtk2->new("Mandrakeonline" . " " . $::VERSION, center => 1);
+gtkset_size_request($o->{mw}{window}, 600, 500);
+$o->{mw}{rwindow}->set_position('center');
+$o->{mw}{window}->signal_connect("delete_event", sub { Gtk2->main_quit });
+$o->{nb} = Gtk2::Notebook->new;
+$o->{nb}->set_show_tabs(0); $o->{nb}->set_show_border(0);
+$o->{bottomHbox} = Gtk2::HBox->new;
+my %stage = (
+ 0 => sub { if ($o->{account_cb}->get_active) { subs_online() } else { $o->{nb}->next_page } },
+ 1 => sub { $o->{nb}->next_page; set_entry_with_conf() },
+ 2 => sub { check_passwd() },
+ 3 => sub { log::l("[mdkonline] Sending configuration to remote server"); send_conf_online() },
+ 4 => sub { log::l("[mdkonline] Writing local configuration dir"); set_conf() }
+ );
+$o->{actions} = {
+ Next => sub {
+ $p = $o->{nb}->get_current_page;
+ $stage{$p}->();
+ $p <= 0 and $o->{Prev}->set_sensitive(1);
+ $p == 4 and main_quit()
+ },
+ SkipWiz => sub {
+ main_quit()
+ },
+ Prev => sub {
+ $p = $o->{nb}->get_current_page;
+ $o->{nb}->prev_page;
+ $p <= 1 and init(0)
+ }
+ };
+foreach my $l ([ 'Next', N("Next"), 1 ], [ 'SkipWiz', N("Cancel") ], [ 'Prev', N("Previous"), 1 ]) {
+ $o->{$l->[0]} = Gtk2::Button->new($l->[1]);
+ $l->[2] ? $o->{bottomHbox}->pack_end($o->{$l->[0]}, 0, 0, 1) : $o->{bottomHbox}->pack_start($o->{$l->[0]}, 0, 0, 1);
+ $o->{$l->[0]}->signal_connect(clicked => sub { $o->{actions}{$l->[0]}->() });
+}
+gtkadd($o->{mw}{window},
+ gtkpack_(Gtk2::VBox->new(0, 2),
+ 1, $o->{nb},
+ 0, Gtk2::HSeparator->new,
+ 0, gtkpack($o->{bottomHbox}),
+ ),
+ );
+gtkappend_page($o->{nb},
+ gtkpack_(Gtk2::VBox->new(0, 3),
+ 0, set_darea(N("Welcome to Mandrakeonline"), 'welcome'),
+ 0, gtktext_insert(Gtk2::TextView->new, N("This assistant will help you to upload your configuration\n(packages, hardware configuration) to a centralized database in\norder to keep you informed about security updates and useful upgrades.\n")),
+ 1, gtkadd(gtkset_border_width(Gtk2::Frame->new(N("Create a Mandrakeonline Account")), 5),
+ gtkpack_(gtkset_border_width(Gtk2::VBox->new(0, 5), 5),
+ 0, gtksignal_connect(gtkset_active($o->{account_cb} = Gtk2::CheckButton->new(N("I don't have a Mandrakeonline account and I want to subscribe")), $create_account), clicked => sub { $create_account = !$create_account; $o->{vbox_account}->set_sensitive($create_account) }),
+ 1, gtkpack_($o->{vbox_account} = Gtk2::VBox->new(0, 3),
+ 1, create_packtable({ homogeneous => 1, col_spacings => 10, row_spacings => 10, mcc => 1 },
+ [],
+ [ N("Login:"), $o->{clogin} = Gtk2::Entry->new ],
+ [ N("Password:"), $o->{cpasswd} = entry_hidepass() ],
+ [ N("Confirm Password:"), $o->{cconfirm} = entry_hidepass() ],
+ [ N("Mail contact:"), $o->{cmail} = Gtk2::Entry->new ]
+ ))
+ )
+ ))
+ );
+gtkappend_page($o->{nb},
+ gtkpack_(Gtk2::VBox->new(0, 3),
+ 0, set_darea(N("Mandrakelinux Privacy Policy"), 'privacy'),
+ 1, create_scrolled_window(gtktext_insert(Gtk2::TextView->new, privacy_text()))
+ )
+ );
+gtkappend_page($o->{nb},
+ gtkpack_(Gtk2::VBox->new(0, 3),
+ 0, set_darea("Mandrakeonline" . " " . N("Authentification"), 'authentification'),
+ 0, Gtk2::WrappedLabel->new("\n\n" . N("Enter your Mandrakeonline login, password and machine name:")),
+ 1, create_packtable({ homogeneous => 1, col_spacings => 10, row_spacings => 10, mcc => 1 },
+ [],
+ [ N("Login:"), $o->{login} = Gtk2::Entry->new, "" ],
+ [ N("Password:"), $o->{passwd} = entry_hidepass(), "" ],
+ [ N("Machine name:"), $o->{machine} = Gtk2::Entry->new ],
+ ))
+ );
+gtkappend_page($o->{nb},
+ gtkpack_(Gtk2::VBox->new(0, 3),
+ 0, set_darea(N("Send Configuration"), 'sendingconf'),
+ 1, gtktext_insert(Gtk2::TextView->new, N("In order to benefit from Mandrakeonline services,\nwe are about to upload your configuration.\n\nThe Wizard will now send the following information to Mandrakesoft:\n1) the list of packages you have installed on your system,\n2) your hardware configuration.\n\nIf you feel uncomfortable by that idea, or do not want to benefit from this service,\nplease press 'Cancel'. By pressing 'Next', you allow us to keep you informed\nabout security updates and useful upgrades via personalized email alerts.\nFurthermore, you benefit from discounted paid support services on\nwww.mandrakeexpert.com."))
+ )
+ );
+gtkappend_page($o->{nb},
+ gtkpack_(Gtk2::VBox->new(0, 3),
+ 0, set_darea(N("Finish"), 'welcome'),
+ 1, Gtk2::WrappedLabel->new("\n\n" . N("Your upload was successful!") . "\n\n" . N("From now you will receive on security and updates \nannouncements thanks to Mandrakeonline.") . "\n\n" . N("Mandrakeonline offers you the ability to automate the updates.\nA program will run regulary in your system waiting for new updates\n")),
+ 0, gtkadd(Gtk2::Frame->new(N("automated Upgrades")),
+ gtkpack_(Gtk2::VBox->new(0, 3),
+ 0, gtkpack_($o->{vbox_auto} = Gtk2::VBox->new(0, 3),
+ 0, create_packtable({ homogeneous => 1, col_spacings => 5, row_spacings => 5 },
+ [ N("Country:"), $o->{country} = Gtk2::OptionMenu->new ],
+ [" ", " "],
+ ))
+ ))));
+
+init(1);
+
+# Filling country list:
+my %countries = map { lang::c2name($_) => $_ } lang::list_countries();
+$o->{country}->set_popdown_strings(sort(keys %countries));
+$o->{country}->set_text(lang::c2name(lang::read('', $>)->{country}));
+
+$o->{mw}{rwindow}->show_all;
+
+Gtk2->main;
+ugtk2->exit(0);
+
+sub subs_online() {
+ my $explink = 'http://www.mandrakeexpert.com/online3_CreateAccount.php';
+ my $login = $o->{clogin}->get_text; my $despwd = $o->{cpasswd}->get_text; my $despwdcfm = $o->{cconfirm}->get_text;
+ my $cmail = $o->{cmail}->get_text;
+ $::error = 0;
+ check_errors($login, $despwd, $despwdcfm, $o->{cmail});
+ # print "Error = $::error";
+ if (!$::error) {
+ my $url = $explink . '?desuserid=' . $login . '&despwd=' . $despwd . '&user_email=' . $cmail;
+ #print "LOGIN = $login\nPASSWD = $despwd\nMAIL= $cmail\nURL=$url\n";
+ my $ret = mdkonline::subscribe_online($url);
+ if ($ret eq 'OK') { $o->{nb}->next_page } else { raiseError($o->{mw}{window}, N("Error"), $ret) };
+ }
+}
+sub check_errors {
+ my ($login, $despwd, $despwdcfm, $cmail) = @_;
+ $login or raiseError($o->{mw}{window}, N("Error"), N("Please provide a login"));
+ if (!$::error && $despwd ne $despwdcfm) {
+ raiseError($o->{mw}{window}, N("Error"), N("The passwords do not match\n Please try again\n"))
+ } elsif (!$::error && check_valid_email($cmail) != 1) {
+ raiseError($o->{mw}{window}, N("Error"), N("Not a valid mail address!\n"))
+ }
+}
+sub set_entry_with_conf() {
+ my $wideconf = '/etc/sysconfig/mdkonline';
+ my %t = getVarsFromSh($wideconf);
+ my $host = chomp_(`hostname`);
+ $t{MACHINE} ||= $1 if $host =~ /(\w+)(.*)/;
+ foreach (qw(login machine)) { $o->{$_}->get_text or $o->{$_}->set_text($t{uc($_)}) }
+}
+sub send_conf_online() {
+ my ($login, $passwd, $boxname) = get_names();
+ my $w = wait_msg(N("Reading configuration\n"));
+ my $link = 'https://www.mandrakeonline.net/wizard.php';
+ mdkonline::report_config("$confdir/$login.$passwd.$boxname.online.log");
+ my $tag = { submit => "upload_wizard", wizard => ["$confdir/$login.$passwd.$boxname.online.log.bz2.uue"] };
+ remove_wait_msg($w);
+ my $ww = wait_msg(N("Sending configuration..."));
+ my ($res, $key) = mdkonline::send_config($link, $tag);
+ my $pass = $o->{passwd}->get_text;
+ mdkonline::hw_upload($login, $pass, $boxname);
+ remove_wait_msg($ww);
+ if ($res eq 'TRUE' && $key) {
+ $o->{currentkey} = $key;
+ $o->{nb}->next_page; $o->{Next}->set_label(N("Finish")); $o->{Prev}->hide
+ } else {
+ raiseError($o->{mw}{window}, N("Connection problem"), N("Problem occurs when uploading files, please try again"));
+ }
+}
+sub set_conf() {
+ my ($login, $passwd, $boxname) = get_names();
+ my $country = lc($countries{$o->{country}->entry->get_text});
+ my $key = $o->{currentkey};
+ mdkonline::automated_upgrades($conffile, $login, $passwd, $boxname, $key, $country, 'TRUE');
+ mdkonline::write_wide_conf($login, $boxname, $country);
+}
+sub init {
+ my $i = shift;
+ $o->{Prev}->set_sensitive(0);
+ $o->{Next}->grab_focus;
+ $i and first_settings();
+}
+sub first_settings() {
+ $o->{vbox_account}->set_sensitive(0);
+}
+sub final() {
+ $o->{Prev}->hide; $o->{SkipWiz}->hide;
+ $o->{Next}->set_label(N("Finish"))
+}
+sub get_names() {
+ my ($login, $passwd, $machine);
+ $login = $o->{login}->get_text;
+ $passwd = md5_hex($o->{passwd}->get_text);
+ $machine = $o->{machine}->get_text;
+ ($login, $passwd, $machine)
+}
+sub main_quit() {
+ # remove local files
+ my ($login, $passwd, $boxname) = get_names();
+ if ($login && $passwd && $boxname) {
+ -f "$confdir/$login.$passwd.$boxname.online.log.bz2.uue" and unlink("$confdir/$login.$passwd.$boxname.online.log.bz2.uue");
+ -f "$confdir/$login.$passwd.$boxname.online.log.bz2" and unlink("$confdir/$login.$passwd.$boxname.online.log.bz2");
+ }
+ # quit
+ print N("Quitting Wizard\n");
+ Gtk2->main_quit;
+}
+sub is_alphanum {
+ my ($x) = @_;
+ my $_is_num = sub { $x =~ /^[[:alnum:]]+$/ ? 1 : 0 }
+}
+sub check_passwd() {
+ my $link = 'http://www.mandrakeexpert.com/firsttimewizard/validusercheck.php';
+ my $result;
+ my $login = $o->{login}->get_text; my $passwd = md5_hex($o->{passwd}->get_text); my $boxname = $o->{machine}->get_text;
+ $boxname = is_alphanum($boxname);
+ if ($login && $passwd && $boxname && $login !~ /\s+/ && $passwd !~ /\s+/) {
+ my $w = wait_msg("Connecting ...\n");
+ $link .= '?u=' . $login . '&p=' . $passwd;
+ my $response = mdkonline::get_from_URL($link, "MdkOnlineAgent/");
+ remove_wait_msg($w);
+ # Check the outcome of the response
+ if ($response->is_success) {
+ $result = $response->content =~ /TRUE/ ? 0 : -1;
+ } else {
+ # pb with the connection ? stay on page 2
+ raiseError($o->{mw}{window}, N("Connection problem"), N("Mandrakeonline could not be contacted, please try again at a later time"));
+ return;
+ }
+ } else {
+ $result = -1; # not needed, but this way it's clear
+ }
+
+ # if correct, go to page 4
+ if (! $result) {
+ $o->{nb}->next_page;
+ } else {
+ # if incorrect, clear passwd and stay on page 2
+ raiseError($o->{mw}{window}, N("Wrong password"), N("Your login or password was wrong.\n Either you'll have to type it again, or you'll need to create an account on Mandrakeonline.\n In the latter case, go back to the first step to connect to Mandrakeonline.\n Be aware that you must also provide a Machine name \n (only alphabetical characters are admitted)"));
+ $o->{passwd}->set_text("");
+ }
+}
+sub wait_msg {
+ my ($msg, %options) = @_;
+ my $mainw = ugtk2->new('mdkonline', grab => 1, if_(exists $options{transient}, transient => $options{transient}));
+ $mainw->{rwindow}->set_position($options{transient} ? 'center_on_parent' : 'center_always') if !$::isEmbedded;
+ my $label = ref($msg) =~ /^Gtk/ ? $msg : Gtk2::Label->new($msg);
+ gtkadd($mainw->{window}, gtkpack__(gtkadd(Gtk2::VBox->new(0, 5), $label, if_(exists $options{widgets}, @{$options{widgets}}))));
+ $label->signal_connect(expose_event => sub { $mainw->{displayed} = 1; 0 });
+ $mainw->sync until $mainw->{displayed};
+ gtkset_mousecursor_wait($mainw->{rwindow}->window);
+ $mainw->flush;
+ $mainw;
+}
+sub remove_wait_msg { $_[0]->destroy }
+
+
+