Starting refactoring ttFavReportHelper class for subgroups.
[timetracker.git] / notification_edit.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 require_once(LIBRARY_DIR.'/tdcron/class.tdcron.php');
31 require_once(LIBRARY_DIR.'/tdcron/class.tdcron.entry.php');
32 import('form.Form');
33 import('ttFavReportHelper');
34 import('ttNotificationHelper');
35
36 // Access checks.
37 if (!ttAccessAllowed('manage_advanced_settings')) {
38   header('Location: access_denied.php');
39   exit();
40 }
41 if (!$user->isPluginEnabled('no')) {
42   header('Location: feature_disabled.php');
43   exit();
44 }
45 if (!$user->exists()) {
46   header('Location: access_denied.php'); // No users in subgroup.
47   exit();
48 }
49 $notification_id = (int)$request->getParameter('id');
50 $notification = ttNotificationHelper::get($notification_id);
51 if (!$notification) {
52   header('Location: access_denied.php'); // Wrong notification id.
53   exit();
54 }
55 if ($request->isPost()) {
56   // TODO: improve this, perhaps by refactoring elsewhere.
57   $cl_fav_report = (int) $request->getParameter('fav_report');
58   $fav_report = ttFavReportHelper::getReport($cl_fav_report);
59   if ($user->getUser() != $fav_report['user_id']) {
60     header('Location: access_denied.php'); // Invalid fav report id in post.
61     exit();
62   }
63 }
64 // End of access checks.
65
66 $fav_reports = ttFavReportHelper::getReports();
67
68 if ($request->isPost()) {
69   $cl_cron_spec = trim($request->getParameter('cron_spec'));
70   $cl_email = trim($request->getParameter('email'));
71   $cl_cc = trim($request->getParameter('cc'));
72   $cl_subject = trim($request->getParameter('subject'));
73   $cl_report_condition = trim($request->getParameter('report_condition'));
74 } else {
75   $notification = ttNotificationHelper::get($notification_id);
76   $cl_fav_report = $notification['report_id'];
77   $cl_cron_spec = $notification['cron_spec'];
78   $cl_email = $notification['email'];
79   $cl_cc = $notification['cc'];
80   $cl_subject = $notification['subject'];
81   $cl_report_condition = $notification['report_condition'];
82 }
83
84 $form = new Form('notificationForm');
85 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$notification_id));
86 $form->addInput(array('type'=>'combobox',
87   'name'=>'fav_report',
88   'style'=>'width: 250px;',
89   'value'=>$cl_fav_report,
90   'data'=>$fav_reports,
91   'datakeys'=>array('id','name'),
92   'empty'=>array(''=>$i18n->get('dropdown.select'))));
93 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'cron_spec','style'=>'width: 250px;','value'=>$cl_cron_spec));
94 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'email','style'=>'width: 250px;','value'=>$cl_email));
95 $form->addInput(array('type'=>'text','name'=>'cc','style'=>'width: 300px;','value'=>$cl_cc));
96 $form->addInput(array('type'=>'text','name'=>'subject','style'=>'width: 300px;','value'=>$cl_subject));
97 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'report_condition','style'=>'width: 250px;','value'=>$cl_report_condition));
98 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.save')));
99
100 if ($request->isPost()) {
101   // Validate user input.
102   if (!$cl_fav_report) $err->add($i18n->get('error.report'));
103   if (!ttValidCronSpec($cl_cron_spec)) $err->add($i18n->get('error.field'), $i18n->get('label.schedule'));
104   if (!ttValidEmail($cl_email)) $err->add($i18n->get('error.field'), $i18n->get('label.email'));
105   if (!ttValidEmail($cl_cc, true)) $err->add($i18n->get('error.field'), $i18n->get('label.cc'));
106   if (!ttValidString($cl_subject, true)) $err->add($i18n->get('error.field'), $i18n->get('label.subject'));
107   if (!ttValidCondition($cl_report_condition)) $err->add($i18n->get('error.field'), $i18n->get('label.condition'));
108
109   if ($err->no()) {
110     // Calculate next execution time.
111     $next = tdCron::getNextOccurrence($cl_cron_spec, mktime());
112
113     if (ttNotificationHelper::update(array(
114         'id' => $notification_id,
115         'cron_spec' => $cl_cron_spec,
116         'next' => $next,
117         'report_id' => $cl_fav_report,
118         'email' => $cl_email,
119         'cc' => $cl_cc,
120         'subject' => $cl_subject,
121         'report_condition' => $cl_report_condition,
122         'status' => ACTIVE))) {
123         header('Location: notifications.php');
124         exit();
125       } else
126         $err->add($i18n->get('error.db'));
127   }
128 } // isPost
129
130 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
131 $smarty->assign('title', $i18n->get('title.edit_notification'));
132 $smarty->assign('content_page_name', 'notification_edit.tpl');
133 $smarty->display('index.tpl');