This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/storm/stormticket/stormticket.module

1091 lines
41 KiB
Text

<?php
/**
* @file
*
* 1: Hooks
* 2: Access functions
*/
// HOOKS
function stormticket_help($path, $arg) {
$o = '';
switch ($path) {
case "admin/help#stormticket":
$o = '<p>'. t("Provides ticket support for SuiteDesk") .'</p>';
break;
}
return $o;
}
function stormticket_perm() {
return array(
'Storm ticket: access',
'Storm ticket: add',
'Storm ticket: delete all',
'Storm ticket: delete own',
'Storm ticket: delete of user organization',
'Storm ticket: delete if assigned to ticket',
'Storm ticket: edit all',
'Storm ticket: edit own',
'Storm ticket: edit of user organization',
'Storm ticket: edit if assigned to ticket',
'Storm ticket: view all',
'Storm ticket: view own',
'Storm ticket: view of user organization',
'Storm ticket: view if assigned to ticket',
'Storm ticket: view if assigned to project',
);
}
function stormticket_init() {
drupal_add_js(drupal_get_path('module', 'stormticket') .'/stormticket.js', 'module', 'header', FALSE);
$settings = array(
'storm' => array(
'task_tickets_url' => url('storm/task_tickets_js/')
),
);
drupal_add_js($settings, 'setting');
}
function stormticket_access($op, $node, $account = NULL) {
if (empty($account)) {
global $user;
$account = $user;
}
if ($op == 'create') {
return user_access('Storm ticket: add');
}
if (is_numeric($node)) {
$node = node_load($node);
}
if (!isset($account->stormorganization_nid) && module_exists('stormperson')) {
_stormperson_user_load($account);
}
if ($op == 'delete') {
if (user_access('Storm ticket: delete all')) {
return TRUE;
}
elseif (user_access('Storm ticket: delete own') && ($account->uid == $node->uid)) {
return TRUE;
}
elseif (user_access('Storm ticket: delete of user organization') && ($account->stormorganization_nid == $node->organization_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: delete if assigned to ticket') && ($account->stormperson_nid == $node->assigned_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: delete if assigned to ticket') && module_exists('stormteam') && stormteam_user_belongs_to_team($node->assigned_nid, $account->stormperson_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: delete if assigned to ticket') && module_exists('stormteam') && stormteam_user_belongs_to_team($node->assigned_nid, $account->stormorganization_nid)) {
return TRUE;
}
}
if ($op == 'update') {
if (user_access('Storm ticket: edit all')) {
return TRUE;
}
elseif (user_access('Storm ticket: edit own') && ($account->uid == $node->uid)) {
return TRUE;
}
elseif (user_access('Storm ticket: edit of user organization') && ($account->stormorganization_nid == $node->organization_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: edit if assigned to ticket') && ($account->stormperson_nid == $node->assigned_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: edit if assigned to ticket') && module_exists('stormteam') && stormteam_user_belongs_to_team($node->assigned_nid, $account->stormperson_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: edit if assigned to ticket') && module_exists('stormteam') && stormteam_user_belongs_to_team($node->assigned_nid, $account->stormorganization_nid)) {
return TRUE;
}
}
if ($op == 'view') {
if (user_access('Storm ticket: view all')) {
return TRUE;
}
elseif (user_access('Storm ticket: view own') && ($account->uid == $node->uid)) {
return TRUE;
}
elseif (user_access('Storm ticket: view of user organization') && ($account->stormorganization_nid == $node->organization_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: view if assigned to ticket') && ($account->stormperson_nid == $node->assigned_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: view if assigned to ticket') && module_exists('stormteam') && stormteam_user_belongs_to_team($node->assigned_nid, $account->stormperson_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: view if assigned to ticket') && module_exists('stormteam') && stormteam_user_belongs_to_team($node->assigned_nid, $account->stormorganization_nid)) {
return TRUE;
}
elseif (user_access('Storm ticket: view if assigned to project') && module_exists('stormteam')) {
$project = node_load($node->project_nid);
if (stormteam_user_belongs_to_team($project->assigned_nid, $account->stormperson_nid)) {
return TRUE;
}
elseif (stormteam_user_belongs_to_team($project->assigned_nid, $account->stormorganization_nid)) {
return TRUE;
}
}
}
return FALSE;
}
function stormticket_access_sql($sql, $where=array()) {
if (!user_access('Storm ticket: view all')) {
global $user;
$cond = '';
$join = array();
if (user_access('Storm ticket: view own')) {
$cond .= 'n.uid = ' . $user->uid;
}
if (user_access('Storm ticket: view of user organization')) {
$cond .= !empty($cond) ? ' OR ' : '';
$cond .= 'sti.organization_nid = ' . $user->stormorganization_nid;
}
if (user_access('Storm ticket: view if assigned to ticket')) {
$cond .= !empty($cond) ? ' OR ' : '';
$cond .= 'sti.assigned_nid = ' . $user->stormperson_nid;
if (module_exists('stormteam')) {
// Load teams that the account belongs to:
$belonged_teams = stormteam_user_return_teams();
// Allow access if any of those teams is the one in question:
foreach ($belonged_teams as $belonged_team) {
$cond .= ' OR sti.assigned_nid = ' . $belonged_team;
}
}
}
if (user_access('Storm ticket: view if assigned to project')) {
$join[] = 'LEFT JOIN {node} npr ON npr.nid = sti.project_nid';
$join[] = 'LEFT JOIN {stormproject} spr ON spr.vid = npr.vid';
$cond .= !empty($cond) ? ' OR ' : '';
$cond .= 'spr.assigned_nid = ' . $user->stormperson_nid;
if (module_exists('stormteam')) {
// Load teams that the account belongs to:
$belonged_teams = stormteam_user_return_teams();
// Allow access if any of those teams is the one in question:
foreach ($belonged_teams as $belonged_team) {
$cond .= ' OR spr.assigned_nid = ' . $belonged_team;
}
}
}
$where[] = empty($cond) ? '0 = 1' : $cond;
}
$where[] = "'storm_access' = 'storm_access'";
return storm_rewrite_sql($sql, $where, $join);
}
function stormticket_storm_rewrite_where_sql($query, $primary_table, $account) {
static $conds = array();
if (isset($conds[$primary_table][$account->uid])) {
return $conds[$primary_table][$account->uid];
}
$cond = '';
if (!preg_match("/'storm_access' = 'storm_access'/", $query)) {
if (user_access('Storm ticket: view all', $account)) {
return '';
}
$from = '{stormticket} sti1';
if (user_access('Storm ticket: view own', $account)) {
$cond .= " ${primary_table}.uid = " . $account->uid;
}
if (user_access('Storm ticket: view of user organization', $account)) {
$cond .= !empty($cond) ? ' OR ' : '';
# If function is called without viewing an organization, this variable
# may not be set. These lines check for that and set the organization
# node id to zero if not otherwise set.
if (!isset($account->stormorganization_nid)) {
$account->stormorganization_nid = 0;
}
$cond .= ' sti1.organization_nid = ' . $account->stormorganization_nid;
}
if (user_access('Storm ticket: view if assigned to ticket')) {
$cond .= !empty($cond) ? ' OR ' : '';
$cond .= 'sti1.assigned_nid = ' . $account->uid;
if (module_exists('stormteam')) {
// Load teams that the account belongs to:
$belonged_teams = stormteam_user_return_teams($account);
// Allow access if any of those teams is the one in question:
foreach ($belonged_teams as $belonged_team) {
$cond .= ' OR sti1.assigned_nid = ' . $belonged_team;
}
}
}
if (user_access('Storm ticket: view if assigned to project')) {
$from .= ' LEFT JOIN {node} npr1 ON npr1.nid = sti1.project_nid LEFT JOIN {stormproject} spr1 ON spr1.vid = npr1.vid';
$cond .= !empty($cond) ? ' OR ' : '';
$cond .= 'spr1.assigned_nid = ' . $account->stormperson_nid;
if (module_exists('stormteam')) {
// Load teams that the account belongs to:
$belonged_teams = stormteam_user_return_teams($account);
// Allow access if any of those teams is the one in question:
foreach ($belonged_teams as $belonged_team) {
$cond .= ' OR spr1.assigned_nid = ' . $belonged_team;
}
}
}
if ($cond) {
$cond = " WHEN 'stormticket' THEN (SELECT IF($cond, 1, 0) FROM ${from} WHERE sti1.vid = ${primary_table}.vid) ";
}
else {
$cond = " WHEN 'stormticket' THEN 0 ";
}
}
$conds[$primary_table][$account->uid] = $cond;
return $cond;
}
function stormticket_menu() {
$items = array();
$items['tickets'] = array(
'title' => 'Tickets',
'description' => 'SuiteDesk tickets',
'page callback' => 'stormticket_list',
'access arguments' => array('Storm ticket: access'),
'type' => MENU_NORMAL_ITEM,
'file' => 'stormticket.admin.inc',
'weight' => 5,
);
$items['storm/task_tickets_js/%/%/%'] = array(
'title' => 'Tickets',
'page callback' => '_stormticket_task_tickets_js',
'page arguments' => array(2, 3, 4),
'access callback' => TRUE,
'file' => 'stormticket.admin.inc',
'type' => MENU_CALLBACK,
);
$items['admin/settings/suitedesk/ticket'] = array(
'title' => 'Tickets',
'description' => 'SuiteDesk ticket administration page',
'page callback' => 'drupal_get_form',
'page arguments' => array('stormticket_admin_settings'),
'access arguments' => array('Storm: access administration pages'),
'type' => MENU_LOCAL_TASK,
'weight' => 100,
);
return $items;
}
function stormticket_theme() {
return array(
'stormticket_list' => array(
'file' => 'stormticket.theme.inc',
'arguments' => array('header', 'tickets'),
),
'stormticket_view' => array(
'file' => 'stormticket.theme.inc',
'arguments' => array('node', 'teaser', 'page'),
),
);
}
function stormticket_node_info() {
return array(
'stormticket' => array(
'name' => t('Ticket'),
'module' => 'stormticket',
'description' => t("A ticket for SuiteDesk."),
'title_label' => t("Title"),
'body_label' => t("Description"),
)
);
}
function stormticket_content_extra_fields($type_name) {
if ($type_name == 'stormticket') {
return array(
'group1' => array('label' => 'Organization/Project/Task Group', 'weight' => -20),
'group2' => array('label' => 'Category/Status/Priority Group', 'weight' => -19),
'group3' => array('label' => 'Date/Duration Group', 'weight' => -18),
'group4' => array('label' => 'Price Group', 'weight' => -17),
'group5' => array('label' => 'Assigned to', 'weight' => -16),
'group6' => array('label' => 'Billable / Billed Group', 'weight' => -15),
);
}
}
// ORGANISATION / PROJECT / TASK UPDATE FUNCTIONS
function stormticket_stormorganization_change($organization_nid, $organization_title) {
$s = "UPDATE {stormticket} SET organization_title='%s' WHERE organization_nid=%d AND organization_title <> '%s'";
db_query($s, $organization_title, $organization_nid, $organization_title);
}
function stormticket_stormproject_change($project_nid, $project_title) {
$s = "UPDATE {stormticket} SET project_title='%s' WHERE project_nid=%d AND project_title <> '%s'";
db_query($s, $project_title, $project_nid, $project_title);
}
function stormticket_stormtask_change($task_nid, $task_title, $task_stepno) {
$s = "UPDATE {stormticket} SET task_title='%s', task_stepno='%s' WHERE task_nid=%d AND
(task_title<>'%s' OR task_stepno<>'%s')";
db_query($s, $task_title, $task_stepno, $task_nid, $task_title, $task_stepno);
}
function stormticket_stormproject_change_hierarchy($project_nid, $organization_nid, $organization_title) {
$s = "UPDATE {stormticket} SET organization_nid=%d, organization_title='%s' WHERE project_nid=%d";
db_query($s, $organization_nid, $organization_title, $project_nid);
}
function stormticket_stormtask_change_hierarchy($task_nid, $organization_nid, $organization_title, $project_nid, $project_title) {
$s = "UPDATE {stormticket} SET organization_nid=%d, organization_title='%s', project_nid=%d, project_title='%s' WHERE task_nid=%d";
db_query($s, $organization_nid, $organization_title, $project_nid, $project_title, $task_nid);
}
// TICKET CREATE / EDIT FORM
function stormticket_form(&$node) {
$breadcrumb = array();
$breadcrumb[] = l(t('Home'), '<front>');
$breadcrumb[] = l(t('Tickets'), 'tickets');
drupal_set_breadcrumb($breadcrumb);
if (arg(1)=='add') {
$node->datebegin = time();
if (array_key_exists('organization_nid', $_GET) && empty($node->organization_nid)) {
$node->organization_nid = $_GET['organization_nid'];
}
if (array_key_exists('project_nid', $_GET) && empty($node->project_nid)) {
$node->project_nid = $_GET['project_nid'];
$p = node_load($node->project_nid);
$node->organization_nid = $p->organization_nid;
if (!stormorganization_access('view', $node->organization_nid)) {
drupal_set_message(t("You cannot add a ticket for this project, as you do not have access to view the organization's profile"));
drupal_goto('node/'. $node->project_nid);
}
}
if (array_key_exists('task_nid', $_GET) && empty($node->task_nid)) {
$node->task_nid = $_GET['task_nid'];
$t = node_load($node->task_nid);
$node->organization_nid = $t->organization_nid;
$node->project_nid = $t->project_nid;
// $project_access deals with the case whereby the project could be blank, hence access rules not required
$project_access = $node->project_nid ? stormproject_access('view', $node->project_nid) : TRUE;
if (!stormorganization_access('view', $node->organization_nid) || !stormproject_access('view', $node->project_nid)) {
drupal_set_message(t("You cannot add a ticket for this task, as you do not have access to view the both the organization and project's profile"));
drupal_goto('node/'. $node->task_nid);
}
}
if (!empty($_SESSION['stormticket_list_filter']['organization_nid']) && !$node->organization_nid) {
$node->organization_nid = $_SESSION['stormticket_list_filter']['organization_nid'];
}
if (!empty($_SESSION['stormticket_list_filter']['project_nid']) && !$node->project_nid) {
$node->project_nid = $_SESSION['stormticket_list_filter']['project_nid'];
}
if (!empty($_SESSION['stormticket_list_filter']['task_nid']) && !$node->task_nid) {
$node->task_nid = $_SESSION['stormticket_list_filter']['task_nid'];
}
if (array_key_exists('organization_nid', $_GET)) $node->organization_nid = $_GET['organization_nid'];
if (array_key_exists('project_nid', $_GET)) $node->project_nid = $_GET['project_nid'];
if (array_key_exists('task_nid', $_GET)) $node->task_nid = $_GET['task_nid'];
$s_org = "SELECT n.nid, n.title FROM {stormorganization} so INNER JOIN {node} n
ON so.nid=n.nid WHERE n.status=1 AND so.isactive=1 AND n.type='stormorganization' ORDER BY n.title";
$node->billable = variable_get('stormticket_billable_default', FALSE);
}
else {
$s_org = "SELECT n.nid, n.title FROM {stormorganization} so INNER JOIN {node} n
ON so.nid=n.nid WHERE n.status=1 AND n.type='stormorganization' ORDER BY n.title";
}
$type = node_get_types('type', $node);
$form['#attributes']['class'] = 'stormcomponent_node_form';
$form['group1'] = array(
'#type' => 'markup',
'#theme' => 'storm_form_group',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group1') : -20,
);
$s_org = stormorganization_access_sql($s_org);
$s_org = db_rewrite_sql($s_org);
$r = db_query($s_org);
$organizations = array();
while ($organization = db_fetch_object($r)) {
$organizations[$organization->nid] = $organization->title;
if (!isset($node->organization_nid)) {
$node->organization_nid = $organization->nid;
}
}
$form['group1']['organization_nid'] = array(
'#type' => 'select',
'#title' => t('Organization'),
'#default_value' => $node->organization_nid,
'#options' => $organizations,
'#required' => TRUE,
'#attributes' => array('onchange' => "stormtask_organization_project_tasks(this, 'edit-project-nid', 'edit-parent-nid', 'edit-assigned-nid', true, '-')"),
);
$s = "SELECT n.nid, n.title FROM {node} AS n INNER JOIN {stormproject} AS spr ON spr.vid=n.vid WHERE spr.organization_nid=%d AND n.status=1 AND n.type='stormproject' ORDER BY n.title";
$s = stormproject_access_sql($s);
$s = db_rewrite_sql($s);
$r = db_query($s, $node->organization_nid);
$projects = array();
while ($project = db_fetch_object($r)) {
$projects[$project->nid] = $project->title;
}
$form['group1']['project_nid'] = array(
'#type' => 'select',
'#title' => t('Project'),
'#default_value' => isset($node->project_nid) ? $node->project_nid : 0,
'#options' => array(0 => '-') + $projects,
'#process' => array('storm_dependent_select_process'),
'#attributes' => array('onchange' => "stormtask_project_tasks('edit-organization-nid', this, 'edit-task-nid', 'edit-assigned-nid', true, '-')"),
);
$tree = isset($node->project_nid) ? _stormtask_get_tree($node->project_nid) : array();
$tasks = _stormtask_plain_tree($tree);
$form['group1']['task_nid'] = array(
'#type' => 'select',
'#title' => t('Task'),
'#default_value' => isset($node->task_nid) ? $node->task_nid : 0,
'#options' => array(0 => '-') + $tasks,
'#process' => array('storm_dependent_select_process'),
);
$form['group1']['task_nid_old'] = array(
'#type' => 'hidden',
'#default_value' => isset($node->task_nid) ? $node->task_nid : NULL,
);
$form['group2'] = array(
'#type' => 'markup',
'#theme' => 'storm_form_group',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group2') : -19,
);
$category_list = storm_attributes_bydomain('Ticket category');
$form['group2']['ticketcategory'] = array(
'#type' => 'select',
'#title' => t('Category'),
'#default_value' => $node->ticketcategory,
'#options' => $category_list['values'],
);
$status_list = storm_attributes_bydomain('Ticket status');
$form['group2']['ticketstatus'] = array(
'#type' => 'select',
'#title' => t('Status'),
'#default_value' => $node->ticketstatus,
'#options' => $status_list['values'],
);
$priority_list = storm_attributes_bydomain('Ticket priority');
$form['group2']['ticketpriority'] = array(
'#type' => 'select',
'#title' => t('Priority'),
'#default_value' => $node->ticketpriority,
'#options' => $priority_list['values'],
);
$form['title'] = array(
'#type' => 'textfield',
'#title' => check_plain($type->title_label),
'#required' => TRUE,
'#default_value' => $node->title,
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'title') : -18,
);
$form['group3'] = array(
'#type' => 'markup',
'#theme' => 'storm_form_group',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group3') : -17,
);
$form['group3']['datebegin'] = array(
'#type' => 'dateext',
'#title' => t('Date begin'),
'#withnull' => TRUE,
'#default_value' => $node->datebegin,
);
$form['group3']['dateend'] = array(
'#type' => 'dateext',
'#title' => t('Date end'),
'#withnull' => TRUE,
'#default_value' => isset($node->dateend) ? $node->dateend : NULL,
);
$durationunits = storm_attributes_bydomain('Duration unit');
$form['group3']['durationunit'] = array(
'#type' => 'select',
'#title' => t('Duration unit'),
'#default_value' => $node->durationunit,
'#options' => $durationunits['values'],
);
$form['group3']['duration'] = array(
'#type' => 'textfield',
'#title' => t('Duration'),
'#size' => 20,
'#default_value' => isset($node->duration) ? $node->duration : NULL,
);
$form['group4'] = array(
'#type' => 'markup',
'#theme' => 'storm_form_group',
'#weight' => 3,
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group4') : -16,
);
$pricemodes = storm_attributes_bydomain('Price mode');
$form['group4']['pricemode'] = array(
'#type' => 'select',
'#title' => t('Price mode'),
'#default_value' => $node->pricemode,
'#options' => array('-' => '-') + $pricemodes['values'],
);
$form['group4']['price'] = array(
'#title' => t('Price'),
'#type' => 'textfield',
'#size' => 15,
'#default_value' => isset($node->price) ? $node->price : NULL,
);
$currencies = storm_attributes_bydomain('Currency');
$form['group4']['currency'] = array(
'#type' => 'select',
'#title' => t('Price currency'),
'#default_value' => $node->currency,
'#options' => array('-' => '-') + $currencies['values'],
);
$form['group5'] = array(
'#type' => 'markup',
'#theme' => 'storm_form_group',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group5') : -15,
);
$options = isset($node->project_nid) ? storm_get_assignment_options($node->organization_nid, $node->project_nid) : storm_get_assignment_options($node->organization_nid);
$form['group5']['assigned_nid'] = array(
'#type' => 'select',
'#title' => t('Assigned to'),
'#options' => $options,
'#default_value' => isset($node->assigned_nid) ? $node->assigned_nid : NULL,
);
$form['group6'] = array(
'#type' => 'markup',
'#theme' => 'storm_form_group',
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'group6') : -14,
);
$form['group6']['billable'] = array(
'#type' => 'checkbox',
'#title' => t('Billable'),
'#default_value' => $node->billable,
'#weight' => 1,
);
$form['group6']['billed'] = array(
'#type' => 'checkbox',
'#title' => t('Billed'),
'#default_value' => isset($node->billed) ? $node->billed : 0,
'#weight' => 2,
);
if ($type->has_body) {
$form['body_field'] = node_body_field($node, $type->body_label, $type->min_word_count);
}
$form['title_old'] = array(
'#type' => 'hidden',
'#default_value' => isset($node->title_old) ? $node->title_old : NULL,
);
return $form;
}
/**
* Implements hook_form_FORM_ID_alter().
*/
function stormticket_form_stormticket_node_form_alter(&$form, &$form_state) {
$form['group3']['#access'] = FALSE;
$form['group4']['#access'] = FALSE;
$form['group5']['#access'] = FALSE;
$form['group6']['#access'] = FALSE;
}
// INSERT / UPDATE FUNCTIONS
function stormticket_insert($node) {
_stormticket_beforesave($node);
db_query("INSERT INTO {stormticket}
(vid, nid, organization_nid, organization_title, project_nid, project_title,
task_nid, task_title, task_stepno, ticketcategory, ticketstatus, ticketpriority,
datebegin, dateend, durationunit, duration, pricemode, price, currency,
assigned_nid, assigned_title, billable, billed)
VALUES
(%d, %d, %d, '%s', %d, '%s',
%d, '%s', '%s', '%s', '%s', '%s',
%d, %d, '%s', %f, '%s', %f, '%s', %d, '%s', %d, %d)",
$node->vid, $node->nid, $node->organization_nid, $node->organization_title, $node->project_nid, $node->project_title,
$node->task_nid, $node->task_title, $node->task_stepno, $node->ticketcategory, $node->ticketstatus, $node->ticketpriority,
$node->datebegin, $node->dateend, $node->durationunit, $node->duration, $node->pricemode, $node->price, $node->currency,
$node->assigned_nid, $node->assigned_title, $node->billable, $node->billed
);
}
function stormticket_update($node) {
$s = "SELECT n.title FROM {node} n INNER JOIN {stormorganization} o ON n.nid=o.nid
WHERE type='stormorganization' AND n.nid=%d";
$r = db_query($s, $node->organization_nid);
$o = db_fetch_object($r);
$node->organization_title = $o->title;
$s = "SELECT n.title, p.organization_title FROM {node} n INNER JOIN {stormproject} p ON n.nid=p.nid
WHERE type='stormproject' AND n.nid=%d";
$r = db_query($s, $node->project_nid);
$p = db_fetch_object($r);
$node->project_title = $p->title;
$s = "SELECT n.title FROM {node} n INNER JOIN {stormtask} t ON n.nid=t.nid WHERE n.type='stormtask' AND n.nid=%d";
$r = db_query($s, $node->task_nid);
$ta = db_fetch_object($r);
$node->task_title = $ta->title;
if ($node->task_nid != $node->task_nid_old) {
module_invoke_all('stormticket_change_hierarchy', $node->nid, $node->organization_nid, $node->organization_title, $node->project_nid, $node->project_title, $node->task_nid, $node->task_title);
}
// if this is a new node or we're adding a new revision,
if ($node->revision) {
stormticket_insert($node);
}
else {
_stormticket_beforesave($node);
db_query("UPDATE {stormticket} SET
organization_nid=%d, organization_title='%s', project_nid=%d, project_title='%s',
task_nid=%d, task_title='%s', task_stepno='%s', ticketcategory='%s', ticketstatus='%s',
ticketpriority='%s', datebegin=%d, dateend=%d, durationunit='%s', duration=%f, pricemode='%s',
price=%f, currency='%s', assigned_nid=%d, assigned_title='%s', billable=%d, billed=%d WHERE vid = %d",
$node->organization_nid, $node->organization_title, $node->project_nid, $node->project_title,
$node->task_nid, $node->task_title, $node->task_stepno, $node->ticketcategory, $node->ticketstatus,
$node->ticketpriority, $node->datebegin, $node->dateend, $node->durationunit, $node->duration, $node->pricemode,
$node->price, $node->currency,
$node->assigned_nid, $node->assigned_title,
$node->billable, $node->billed, $node->vid
);
if ($node->title != $node->title_old) {
module_invoke_all('stormticket_change', $node->nid, $node->title);
}
}
}
function _stormticket_beforesave(&$node) {
$s = "SELECT n.title FROM {node} n INNER JOIN {stormorganization} o ON n.nid=o.nid
WHERE type='stormorganization' AND n.nid=%d";
$r = db_query($s, $node->organization_nid);
$o = db_fetch_object($r);
$node->organization_title = $o->title;
$s = "SELECT n.title, p.organization_title FROM {node} n INNER JOIN {stormproject} p ON n.nid=p.nid
WHERE type='stormproject' AND n.nid=%d";
$r = db_query($s, $node->project_nid);
$p = db_fetch_object($r);
$node->project_title = isset($p->title) ? $p->title : '';
$s = "SELECT title, stepno FROM {node} n INNER JOIN {stormtask} t ON n.nid=t.nid WHERE n.type='stormtask' AND n.nid=%d";
$r = db_query($s, $node->task_nid);
$ta = db_fetch_object($r);
$node->task_title = isset($ta->title) ? $ta->title : '';
$node->task_stepno = isset($ta->stepno) ? $ta->stepno : '';
$assigned = node_load($node->assigned_nid);
$node->assigned_title = isset($assigned->title) ? $assigned->title : '';
// Allow use of comma when inputting numerical values - str_replace with period decimal
$node->duration = str_replace(',', '.', $node->duration);
$node->price = str_replace(',', '.', $node->price);
if (is_array($node->datebegin)) $node->datebegin = _storm_date_to_gmtimestamp($node->datebegin);
if (is_array($node->dateend)) $node->dateend = _storm_date_to_gmtimestamp($node->dateend);
}
function stormticket_nodeapi(&$node, $op, $teaser, $page) {
global $user;
switch ($op) {
case 'prepare':
if ($node->type == 'stormticket' && !isset($node->nid)) {
$category_list = storm_attributes_bydomain('Ticket category');
$node->ticketcategory = $category_list['default'];
$status_list = storm_attributes_bydomain('Ticket status');
$node->ticketstatus = $status_list['default'];
$priority_list = storm_attributes_bydomain('Ticket priority');
$node->ticketpriority = $priority_list['default'];
}
break;
case 'presave':
// Only for tickets comments:
if ($node->type == 'stormticketc') {
$ticket_nid = $node->comment_target_nid;
$node_ticket = node_load($ticket_nid);
// It runs only the first time:
if (is_null($node->field_stormticketc_number[0]['value'])) {
// Runs before computed field field_stormticketc_number assignment:
$count = db_result(db_query("SELECT MAX(c.field_stormticketc_number_value) FROM {content_type_stormticketc} c JOIN {node_comments} n ON (n.cid = c.nid) WHERE n.nid = " . $ticket_nid));
$node->title = '#' . ((empty($count)) ? 1 : $count + 1);
// Checking the ticket data:
$changes = array();
// Title:
if ($node->field_stormticketc_title[0]['value'] != $node_ticket->title) {
$changes['title_old'] = $node_ticket->title;
$node_ticket->title = $node->field_stormticketc_title[0]['value'];
}
// Category:
if ($node->field_stormticketc_category[0]['value'] != $node_ticket->ticketcategory) {
$changes['category_old'] = $node_ticket->ticketcategory;
$node_ticket->ticketcategory = $node->field_stormticketc_category[0]['value'];
}
// Status:
if ($node->field_stormticketc_status[0]['value'] != $node_ticket->ticketstatus) {
$changes['status_old'] = $node_ticket->ticketstatus;
$node_ticket->ticketstatus = $node->field_stormticketc_status[0]['value'];
}
// Priority:
if ($node->field_stormticketc_priority[0]['value'] != $node_ticket->ticketpriority) {
$changes['priority_old'] = $node_ticket->ticketpriority;
$node_ticket->ticketpriority = $node->field_stormticketc_priority[0]['value'];
}
// Asignment:
$ticket_assigned = $node->field_stormticketc_assigned[0]['value'];
if (empty($node_ticket->assigned_nid)) {
if ($ticket_assigned == 'Yes') {
$me = db_fetch_array(db_query('SELECT p.nid, p.fullname FROM {stormperson} p WHERE p.user_uid = ' . $user->uid));
$changes['assigned_old'] = '&nbsp;';
$changes['assigned_new'] = $me['fullname'];
$node_ticket->assigned_nid = $me['nid'];
}
} else {
$assigned = db_result(db_query('SELECT count(*) FROM {stormperson} p LEFT JOIN {stormteam} t ON (t.mnid = p.nid) WHERE (p.nid = ' . $node_ticket->assigned_nid . ' OR t.nid = ' . $node_ticket->assigned_nid . ') AND p.user_uid = ' . $user->uid));
$me = db_fetch_array(db_query('SELECT p.nid, p.fullname FROM {stormperson} p WHERE p.user_uid = ' . $user->uid));
if ($ticket_assigned == 'Yes' && !$assigned) {
$changes['assigned_old'] = db_result(db_query('SELECT n.title FROM {node} n WHERE n.nid = ' . $node_ticket->assigned_nid));
$changes['assigned_new'] = $me['fullname'];
$node_ticket->assigned_nid = $me['nid'];
} elseif ($ticket_assigned == 'No' && $assigned && $node_ticket->assigned_nid == $me['nid']) {
$changes['assigned_old'] = db_result(db_query('SELECT n.title FROM {node} n WHERE n.nid = ' . $node_ticket->assigned_nid));
$changes['assigned_new'] = '&nbsp;';
$node_ticket->assigned_nid = null;
}
}
$node->field_stormticketc_changes[0]['value'] = serialize($changes);
}
// Update, at least, the ticket modification date:
node_save($node_ticket);
// Father node:
# $node->field_stormticketc_father[0]['nid'] = $ticket_nid;
}
break;
case 'delete':
// Only for tickets comments:
if ($node->type == 'stormticketc') {
$ticket_nid = $node->comment_target_nid;
$node_ticket = node_load($ticket_nid);
// Update, at least, the ticket modification date:
node_save($node_ticket);
}
break;
case 'delete revision':
if ($node->type == 'stormticket') {
// Notice that we're matching a single revision based on the node's vid.
db_query('DELETE FROM {stormticket} WHERE vid = %d', $node->vid);
}
break;
}
}
/**
* Before delete a ticket.
*/
function _stormticket_validate_predelete($node) {
$nid = $node->nid;
$items = array();
if (_storm_validate_predelete('stormtimetracking', "s.ticket_nid = $nid")) {
$items[] = '<a href="/timetrackings">' . t('timetrackings') . '</a>';
}
if (_storm_validate_predelete('stormexpense', "s.ticket_nid = $nid")) {
$items[] = '<a href="/expenses">' . t('expenses') . '</a>';
}
$nitems = count($items);
if ($nitems > 0) {
$elements = $items[0];
if ($nitems > 2) {
for ($i = 1; $i < $nitems - 1; $i++) {
$elements .= ', ' . $items[$i];
}
}
if ($nitems > 1) {
$elements .= ' ' . t('and') . ' ' . $items[$nitems - 1];
}
form_set_error('title', t('Impossible to remove due to existing !elements associated to this ticket!', array('!elements' => $elements)));
return FALSE;
}
return TRUE;
}
function stormticket_delete($node) {
// Notice that we're matching all revision, by using the node's nid.
db_query('DELETE FROM {stormticket} WHERE nid = %d', $node->nid);
}
function stormticket_load($node) {
$additions = db_fetch_object(db_query('SELECT * FROM {stormticket} WHERE vid = %d', $node->vid));
$additions->title_old = $node->title;
return $additions;
}
function stormticket_view($node, $teaser = FALSE, $page = FALSE) {
$breadcrumb = array();
$breadcrumb[] = l(t('Home'), '<front>');
$breadcrumb[] = l(t('Tickets'), 'tickets');
drupal_set_breadcrumb($breadcrumb);
return theme('stormticket_view', $node, $teaser, $page);
}
function stormticket_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'stormticket'),
);
}
// ADMIN SETTINGS
function stormticket_admin_settings() {
$form = array();
$form['stormticket_billable_default'] = array(
'#type' => 'checkbox',
'#title' => t('Default Value for billable field.'),
'#default_value' => variable_get('stormticket_billable_default', FALSE),
'#description' => t('When checked, SuiteDesk will set the ticket to billable by default.'),
'#size' => 5,
);
return system_settings_form($form);
}
// INVOICE AUTO ADD HANDLER
function stormticket_storminvoice_auto_add($node, $invoice_nid = NULL) {
if (!module_exists('storminvoice')) {
drupal_set_message(t('This function should only be called from within SuiteDesk Invoice'));
return;
}
elseif ($node->billed) {
drupal_set_message(t('This ticket has already been billed!'));
return;
}
elseif (!$node->billable) {
drupal_set_message(t('This ticket is marked unbillable!'));
return;
}
else {
global $user;
if (!$invoice_nid) {
$new_invoice = new StdClass;
// Code copied with edits from node form
$new_invoice->requestdate = time();
$new_invoice->duedate = $new_invoice->requestdate + (variable_get('storminvoice_payment_days', 30) * 86400);
$new_invoice->number = storminvoice_get_invoice_number($new_invoice->requestdate);
$new_invoice->title = $node->title;
$new_invoice->uid = $user->uid;
$new_invoice->type = 'storminvoice';
// $new_invoice->reference
$new_invoice->organization_nid = $node->organization_nid;
$new_invoice->organization_title = $node->organization_title;
$new_invoice->project_nid = $node->project_nid;
$new_invoice->project_title = $node->project_title;
// $new_invoice->amount
// $new_invoice->tax
// $new_invoice->total
// $new_invoice->totalcustomercurr
// $new_invoice->taxexempt
$new_invoice->src_nid = $node->nid;
$new_invoice->src_vid = $node->vid;
node_save($new_invoice);
$invoice_nid = $new_invoice->nid;
}
else {
$new_invoice = node_load($invoice_nid);
}
$rate_array = array('pricemode_used' => '', 'rate_to_use' => 0);
$rate_array = storminvoice_get_rate($node);
$count = count($new_invoice->items);
$new_invoice->items[$count]->description = storminvoice_get_item_desc($rate_array, $node);
$new_invoice->items[$count]->amount = storminvoice_get_item_amount($rate_array, $node);
// Tax percent simply uses default at the moment
$new_invoice->items[$count]->tax1percent = variable_get('storm_tax1_percent', 20);
// $new_invoice_item->items[$count]->tax1
// $new_invoice_item->items[$count]->total
$new_invoice->items[$count]->src_nid = $node->nid;
$new_invoice->items[$count]->src_vid = $node->vid;
storm_taxation($new_invoice->items[$count]);
storminvoice_update($new_invoice);
}
// Mark task as billed.
db_query("UPDATE {stormticket} SET billed=%d WHERE vid=%d", 1, $node->vid);
return $invoice_nid;
}
/**
* Implementation of hook_token_list().
*/
function stormticket_token_list($type='all') {
$tokens = array();
if (($type == 'node') || ($type == 'all')) {
$tokens['node']['stormticket-organization-nid'] = t('SuiteDesk Ticket: Organization Node ID.');
$tokens['node']['stormticket-organization-title'] = t('SuiteDesk Ticket: Organization Title.');
$tokens['node']['stormticket-project-nid'] = t('SuiteDesk Ticket: Project Node ID.');
$tokens['node']['stormticket-project-title'] = t('SuiteDesk Ticket: Project Title.');
$tokens['node']['stormticket-ticketstatus'] = t('SuiteDesk Ticket: Project Status.');
$tokens['node']['stormticket-ticketcategory'] = t('SuiteDesk Ticket: Ticket Category.');
$tokens['node']['stormticket-ticketpriority'] = t('SuiteDesk Ticket: Ticket Priority.');
$tokens['node']['stormticket-durationunit'] = t('SuiteDesk Ticket: Ticket Duration Unit.');
$tokens['node']['stormticket-duration'] = t('SuiteDesk Ticket: Ticket Duration.');
$tokens['node']['stormticket-datebegin'] = t('SuiteDesk Ticket: Ticket Begin Date.');
$tokens['node']['stormticket-dateend'] = t('SuiteDesk Ticket: Ticket End Date.');
$tokens['node']['stormticket-billable'] = t('SuiteDesk Ticket: Ticket Billable.');
$tokens['node']['stormticket-billed'] = t('SuiteDesk Ticket: Ticket Billed.');
$tokens['node']['stormticket-price'] = t('SuiteDesk Ticket: Ticket Price.');
$tokens['node']['stormticket-pricemode'] = t('SuiteDesk Ticket: Ticket Price Mode.');
if (module_exists('stormperson')) {
// Assignee(s)
$tokens['node']['stormticket-assigned-to-email'] = t('SuiteDesk Ticket: Ticket Assignee(s) Email Address(s).');
$tokens['node']['stormticket-assigned-title'] = t('SuiteDesk Ticket: Ticket Assignee(s) Title(s).');
}
}
return $tokens;
}
/**
* Implementation of hook_token_values().
*/
function stormticket_token_values($type, $object = NULL) {
$values = array();
$node = $object;
if ((($type == 'node') || ($type == 'all')) && ($node->type === 'stormticket')) {
$values['stormticket-organization-nid'] = $node->organization_nid;
$values['stormticket-organization-title'] = $node->organization_title;
$values['stormticket-project-nid'] = $node->project_nid;
$values['stormticket-project-title'] = $node->project_title;
$values['stormticket-ticketstatus'] = $node->ticketstatus;
$values['stormticket-ticketpriority'] = $node->ticketpriority;
$values['stormticket-ticketcategory'] = $node->ticketcategory;
$values['stormticket-durationunit'] = $node->durationunit;
$values['stormticket-duration'] = $node->duration;
$values['stormticket-datebegin'] = format_date($node->datebegin, 'medium', '', variable_get('date_default_timezone', NULL));
$values['stormticket-dateend'] = format_date($node->dateend, 'medium', '', variable_get('date_default_timezone', NULL));
$values['stormticket-price'] = $node->price;
$values['stormticket-pricemode'] = $node->pricemode;
$values['stormticket-billable'] = $node->billable;
$values['stormticket-billed'] = $node->billed;
if (module_exists('stormperson')) {
// Project Assignee(s) e-mail
if ($node->assigned_nid) {
$values['stormticket-assigned-title'] = $node->assigned_title;
$assignees_node = node_load($node->assigned_nid);
// Assigned to one person
if ($assignees_node->type === 'stormperson') {
$values['stormticket-assigned-to-email'] = stormperson_primary_email($assignees_node);
}
// Assigned to a team
else {
$assignees_array = $assignees_node->members_array;
if (!empty($assignees_array)) {
$assignees = array();
foreach ($assignees_array as $nid => $name) {
$assignee = node_load($nid);
$assignees[] = stormperson_primary_email($assignee);
}
$assigned = implode(", ", $assignees);
// Return comma separated list of emails
$values['stormticket-assigned-to-email'] = $assigned;
}
}
}
else {
$values['stormticket-assigned-to-email'] = NULL;
}
}
}
return $values;
}
function stormticket_storm_dashboard_links($type) {
$links = array();
if ($type == 'page' || $type == 'block') {
$links[] = array(
'theme' => 'storm_dashboard_link',
'title' => t('Tickets'),
'icon' => 'stormticket-item',
'path' => 'tickets',
'params' => array(),
'access_arguments' => 'Storm ticket: access',
'node_type' => 'stormticket',
'add_type' => 'stormticket',
'map' => array(),
'weight' => 100,
);
}
return $links;
}