Work in progress creating a repo
[timetracker.git] / report_send.php
diff --git a/report_send.php b/report_send.php
new file mode 100644 (file)
index 0000000..18e731e
--- /dev/null
@@ -0,0 +1,99 @@
+<?php
+// +----------------------------------------------------------------------+
+// | Anuko Time Tracker
+// +----------------------------------------------------------------------+
+// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
+// +----------------------------------------------------------------------+
+// | LIBERAL FREEWARE LICENSE: This source code document may be used
+// | by anyone for any purpose, and freely redistributed alone or in
+// | combination with other software, provided that the license is obeyed.
+// |
+// | There are only two ways to violate the license:
+// |
+// | 1. To redistribute this code in source form, with the copyright
+// |    notice or license removed or altered. (Distributing in compiled
+// |    forms without embedded copyright notices is permitted).
+// |
+// | 2. To redistribute modified versions of this code in *any* form
+// |    that bears insufficient indications that the modifications are
+// |    not the work of the original author(s).
+// |
+// | This license applies to this document only, not any other software
+// | that it may be combined with.
+// |
+// +----------------------------------------------------------------------+
+// | Contributors:
+// | https://www.anuko.com/time_tracker/credits.htm
+// +----------------------------------------------------------------------+
+
+require_once('initialize.php');
+import('form.Form');
+import('form.ActionForm');
+import('ttSysConfig');
+import('ttReportHelper');
+
+// Access check.
+if (!ttAccessCheck(right_view_reports)) {
+  header('Location: access_denied.php');
+  exit();
+}
+
+$sc = new ttSysConfig($user->id);
+
+if ($request->getMethod() == 'POST') {
+  $cl_receiver = trim($request->getParameter('receiver'));
+  $cl_cc = trim($request->getParameter('cc'));
+  $cl_subject = trim($request->getParameter('subject'));
+  $cl_comment = trim($request->getParameter('comment'));
+} else {
+  $cl_receiver = $sc->getValue(SYSC_LAST_REPORT_EMAIL);
+  $cl_cc = $sc->getValue(SYSC_LAST_REPORT_CC);
+  $cl_subject = $i18n->getKey('form.mail.report_subject');
+}
+
+$form = new Form('mailForm');
+$form->addInput(array('type'=>'text','name'=>'receiver','style'=>'width: 300px;','value'=>$cl_receiver));
+$form->addInput(array('type'=>'text','name'=>'cc','style'=>'width: 300px;','value'=>$cl_cc));
+$form->addInput(array('type'=>'text','name'=>'subject','style'=>'width: 300px;','value'=>$cl_subject));
+$form->addInput(array('type'=>'textarea','name'=>'comment','maxlength'=>'250','style'=>'width: 300px; height: 60px;'));
+$form->addInput(array('type'=>'submit','name'=>'btn_send','value'=>$i18n->getKey('button.send')));
+
+if ($request->getMethod() == 'POST') {
+  // Validate user input.
+  if (!ttValidEmailList($cl_receiver)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('form.mail.to'));
+  if (!ttValidEmailList($cl_cc, true)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('form.mail.cc'));
+  if (!ttValidString($cl_subject)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('form.mail.subject'));
+  if (!ttValidString($cl_comment, true)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.comment'));
+  
+  if ($errors->isEmpty()) {
+    // Save last report emails for future use.
+    $sc->setValue(SYSC_LAST_REPORT_EMAIL, $cl_receiver);
+       $sc->setValue(SYSC_LAST_REPORT_CC, $cl_cc);
+       
+       // Obtain session bean with report attributes.
+       $bean = new ActionForm('reportBean', new Form('reportForm'));
+       // Prepare report body.
+       $body = ttReportHelper::prepareReportBody($bean, $cl_comment);
+               
+    import('mail.Mailer');
+    $mailer = new Mailer();
+    $mailer->setCharSet(CHARSET);
+    $mailer->setContentType('text/html');
+    $mailer->setSender(SENDER);
+    $mailer->setReceiver($cl_receiver);
+    if (isset($cl_cc))
+      $mailer->setReceiverCC($cl_cc);
+    $mailer->setSendType(MAIL_MODE);
+    if ($mailer->send($cl_subject, $body))
+      $messages->add($i18n->getKey('form.mail.report_sent'));
+    else
+      $errors->add($i18n->getKey('error.mail_send'));
+  }
+}
+
+$smarty->assign('title', $i18n->getKey('title.send_report'));
+$smarty->assign('forms', array($form->getName()=>$form->toArray()));
+$smarty->assign('onload', 'onLoad="document.mailForm.'.($cl_receiver?'comment':'receiver').'.focus()"');
+$smarty->assign('content_page_name', 'mail.tpl');
+$smarty->display('index.tpl');
+?>
\ No newline at end of file