Put code to create default roles upon team creation.
[timetracker.git] / register.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('initialize.php');
30 import('form.Form');
31 import('ttUserHelper');
32 import('ttRoleHelper');
33
34 if (!isTrue(MULTITEAM_MODE) || $auth->isPasswordExternal()) {
35   header('Location: login.php');
36   exit();
37 }
38
39 $auth->doLogout();
40
41 if (!defined('CURRENCY_DEFAULT')) define('CURRENCY_DEFAULT', '$');
42
43 if ($request->isPost()) {
44   $cl_team_name = trim($request->getParameter('team_name'));
45   $cl_currency = trim($request->getParameter('currency'));
46   if (!$cl_currency) $cl_currency = CURRENCY_DEFAULT;
47   $cl_lang = $request->getParameter('lang');
48   $cl_manager_name = trim($request->getParameter('manager_name'));
49   $cl_manager_login = trim($request->getParameter('manager_login'));
50   $cl_password1 = $request->getParameter('password1');
51   $cl_password2 = $request->getParameter('password2');
52   $cl_manager_email = trim($request->getParameter('manager_email'));
53 } else {
54   $cl_currency = CURRENCY_DEFAULT;
55   $cl_lang = $i18n->lang; // Browser setting from initialize.php.
56 }
57
58 $form = new Form('profileForm');
59 $form->addInput(array('type'=>'text','maxlength'=>'200','name'=>'team_name','value'=>$cl_team_name));
60 $form->addInput(array('type'=>'text','maxlength'=>'7','name'=>'currency','value'=>$cl_currency));
61
62 // Prepare an array of available languages.
63 $lang_files = I18n::getLangFileList();
64 foreach ($lang_files as $lfile) {
65   $content = file(RESOURCE_DIR."/".$lfile);
66   $lname = '';
67   foreach ($content as $line) {
68     if (strstr($line, 'i18n_language')) {
69       $a = explode('=', $line);
70       $lname = trim(str_replace(';','',str_replace("'","",$a[1])));
71       break;
72     }
73   }
74   unset($content);
75   $longname_lang[] = array('id'=>I18n::getLangFromFilename($lfile),'name'=>$lname);
76 }
77 $longname_lang = mu_sort($longname_lang, 'name');
78 $form->addInput(array('type'=>'combobox','name'=>'lang','style'=>'width: 200px','data'=>$longname_lang,'datakeys'=>array('id','name'),'value'=>$cl_lang));
79
80 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_name','value'=>$cl_manager_name));
81 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_login','value'=>$cl_manager_login));
82 $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password1','value'=>$cl_password1));
83 $form->addInput(array('type'=>'password','maxlength'=>'30','name'=>'password2','value'=>$cl_password2));
84 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_email','value'=>$cl_manager_email));
85 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->getKey('button.submit')));
86
87 if ($request->isPost()) {
88   // Validate user input.
89   if (!ttValidString($cl_team_name, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.team_name'));
90   if (!ttValidString($cl_currency, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.currency'));
91   if (!ttValidString($cl_manager_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.manager_name'));
92   if (!ttValidString($cl_manager_login)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.manager_login'));
93   if (!ttValidString($cl_password1)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.password'));
94   if (!ttValidString($cl_password2)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.confirm_password'));
95   if ($cl_password1 !== $cl_password2)
96     $err->add($i18n->getKey('error.not_equal'), $i18n->getKey('label.password'), $i18n->getKey('label.confirm_password'));
97   if (!ttValidEmail($cl_manager_email, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.email'));
98
99   if ($err->no()) {
100     if (!ttUserHelper::getUserByLogin($cl_manager_login)) {
101       // Create a new team.
102       $team_id = ttTeamHelper::insert(array('name'=>$cl_team_name,'currency'=>$cl_currency,'lang'=>$cl_lang));
103       if ($team_id) {
104         if (!ttRoleHelper::createPredefinedRoles($team_id, $cl_lang))
105           $err->add($i18n->getKey('error.db'));
106
107         $role_id = ttRoleHelper::getTopManagerRoleID();
108
109         // Team created, now create a team manager.
110         $user_id = ttUserHelper::insert(array(
111           'team_id' => $team_id,
112           'role' => ROLE_MANAGER, // TODO: this is now out of sync (324 vs 512 for new role id). Work in progress.
113           'role_id' => $role_id,
114           'name' => $cl_manager_name,
115           'login' => $cl_manager_login,
116           'password' => $cl_password1,
117           'email' => $cl_manager_email));
118       }
119       if ($team_id && $user_id) {
120         if ($auth->doLogin($cl_manager_login, $cl_password1)) {
121           setcookie('tt_login', $cl_manager_login, time() + COOKIE_EXPIRE, '/');
122           header('Location: time.php');
123         } else {
124           header('Location: login.php');
125         }
126         exit();
127       } else
128         $err->add($i18n->getKey('error.db'));
129     } else
130       $err->add($i18n->getKey('error.user_exists'));
131   }
132 } // isPost
133
134 $smarty->assign('title', $i18n->getKey('title.create_team'));
135 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
136 $smarty->assign('onload', 'onLoad="document.profileForm.team.focus()"');
137 $smarty->assign('content_page_name', 'register.tpl');
138 $smarty->display('index.tpl');