Example #1
0
 public function js()
 {
     header('Content-Type: application/javascript');
     $script = Req::get('script');
     switch ($script) {
         case 'reporting':
             $project = Req::get('name', 'sample-project');
             $iframepath = Config::getHTMLBase() . Config::$iframepath . '?project=' . $project;
             $this->set('iframepath', $iframepath);
             echo $this->output('js/' . $script);
             break;
     }
 }
Example #2
0
<?php

!defined('SERVER_EXEC') && die('No access.');
?>
<!DOCTYPE html>
<html>
<head>
	<base href="<?php 
echo Config::getHTMLBase();
?>
" />
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no, minimal-ui" />

	<?php 
if (!empty($meta)) {
    ?>
		<?php 
    foreach ($meta as $m) {
        ?>
			<meta name="<?php 
        echo $m['name'];
        ?>
" content="<?php 
        echo $m['content'];
        ?>
" />
		<?php 
    }
    ?>
Example #3
0
 public static function url($key, $options = array(), $external = false)
 {
     $values = array();
     $link = $external ? Config::getHTMLBase() : '';
     if (Req::hasget('environment')) {
         $options['environment'] = Req::get('environment');
     }
     if (Config::$sef) {
         Lib::load('router');
         $segments = array();
         foreach (Router::getRouters() as $router) {
             if (is_string($router->allowedBuild) && $key !== $router->allowedBuild) {
                 continue;
             }
             if (is_array($router->allowedBuild) && !in_array($key, $router->allowedBuild)) {
                 continue;
             }
             $router->encode($key, $options, $segments);
         }
         if (!empty($segments)) {
             $link .= implode('/', $segments);
         }
     } else {
         $link .= 'index.php';
     }
     if (!empty($options)) {
         $values = array();
         foreach ($options as $k => $v) {
             $values[] = urlencode($k) . '=' . urlencode($v);
         }
         $queries = implode('&', $values);
         if (!empty($queries)) {
             $queries = '?' . $queries;
         }
         $link .= $queries;
     }
     return $link;
 }
Example #4
0
 public function main()
 {
     $this->js = Config::getHTMLBase() . 'js/reporting?name=testing';
 }
Example #5
0
 public function submit()
 {
     $keys = array('id', 'content');
     if (!Req::haspost($keys)) {
         return $this->fail('Insufficient data.');
     }
     $identifier = Lib::cookie(Lib::hash(Config::$userkey));
     $user = Lib::table('user');
     $isLoggedIn = !empty($identifier) && $user->load(array('identifier' => $identifier));
     if (!$isLoggedIn) {
         return $this->fail('You are not authorized.');
     }
     $post = Req::post($keys);
     $commentTable = Lib::table('comment');
     $commentTable->link($user);
     $commentTable->report_id = $post['id'];
     $commentTable->content = $post['content'];
     $commentTable->store();
     $files = Req::file();
     if (!empty($files)) {
         foreach ($files as $key => $file) {
             $commentTable->attach($key, $file);
         }
     }
     $commentModel = Lib::model('comment');
     $recipients = $commentModel->getUsersByReportId($post['id']);
     $reportTable = Lib::table('report');
     $reportTable->load($post['id']);
     $projectTable = Lib::table('project');
     $projectTable->load($reportTable->project_id);
     if (!in_array($reportTable->user_id, $recipients)) {
         $recipients[] = $reportTable->user_id;
     }
     if (!in_array($reportTable->assignee_id, $recipients)) {
         $recipients[] = $reportTable->assignee_id;
     }
     $userSettingsModel = Lib::model('user_settings');
     $userProjectsSettings = $userSettingsModel->getSettings(array('project_id' => $projectTable->id, 'user_id' => $recipients));
     $userProjectsSettings = $userSettingsModel->assignByKey($userProjectsSettings, 'user_id');
     $userAllSettings = $userSettingsModel->getSettings(array('project_id' => 0, 'user_id' => array_diff($recipients, array_keys($userProjectsSettings))));
     $userAllSettings = $userSettingsModel->assignByKey($userAllSettings, 'user_id');
     $defaultSettings = unserialize(USER_SETTINGS);
     $ownerSettings = isset($userProjectsSettings[$reportTable->user_id]) ? $userProjectSettings : (isset($userAllSettings[$reportTable->user_id]) ? $userAllSettings : $defaultSettings);
     if (!$ownerSettings['comment-owner']) {
         $recipients = array_diff($recipients, array($reportTable->user_id));
     }
     foreach ($recipients as $userid) {
         if ($userid == $user->id) {
             continue;
         }
         $settings = isset($userProjectsSettings[$userid]) ? $userProjectSettings : (isset($userAllSettings[$userid]) ? $userAllSettings : $defaultSettings);
         // If is owner, the fact that we reach here means the owner wants notification
         // Or if not owner, then check for settings
         if ($reportTable->user_id == $userid || $settings['comment-participant']) {
             $notificationFields = ['Comment' => $post['content']];
             if (!empty($files)) {
                 foreach ($files as $key => $file) {
                     $notificationFields[$file['name']] = Config::getHTMLBase() . Config::$attachmentFolder . '/' . $key . '-' . $file['name'];
                 }
             }
             $targetUser = Lib::table('user');
             $targetUser->load($userid);
             $notificationData = ['to' => $targetUser->email, 'text' => $user->nick . ' posted a new comment.', 'username' => 'Project Report Comment', 'icon_emoji' => ':speech_balloon', 'attachments' => [['fallback' => 'New comment in <' . $reportTable->getLink() . '|Report ticket ID ' . $reportTable->id . '>.', 'color' => '#FFEB3B', 'title' => $projectTable->name, 'title_link' => $reportTable->getLink(), 'text' => $reportTable->content, 'fields' => $notificationFields]]];
             Lib::load('helper/notification');
             NotificationHelper::send($notificationData);
             // $slackMessage = Lib::helper('slack')->newMessage();
             // $slackMessage->to($userid);
             // $slackMessage->message($user->nick . ' posted a new comment.');
             // $slackMessage->username = '******';
             // $slackMessage->icon_emoji = ':speech_balloon:';
             // $attachment = $slackMessage->newAttachment();
             // $attachment->fallback = 'New comment in <' . $reportTable->getLink() . '|Report ticket ID ' . $reportTable->id . '>.';
             // $attachment->color = '#FFEB3B';
             // $attachment->title = $projectTable->name;
             // $attachment->title_link = $reportTable->getLink();
             // $attachment->text = $reportTable->content;
             // $attachment->newField('Comment', $post['content']);
             // if (!empty($files)) {
             // 	foreach ($files as $key => $file) {
             // 		$attachment->newField($file['name'], Config::getHTMLBase() . Config::$attachmentFolder . '/' . $key . '-' . $file['name']);
             // 	}
             // }
             // $slackMessage->send();
         }
     }
     return $this->success($commentTable->id);
 }