1 package SL::Controller::Admin;
 
   5 use parent qw(SL::Controller::Base);
 
   8 use List::Util qw(first);
 
  12 use SL::DB::AuthGroup;
 
  14 use SL::Helper::Flash;
 
  15 use SL::Locale::String qw(t8);
 
  16 use SL::System::InstallationLock;
 
  19 use Rose::Object::MakeMethods::Generic
 
  21   'scalar --get_set_init' => [ qw(client user group printer db_cfg is_locked
 
  22                                   all_dateformats all_numberformats all_countrycodes all_stylesheets all_menustyles all_clients all_groups all_users all_rights all_printers
 
  23                                   all_dbsources all_used_dbsources all_accounting_methods all_inventory_systems all_profit_determinations all_charts) ],
 
  26 __PACKAGE__->run_before(\&setup_layout);
 
  27 __PACKAGE__->run_before(\&setup_client, only => [ qw(list_printers new_printer edit_printer save_printer delete_printer) ]);
 
  29 sub get_auth_level { "admin" };
 
  31   my ($class, %params) = @_;
 
  32   return $params{action} eq 'login';
 
  36 # actions: login, logout
 
  42   return $self->login_form if !$::form->{do_login};
 
  43   return                   if !$self->authenticate_root;
 
  44   return                   if !$self->check_auth_db_and_tables;
 
  45   return                   if  $self->apply_dbupgrade_scripts;
 
  47   $self->redirect_to(action => 'show');
 
  52   $::auth->destroy_session;
 
  53   $self->redirect_to(action => 'login');
 
  57 # actions: creating the authentication database & tables, applying database ugprades
 
  60 sub action_apply_dbupgrade_scripts {
 
  63   return if $self->apply_dbupgrade_scripts;
 
  64   $self->redirect_to(action => 'show');
 
  67 sub action_create_auth_db {
 
  70   $::auth->create_database(superuser          => $::form->{db_superuser},
 
  71                            superuser_password => $::form->{db_superuser_password},
 
  72                            template           => $::form->{db_template});
 
  73   $self->check_auth_db_and_tables;
 
  76 sub action_create_auth_tables {
 
  79   $::auth->create_tables;
 
  80   $::auth->set_session_value('admin_password', $::lx_office_conf{authentication}->{admin_password});
 
  81   $::auth->create_or_refresh_session;
 
  83   my $group = (SL::DB::Manager::AuthGroup->get_all(limit => 1))[0];
 
  85     SL::DB::AuthGroup->new(
 
  86       name        => t8('Full Access'),
 
  87       description => t8('Full access to all functions'),
 
  88       rights      => [ map { SL::DB::AuthGroupRight->new(right => $_, granted => 1) } SL::Auth::all_rights() ],
 
  92   if (!$self->apply_dbupgrade_scripts) {
 
 106     title => "kivitendo " . t8('Administration'),
 
 110 sub action_new_user {
 
 113   $self->user(SL::DB::AuthUser->new(
 
 117       numberformat => "1.000,00",
 
 118       dateformat   => "dd.mm.yy",
 
 119       stylesheet   => "kivitendo.css",
 
 124   $self->edit_user_form(title => t8('Create a new user'));
 
 127 sub action_edit_user {
 
 129   $self->edit_user_form(title => t8('Edit User'));
 
 132 sub action_save_newuser {
 
 134   $::form->{user}{clients} = 0;
 
 135   $self->action_save_user();
 
 138 sub action_save_user {
 
 140   my $params = delete($::form->{user})          || { };
 
 141   my $props  = delete($params->{config_values}) || { };
 
 142   my $is_new = !$params->{id};
 
 144   # Assign empty arrays if the browser doesn't send those controls.
 
 145   $params->{clients} ||= [];
 
 146   $params->{groups}  ||= [];
 
 148   $self->user($is_new ? SL::DB::AuthUser->new : SL::DB::AuthUser->new(id => $params->{id})->load)
 
 149     ->assign_attributes(%{ $params })
 
 150     ->config_values({ %{ $self->user->config_values }, %{ $props } });
 
 152   my @errors = $self->user->validate;
 
 155     flash('error', @errors);
 
 156     $self->edit_user_form(title => $is_new ? t8('Create a new user') : t8('Edit User'));
 
 162   if ($::auth->can_change_password && $::form->{new_password}) {
 
 163     $::auth->change_password($self->user->login, $::form->{new_password});
 
 166   flash_later('info', $is_new ? t8('The user has been created.') : t8('The user has been saved.'));
 
 167   $self->redirect_to(action => 'show');
 
 170 sub action_delete_user {
 
 173   my @clients = @{ $self->user->clients || [] };
 
 175   # backup user metadata (email, name, etc)
 
 176   my $user_config_values_ref = $self->user->config_values();
 
 177   my $login =$self->user->login;
 
 179   if (!$self->user->delete) {
 
 180     flash('error', t8('The user could not be deleted.'));
 
 181     $self->edit_user_form(title => t8('Edit User'));
 
 185   # Flag corresponding entries in 'employee' as deleted.
 
 186   # and restore the most important user data in employee
 
 187   # TODO try and catch the whole transaction {user->delete; update employee} {exception}
 
 188   foreach my $client (@clients) {
 
 189     my $dbh = $client->dbconnect(AutoCommit => 1) || next;
 
 190     $dbh->do(qq|UPDATE employee SET deleted = TRUE, name = ?, deleted_email = ?,
 
 191                 deleted_tel = ?, deleted_fax = ?, deleted_signature = ? WHERE login = ?|,undef,
 
 192               $user_config_values_ref->{name}, $user_config_values_ref->{email},
 
 193               $user_config_values_ref->{tel}, $user_config_values_ref->{fax},
 
 194               $user_config_values_ref->{signature}, $self->user->login);
 
 198   flash_later('info', t8('The user has been deleted.'));
 
 199   $self->redirect_to(action => 'show');
 
 206 sub action_new_client {
 
 209   $self->client(SL::DB::AuthClient->new(
 
 210     dbhost   => $::auth->{DB_config}->{host},
 
 211     dbport   => $::auth->{DB_config}->{port},
 
 212     dbuser   => $::auth->{DB_config}->{user},
 
 213     dbpasswd => $::auth->{DB_config}->{password},
 
 216   $self->edit_client_form(title => t8('Create a new client'));
 
 219 sub action_edit_client {
 
 221   $self->edit_client_form(title => t8('Edit Client'));
 
 224 sub action_save_client {
 
 226   my $params = delete($::form->{client}) || { };
 
 227   my $is_new = !$params->{id};
 
 229   # Assign empty arrays if the browser doesn't send those controls.
 
 230   $params->{groups} ||= [];
 
 231   $params->{users}  ||= [];
 
 233   $self->client($is_new ? SL::DB::AuthClient->new : SL::DB::AuthClient->new(id => $params->{id})->load)->assign_attributes(%{ $params });
 
 235   my @errors = $self->client->validate;
 
 238     flash('error', @errors);
 
 239     $self->edit_client_form(title => $is_new ? t8('Create a new client') : t8('Edit Client'));
 
 244   if ($self->client->is_default) {
 
 245     SL::DB::Manager::AuthClient->update_all(set => { is_default => 0 }, where => [ '!id' => $self->client->id ]);
 
 248   flash_later('info', $is_new ? t8('The client has been created.') : t8('The client has been saved.'));
 
 249   $self->redirect_to(action => 'show');
 
 252 sub action_delete_client {
 
 255   if (!$self->client->delete) {
 
 256     flash('error', t8('The client could not be deleted.'));
 
 257     $self->edit_client_form(title => t8('Edit Client'));
 
 261   flash_later('info', t8('The client has been deleted.'));
 
 262   $self->redirect_to(action => 'show');
 
 265 sub action_test_database_connectivity {
 
 268   my %cfg       = %{ $::form->{client} || {} };
 
 269   my $dbconnect = 'dbi:Pg:dbname=' . $cfg{dbname} . ';host=' . $cfg{dbhost} . ';port=' . $cfg{dbport};
 
 270   my $dbh       = DBI->connect($dbconnect, $cfg{dbuser}, $cfg{dbpasswd});
 
 273   my $error     = $DBI::errstr;
 
 275   $dbh->disconnect if $dbh;
 
 277   $self->render('admin/test_db_connection', { layout => 0 },
 
 278                 title => t8('Database Connection Test'),
 
 287 sub action_new_group {
 
 290   $self->group(SL::DB::AuthGroup->new);
 
 291   $self->edit_group_form(title => t8('Create a new group'));
 
 294 sub action_edit_group {
 
 296   $self->edit_group_form(title => t8('Edit User Group'));
 
 299 sub action_save_group {
 
 302   my $params = delete($::form->{group}) || { };
 
 303   my $is_new = !$params->{id};
 
 305   # Assign empty arrays if the browser doesn't send those controls.
 
 306   $params->{clients} ||= [];
 
 307   $params->{users}   ||= [];
 
 309   $self->group($is_new ? SL::DB::AuthGroup->new : SL::DB::AuthGroup->new(id => $params->{id})->load)->assign_attributes(%{ $params });
 
 311   my @errors = $self->group->validate;
 
 314     flash('error', @errors);
 
 315     $self->edit_group_form(title => $is_new ? t8('Create a new user group') : t8('Edit User Group'));
 
 321   flash_later('info', $is_new ? t8('The user group has been created.') : t8('The user group has been saved.'));
 
 322   $self->redirect_to(action => 'show');
 
 325 sub action_delete_group {
 
 328   if (!$self->group->delete) {
 
 329     flash('error', t8('The user group could not be deleted.'));
 
 330     $self->edit_group_form(title => t8('Edit User Group'));
 
 334   flash_later('info', t8('The user group has been deleted.'));
 
 335   $self->redirect_to(action => 'show');
 
 342 sub action_list_printers {
 
 344   $self->render('admin/list_printers', title => t8('Printer management'));
 
 347 sub action_new_printer {
 
 350   $self->printer(SL::DB::Printer->new);
 
 351   $self->edit_printer_form(title => t8('Create a new printer'));
 
 354 sub action_edit_printer {
 
 356   $self->edit_printer_form(title => t8('Edit Printer'));
 
 359 sub action_save_printer {
 
 361   my $params = delete($::form->{printer}) || { };
 
 362   my $is_new = !$params->{id};
 
 364   $self->printer($is_new ? SL::DB::Printer->new : SL::DB::Printer->new(id => $params->{id})->load)->assign_attributes(%{ $params });
 
 366   my @errors = $self->printer->validate;
 
 369     flash('error', @errors);
 
 370     $self->edit_printer_form(title => $is_new ? t8('Create a new printer') : t8('Edit Printer'));
 
 374   $self->printer->save;
 
 376   flash_later('info', $is_new ? t8('The printer has been created.') : t8('The printer has been saved.'));
 
 377   $self->redirect_to(action => 'list_printers', 'client.id' => $self->client->id);
 
 380 sub action_delete_printer {
 
 383   if (!$self->printer->delete) {
 
 384     flash('error', t8('The printer could not be deleted.'));
 
 385     $self->edit_printer_form(title => t8('Edit Printer'));
 
 389   flash_later('info', t8('The printer has been deleted.'));
 
 390   $self->redirect_to(action => 'list_printers', 'client.id' => $self->client->id);
 
 394 # actions: database administration
 
 397 sub action_create_dataset_login {
 
 400   $self->database_administration_login_form(
 
 401     title       => t8('Create Dataset'),
 
 402     next_action => 'create_dataset',
 
 406 sub action_create_dataset {
 
 408   $self->create_dataset_form;
 
 411 sub action_do_create_dataset {
 
 415   push @errors, t8("Dataset missing!")          if !$::form->{db};
 
 416   push @errors, t8("Default currency missing!") if !$::form->{defaultcurrency};
 
 419     flash('error', @errors);
 
 420     return $self->create_dataset_form;
 
 423   $::form->{encoding} = 'UNICODE';
 
 424   User->new->dbcreate($::form);
 
 426   flash_later('info', t8("The dataset #1 has been created.", $::form->{db}));
 
 427   $self->redirect_to(action => 'show');
 
 430 sub action_delete_dataset_login {
 
 433   $self->database_administration_login_form(
 
 434     title       => t8('Delete Dataset'),
 
 435     next_action => 'delete_dataset',
 
 439 sub action_delete_dataset {
 
 441   $self->delete_dataset_form;
 
 444 sub action_do_delete_dataset {
 
 448   push @errors, t8("Dataset missing!") if !$::form->{db};
 
 451     flash('error', @errors);
 
 452     return $self->create_dataset_form;
 
 455   User->new->dbdelete($::form);
 
 457   flash_later('info', t8("The dataset #1 has been deleted.", $::form->{db}));
 
 458   $self->redirect_to(action => 'show');
 
 462 # actions: locking, unlocking
 
 465 sub action_show_lock {
 
 470     title => "kivitendo " . t8('Administration'),
 
 474 sub action_unlock_system {
 
 477   SL::System::InstallationLock->unlock;
 
 478   flash_later('info', t8('Lockfile removed!'));
 
 479   $self->redirect_to(action => 'show');
 
 482 sub action_lock_system {
 
 485   SL::System::InstallationLock->lock;
 
 486   flash_later('info', t8('Lockfile created!'));
 
 487   $self->redirect_to(action => 'show');
 
 494 sub init_db_cfg            { $::lx_office_conf{'authentication/database'}                                                    }
 
 495 sub init_is_locked         { SL::System::InstallationLock->is_locked                                                         }
 
 496 sub init_client            { SL::DB::Manager::AuthClient->find_by(id => ($::form->{id} || ($::form->{client}  || {})->{id})) }
 
 497 sub init_user              { SL::DB::AuthUser  ->new(id => ($::form->{id} || ($::form->{user}    || {})->{id}))->load        }
 
 498 sub init_group             { SL::DB::AuthGroup ->new(id => ($::form->{id} || ($::form->{group}   || {})->{id}))->load        }
 
 499 sub init_printer           { SL::DB::Printer   ->new(id => ($::form->{id} || ($::form->{printer} || {})->{id}))->load        }
 
 500 sub init_all_clients       { SL::DB::Manager::AuthClient->get_all_sorted                                                     }
 
 501 sub init_all_users         { SL::DB::Manager::AuthUser  ->get_all_sorted                                                     }
 
 502 sub init_all_groups        { SL::DB::Manager::AuthGroup ->get_all_sorted                                                     }
 
 503 sub init_all_printers      { SL::DB::Manager::Printer   ->get_all_sorted                                                     }
 
 504 sub init_all_dateformats   { [ qw(mm/dd/yy dd/mm/yy dd.mm.yy yyyy-mm-dd)      ]                                              }
 
 505 sub init_all_numberformats { [ '1,000.00', '1000.00', '1.000,00', '1000,00'   ]                                              }
 
 506 sub init_all_stylesheets   { [ qw(lx-office-erp.css Mobile.css kivitendo.css) ]                                              }
 
 507 sub init_all_dbsources             { [ sort User->dbsources($::form)                               ] }
 
 508 sub init_all_used_dbsources        { { map { (join(':', $_->dbhost || 'localhost', $_->dbport || 5432, $_->dbname) => $_->name) } @{ $_[0]->all_clients }  } }
 
 509 sub init_all_accounting_methods    { [ { id => 'accrual',   name => t8('Accrual accounting')  }, { id => 'cash',     name => t8('Cash accounting')       } ] }
 
 510 sub init_all_inventory_systems     { [ { id => 'perpetual', name => t8('Perpetual inventory') }, { id => 'periodic', name => t8('Periodic inventory')    } ] }
 
 511 sub init_all_profit_determinations { [ { id => 'balance',   name => t8('Balancing')           }, { id => 'income',   name => t8('Cash basis accounting') } ] }
 
 513 sub init_all_charts {
 
 514   tie my %dir_h, 'IO::Dir', 'sql/';
 
 517     map { s/-chart\.sql$//; +{ id => $_ } }
 
 519     grep { /-chart\.sql\z/ && !/Default-chart.sql\z/ }
 
 524 sub init_all_menustyles    {
 
 526     { id => 'old', title => $::locale->text('Old (on the side)') },
 
 527     { id => 'v3',  title => $::locale->text('Top (CSS)') },
 
 528     { id => 'neu', title => $::locale->text('Top (Javascript)') },
 
 532 sub init_all_rights {
 
 533   my (@sections, $current_section);
 
 535   foreach my $entry ($::auth->all_rights_full) {
 
 536     if ($entry->[0] =~ m/^--/) {
 
 537       push @sections, { description => $entry->[1], rights => [] };
 
 539     } elsif (@sections) {
 
 540       push @{ $sections[-1]->{rights} }, {
 
 542         description => $entry->[1],
 
 546       die "Right without sections: " . join('::', @{ $entry });
 
 553 sub init_all_countrycodes {
 
 554   my %cc = User->country_codes;
 
 555   return [ map { id => $_, title => $cc{$_} }, sort { $cc{$a} cmp $cc{$b} } keys %cc ];
 
 563   my ($self, $action) = @_;
 
 565   $::request->layout(SL::Layout::Dispatcher->new(style => 'admin'));
 
 566   $::form->{favicon} = "favicon.ico";
 
 569     numberformat     => '1.000,00',
 
 570     dateformat       => 'dd.mm.yy',
 
 577   $self->client(SL::DB::Manager::AuthClient->get_default || $self->all_clients->[0]) if !$self->client;
 
 578   $::auth->set_client($self->client->id);
 
 585 sub use_multiselect_js {
 
 588   $::request->layout->use_javascript("${_}.js") for qw(jquery.selectboxes jquery.multiselect2side);
 
 593   my ($self, %params) = @_;
 
 594   my $version         = $::form->read_version;
 
 595   $::request->layout->no_menu(1);
 
 596   $self->render('admin/adminlogin', title => t8('kivitendo v#1 administration', $version), %params, version => $version);
 
 600   my ($self, %params) = @_;
 
 601   $self->use_multiselect_js->render('admin/edit_user', %params);
 
 604 sub edit_client_form {
 
 605   my ($self, %params) = @_;
 
 606   $self->use_multiselect_js->render('admin/edit_client', %params);
 
 609 sub edit_group_form {
 
 610   my ($self, %params) = @_;
 
 611   $self->use_multiselect_js->render('admin/edit_group', %params);
 
 614 sub edit_printer_form {
 
 615   my ($self, %params) = @_;
 
 616   $self->render('admin/edit_printer', %params);
 
 619 sub database_administration_login_form {
 
 620   my ($self, %params) = @_;
 
 624     dbhost    => $::form->{dbhost}    || $::auth->{DB_config}->{host} || 'localhost',
 
 625     dbport    => $::form->{dbport}    || $::auth->{DB_config}->{port} || 5432,
 
 626     dbuser    => $::form->{dbuser}    || $::auth->{DB_config}->{user} || 'kivitendo',
 
 627     dbpasswd  => $::form->{dbpasswd}  || $::auth->{DB_config}->{password},
 
 628     dbdefault => $::form->{dbdefault} || 'template1',
 
 633 sub create_dataset_form {
 
 634   my ($self, %params) = @_;
 
 635   $self->render('admin/create_dataset', title => (t8('Database Administration') . " / " . t8('Create Dataset')));
 
 638 sub delete_dataset_form {
 
 639   my ($self, %params) = @_;
 
 640   $self->render('admin/delete_dataset', title => (t8('Database Administration') . " / " . t8('Delete Dataset')));
 
 647 sub check_auth_db_and_tables {
 
 650   if (!$::auth->check_database) {
 
 651     $self->render('admin/check_auth_database', title => t8('Authentification database creation'));
 
 655   if (!$::auth->check_tables) {
 
 656     $self->render('admin/check_auth_tables', title => t8('Authentification tables creation'));
 
 663 sub apply_dbupgrade_scripts {
 
 664   return SL::DBUpgrade2->new(form => $::form, auth => 1)->apply_admin_dbupgrade_scripts(1);
 
 667 sub authenticate_root {
 
 670   return 1 if $::auth->authenticate_root($::form->{'{AUTH}admin_password'}) == $::auth->OK();
 
 672   $::auth->punish_wrong_login;
 
 673   $::auth->delete_session_value('admin_password');
 
 675   $self->login_form(error => t8('Incorrect password!'));