summaryrefslogtreecommitdiff
path: root/js/callbacks/quickedit.php
blob: fda26eae895420420a1568f72d96ab28014b6c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php

define('IN_FS', true);

header('Content-type: text/html; charset=utf-8');

require_once('../../header.php');
global $proj, $fs;

if (Cookie::has('flyspray_userid') && Cookie::has('flyspray_passhash')) {
    $user = new User(Cookie::val('flyspray_userid'));
    $user->check_account_ok();
} else {
    $user = new User(0, $proj);
}

// don't allow anonymous users to access this page at all
if ($user->isAnon()) {
    die();
}
load_translations();

if( !Post::has('csrftoken') ){
	http_response_code(428); # 'Precondition Required'
        die('missingtoken'); 
} elseif( Post::val('csrftoken')==$_SESSION['csrftoken']){
        # ok
} else{ 
	http_response_code(412); # 'Precondition Failed'
        die('wrongtoken');
}

$task = Flyspray::getTaskDetails(Post::val('task_id'));
if (!$user->can_edit_task($task)){
	http_response_code(403); # 'Forbidden'
	die(L('nopermission'));
}

# check field for update against allowed dbfields for quickedit.
# maybe FUTURE: add (dynamic read from database) allowed CUSTOM FIELDS checks for the project and user
# (if there is urgent request for implementing custom fields into Flyspray
# and using of tag-feature isn't enough to accomplish - like numbers/dates/timestamps as custom fields)
$allowedFields=array(
	'due_date',
	'item_status',
	'percent_complete',
	'task_type',
	'product_category',
	'operating_system',
	'task_severity',
	'task_priority',
	'product_version',
	'closedby_version'
);
if ($proj->prefs['use_effort_tracking'] && $user->perms('track_effort')){
	$allowedFields[]='estimated_effort';
}

if (!in_array(Post::val('name'), $allowedFields)){
	http_response_code(403);
	die(L('invalidfield'));
}

$value = Post::val('value');

# check if user is not sending manipulated invalid values
switch(Post::val('name')){
	case 'due_date':
		$value = Flyspray::strtotime(Post::val('value'));
		$value = intval($value);
		break;

	case 'estimated_effort':
		$value = effort::editStringToSeconds(Post::val('value'), $proj->prefs['hours_per_manday'], $proj->prefs['estimated_effort_format']);
		$value = intval($value);
		break;

	case 'task_severity':
		if(!preg_match("/^[1-5]$/", $value)){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'task_priority':
		if(!preg_match("/^[1-6]$/", $value)){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'percent_complete':
		if(!is_numeric($value) || $value<0 || $value>100){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'item_status':
		$res=$db->query('SELECT * FROM {list_status} WHERE (project_id=0 OR project_id=?) AND show_in_list=1 AND status_id=?', array($task['project_id'], $value) );
		if($db->countRows($res)<1){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'task_type':
		$res=$db->query('SELECT * FROM {list_tasktype} WHERE (project_id=0 OR project_id=?) AND show_in_list=1 AND tasktype_id=?', array($task['project_id'], $value) );
		if($db->countRows($res)<1){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'operating_system':
		$res=$db->query('SELECT * FROM {list_os} WHERE (project_id=0 OR project_id=?) AND show_in_list=1 AND os_id=?', array($task['project_id'], $value) );
		if($db->countRows($res)<1){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'product_category':
		$res=$db->query('SELECT * FROM {list_category} WHERE (project_id=0 OR project_id=?) AND show_in_list=1 AND category_id=?', array($task['project_id'], $value) );
		if($db->countRows($res)<1){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;

	case 'product_version':
		$res=$db->query('SELECT * FROM {list_version} WHERE (project_id=0 OR project_id=?) AND show_in_list=1 AND version_id=? AND version_tense=2', array($task['project_id'], $value) );
		if($db->countRows($res)<1){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;
	case 'closedby_version':
		$res=$db->query('SELECT * FROM {list_version} WHERE (project_id=0 OR project_id=?) AND show_in_list=1 AND version_id=? AND version_tense=3', array($task['project_id'], $value) );
		if($db->countRows($res)<1){
			http_response_code(403);
			die(L('invalidvalue'));
		}
		break;
	default:
		http_response_code(403);
		die(L('invalidfield'));
		break;
}

$oldvalue = $task[Post::val('name')];

$time=time();
$sql = $db->query("UPDATE {tasks} SET ".Post::val('name')." = ?,last_edited_time = ? WHERE task_id = ?", array($value, $time, Post::val('task_id')));

# load $proj again of task with correct project_id for getting active notification types in notification class
$proj= new Project($task['project_id']);

// Log the changed field in task history
Flyspray::logEvent($task['task_id'], 3, $value, $oldvalue, Post::val('name'), $time);

// Get the details of the task we just updated to generate the changed-task message
$new_details_full = Flyspray::getTaskDetails($task['task_id']);
$changes = Flyspray::compare_tasks($task, $new_details_full);
if (count($changes) > 0) {
    $notify = new Notifications;
    $notify->create(NOTIFY_TASK_CHANGED, $task['task_id'], $changes, null, NOTIFY_BOTH, $proj->prefs['lang_code']);
}

?>