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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
|
<?php
/**
* FusionForge trackers
*
* Copyright 2004, Anthony J. Pugliese
* Copyright 2009, Roland Mas
*
* This file is part of FusionForge. FusionForge is free software;
* you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software
* Foundation; either version 2 of the Licence, or (at your option)
* any later version.
*
* FusionForge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with FusionForge; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once $gfcommon.'include/Error.class.php';
define('ARTIFACT_EXTRAFIELD_FILTER_INT','1,2,3,5,7');
define('ARTIFACT_EXTRAFIELDTYPE_SELECT',1);
define('ARTIFACT_EXTRAFIELDTYPE_CHECKBOX',2);
define('ARTIFACT_EXTRAFIELDTYPE_RADIO',3);
define('ARTIFACT_EXTRAFIELDTYPE_TEXT',4);
define('ARTIFACT_EXTRAFIELDTYPE_MULTISELECT',5);
define('ARTIFACT_EXTRAFIELDTYPE_TEXTAREA',6);
define('ARTIFACT_EXTRAFIELDTYPE_STATUS',7);
//define('ARTIFACT_EXTRAFIELDTYPE_ASSIGNEE',8);
define('ARTIFACT_EXTRAFIELDTYPE_RELATION',9);
define('ARTIFACT_EXTRAFIELDTYPE_INTEGER',10);
/* reserved for aljeux extension, for merge into FusionForge */
define('ARTIFACT_EXTRAFIELDTYPE_FORMULA',11);
/* reserved for Evolvis extension, for merge into FusionForge */
define('ARTIFACT_EXTRAFIELDTYPE_DATETIME',12);
class ArtifactExtraField extends Error {
/**
* The artifact type object.
*
* @var object $ArtifactType.
*/
var $ArtifactType; //object
/**
* Array of artifact data.
*
* @var array $data_array.
*/
var $data_array;
/**
* __construct - Constructor
* @param $ArtifactType
* @param bool $data
*/
function __construct(&$ArtifactType, $data=false) {
$this->Error();
//was ArtifactType legit?
if (!$ArtifactType || !is_object($ArtifactType)) {
$this->setError(_('Invalid Artifact Type'));
return;
}
//did ArtifactType have an error?
if ($ArtifactType->isError()) {
$this->setError('ArtifactExtraField: '.$ArtifactType->getErrorMessage());
return;
}
$this->ArtifactType =& $ArtifactType;
if ($data) {
if (is_array($data)) {
$this->data_array =& $data;
} else {
$this->fetchData($data);
}
}
}
/**
* create - create a row in the table that stores box names for a
* a tracker. This function is only used to create rows for boxes
* configured by the admin.
*
* @param string $name Name of the extra field.
* @param int $field_type The type of field - radio, select, text, textarea
* @param int $attribute1 For text (size) and textarea (rows)
* @param int $attribute2 For text (maxlength) and textarea (cols)
* @param int $is_required True or false whether this is a required field or not.
* @param string $alias Alias for this extra field (optional)
* @return bool true on success / false on failure.
*/
function create($name,$field_type,$attribute1,$attribute2,$is_required=0,$alias='') {
//
// data validation
//
if (!$name) {
$this->setError(_('a field name is required'));
return false;
}
if (!$field_type) {
$this->setError(_('Type of custom field not selected'));
return false;
}
if (!forge_check_perm ('tracker_admin', $this->ArtifactType->Group->getID())) {
$this->setPermissionDeniedError();
return false;
}
$res = db_query_params ('SELECT field_name FROM artifact_extra_field_list WHERE field_name=$1 AND group_artifact_id=$2',
array($name,
$this->ArtifactType->getID()));
if (db_numrows($res) > 0) {
$this->setError(_('Field name already exists'));
return false;
}
if ($field_type == ARTIFACT_EXTRAFIELDTYPE_TEXT || $field_type == ARTIFACT_EXTRAFIELDTYPE_INTEGER) {
if (!$attribute1 || !$attribute2 || $attribute2 < $attribute1) {
$this->setError(_('Invalid size/maxlength for text field'));
return false;
}
}
if ($field_type == ARTIFACT_EXTRAFIELDTYPE_TEXTAREA) {
if (!$attribute1 || !$attribute2) {
$this->setError(_('Invalid rows/cols for textarea field'));
return false;
}
} elseif ($field_type == ARTIFACT_EXTRAFIELDTYPE_STATUS) {
if ($this->ArtifactType->getCustomStatusField()) {
$this->setError(_('This Tracker already uses custom statuses'));
return false;
}
}
if ($is_required) {
$is_required=1;
} else {
$is_required=0;
}
if (!($alias = $this->generateAlias($alias,$name))) {
return false;
}
db_begin();
$result = db_query_params ('INSERT INTO artifact_extra_field_list (group_artifact_id,field_name,field_type,attribute1,attribute2,is_required,alias)
VALUES ($1,$2,$3,$4,$5,$6,$7)',
array ($this->ArtifactType->getID(),
htmlspecialchars($name),
$field_type,
$attribute1,
$attribute2,
$is_required,
$alias));
if ($result && db_affected_rows($result) > 0) {
$this->clearError();
$id=db_insertid($result,'artifact_extra_field_list','extra_field_id');
//
// Now set up our internal data structures
//
if (!$this->fetchData($id)) {
db_rollback();
return false;
}
if ($field_type == ARTIFACT_EXTRAFIELDTYPE_STATUS) {
if (!$this->ArtifactType->setCustomStatusField($id)) {
db_rollback();
return false;
} else {
//
// Must insert some default statuses for each artifact
//
$ao = new ArtifactExtraFieldElement($this);
if (!$ao || !is_object($ao)) {
$feedback .= 'Unable to create ArtifactExtraFieldElement Object';
db_rollback();
return false;
} else {
if (!$ao->create('Open', '1')) {
$feedback .= _('Insert Error')._(': ').$ao->getErrorMessage();
$ao->clearError();
db_rollback();
return false;
}
if (!$ao->create('Closed', '2')) {
$feedback .= _('Insert Error')._(': ').$ao->getErrorMessage();
$ao->clearError();
db_rollback();
return false;
}
}
}
}
if (strstr(ARTIFACT_EXTRAFIELD_FILTER_INT,$field_type) !== false) {
//
// Must insert some default 100 rows for the data table so None queries will work right
//
$resdefault = db_query_params ('INSERT INTO artifact_extra_field_data(artifact_id,field_data,extra_field_id)
SELECT artifact_id,100,$1 FROM artifact WHERE group_artifact_id=$2',
array ($id,
$this->ArtifactType->getID())) ;
if (!$resdefault) {
echo db_error();
}
}
db_commit();
return $id;
} else {
$this->setError(db_error());
db_rollback();
return false;
}
}
/**
* fetchData - re-fetch the data for this ArtifactExtraField from the database.
*
* @param int $id ID of the Box.
* @return boolean success.
*/
function fetchData($id) {
$this->id=$id;
$res = db_query_params ('SELECT * FROM artifact_extra_field_list WHERE extra_field_id=$1',
array ($id)) ;
if (!$res || db_numrows($res) < 1) {
$this->setError(_('Invalid ArtifactExtraField ID'));
return false;
}
$this->data_array = db_fetch_array($res);
db_free_result($res);
return true;
}
/**
* getArtifactType - get the ArtifactType Object this ArtifactExtraField is associated with.
*
* @return object ArtifactType.
*/
function &getArtifactType() {
return $this->ArtifactType;
}
/**
* getID - get this ArtifactExtraField ID.
*
* @return int The id #.
*/
function getID() {
return $this->data_array['extra_field_id'];
}
/**
* getName - get the name.
*
* @return string The name.
*/
function getName() {
return $this->data_array['field_name'];
}
/**
* getAttribute1 - get the attribute1 field.
*
* @return int The first attribute.
*/
function getAttribute1() {
return $this->data_array['attribute1'];
}
/**
* getAttribute2 - get the attribute2 field.
*
* @return int The second attribute.
*/
function getAttribute2() {
return $this->data_array['attribute2'];
}
/**
* getType - the type of field.
*
* @return int type.
*/
function getType() {
return $this->data_array['field_type'];
}
/**
* getTypeName - the name of type of field.
*
* @return string type.
*/
function getTypeName() {
$arr = $this->getAvailableTypes();
return $arr[$this->data_array['field_type']];
}
/**
* isRequired - whether this field is required or not.
*
* @return boolean required.
*/
function isRequired() {
return $this->data_array['is_required'];
}
/**
* getAvailableTypes - the types of text fields and their names available.
*
* @return array types.
*/
static function getAvailableTypes() {
return array(
ARTIFACT_EXTRAFIELDTYPE_SELECT => _('Select Box'),
ARTIFACT_EXTRAFIELDTYPE_CHECKBOX => _('Check Box'),
ARTIFACT_EXTRAFIELDTYPE_RADIO => _('Radio Buttons'),
ARTIFACT_EXTRAFIELDTYPE_TEXT => _('Text Field'),
ARTIFACT_EXTRAFIELDTYPE_MULTISELECT => _('Multi-Select Box'),
ARTIFACT_EXTRAFIELDTYPE_TEXTAREA => _('Text Area'),
ARTIFACT_EXTRAFIELDTYPE_STATUS => _('Status'),
ARTIFACT_EXTRAFIELDTYPE_RELATION => _('Relation between artifacts'),
ARTIFACT_EXTRAFIELDTYPE_INTEGER => _('Integer')
);
}
/**
* getAlias - the alias that is used for this field
*
* @return string alias
*/
function getAlias() {
return $this->data_array['alias'];
}
/**
* getAvailableValues - Get the list of available values for this extra field
*
* @return array
*/
function getAvailableValues() {
$res = db_query_params ('SELECT * FROM artifact_extra_field_elements WHERE extra_field_id=$1',
array ($this->getID()));
$return = array();
while ($row = db_fetch_array($res)) {
$return[] = $row;
}
return $return;
}
/**
* update - update a row in the table used to store box names
* for a tracker. This function is only to update rowsf
* for boxes configured by
* the admin.
*
* @param string $name Name of the field.
* @param int $attribute1 For text (size) and textarea (rows)
* @param int $attribute2 For text (maxlength) and textarea (cols)
* @param int $is_required True or false whether this is a required field or not.
* @param string $alias Alias for this field
* @return bool success.
*/
function update($name,$attribute1,$attribute2,$is_required=0,$alias="") {
if (!forge_check_perm ('tracker_admin', $this->ArtifactType->Group->getID())) {
$this->setPermissionDeniedError();
return false;
}
//
// data validation
//
if (!$name) {
$this->setError(_('a field name is required'));
return false;
}
$res = db_query_params ('SELECT field_name FROM artifact_extra_field_list
WHERE field_name=$1 AND group_artifact_id=$2 AND extra_field_id !=$3',
array($name,
$this->ArtifactType->getID(),
$this->getID()));
if (db_numrows($res) > 0) {
$this->setError(_('Field name already exists'));
return false;
}
if ($is_required) {
$is_required=1;
} else {
$is_required=0;
}
if (!($alias = $this->generateAlias($alias,$name))) {
return false;
}
$result = db_query_params ('UPDATE artifact_extra_field_list
SET field_name=$1,
attribute1=$2,
attribute2=$3,
is_required=$4,
alias=$5
WHERE extra_field_id=$6
AND group_artifact_id=$7',
array (htmlspecialchars($name),
$attribute1,
$attribute2,
$is_required,
$alias,
$this->getID(),
$this->ArtifactType->getID())) ;
if ($result && db_affected_rows($result) > 0) {
return true;
} else {
$this->setError(db_error());
return false;
}
}
/**
*
*
*/
function delete($sure, $really_sure) {
if (!$sure || !$really_sure) {
$this->setMissingParamsError(_('Please tick all checkboxes.'));
return false;
}
if (!forge_check_perm ('tracker_admin', $this->ArtifactType->Group->getID())) {
$this->setPermissionDeniedError();
return false;
}
db_begin();
$result = db_query_params ('DELETE FROM artifact_extra_field_data WHERE extra_field_id=$1',
array ($this->getID())) ;
if ($result) {
$result = db_query_params ('DELETE FROM artifact_extra_field_elements WHERE extra_field_id=$1',
array ($this->getID())) ;
if ($result) {
$result = db_query_params ('DELETE FROM artifact_extra_field_list WHERE extra_field_id=$1',
array ($this->getID())) ;
if ($result) {
if ($this->getType() == ARTIFACT_EXTRAFIELDTYPE_STATUS) {
if (!$this->ArtifactType->setCustomStatusField(0)) {
db_rollback();
return false;
}
}
db_commit();
return true;
} else {
$this->setError(db_error());
db_rollback();
return false;
}
} else {
$this->setError(db_error());
db_rollback();
return false;
}
} else {
$this->setError(db_error());
db_rollback();
return false;
}
}
/**
* Validate an alias.
* Note that this function does not check for conflicts.
*
* @param string alias - alias to validate
* @return bool true if alias is valid, false otherwise and it sets the corresponding error
*/
function validateAlias($alias) {
// these are reserved alias names
static $reserved_alias = array(
"project",
"priority",
"assigned_to",
"submitted_by",
"open_date",
"close_date",
"summary",
"details",
"last_modified_date"
);
if (strlen($alias) == 0) return true; // empty alias
// invalid chars?
if (preg_match("/[^[:alnum:]_@\\-]/", $alias)) {
$this->setError(_('The alias contains invalid characters. Only letters, numbers, hypens (-), at sign (@) and underscores (_) allowed.'));
return false;
} elseif (in_array($alias, $reserved_alias)) { // alias is reserved?
$this->setError(sprintf(_('ā%sā is a reserved alias. Please provide another name.'), $alias));
return false;
}
return true;
}
/**
* Generate an alias for this field. The alias can be entered by the user or
* be generated automatically from the name of the field.
*
* @param string $alias Alias entered by the user
* @param string $name Name of the field entered by the user (it'll be used when $alias is empty)
* @return string
*/
function generateAlias($alias, $name) {
$alias = strtolower(trim($alias));
if (strlen($alias) == 0) { // no alias was entered, generate alias from $name
$name = strtolower(trim($name));
// Convert the original name to a valid alias (i.e., if the extra field is
// called "Quality test", make an alias called "quality_test").
// The alias can be seen as a "unix name" for this field
$alias = preg_replace("/ /", "_", $name);
$alias = preg_replace("/[^[:alnum:]_@]/", "", $alias);
$alias = strtolower($alias);
} elseif (!$this->validateAlias($alias)) {
// alias is invalid...
return false;
}
// check if the name conflicts with another alias in the same artifact type
// in that case append a serial number to the alias
$serial = 1;
$conflict = false;
do {
if ($this->data_array['extra_field_id']) {
$res = db_query_params ('SELECT * FROM artifact_extra_field_list
WHERE LOWER (alias)=$1
AND group_artifact_id=$2
AND extra_field_id <> $3',
array ($alias,
$this->ArtifactType->getID(),
$this->data_array['extra_field_id'])) ;
} else {
$res = db_query_params ('SELECT * FROM artifact_extra_field_list WHERE LOWER (alias)=$1 AND group_artifact_id=$2',
array ($alias,
$this->ArtifactType->getID()));
}
if (!$res) {
$this->setError(db_error());
return false;
} elseif (db_numrows($res) > 0) { // found another field with the same alias
$conflict = true;
$serial++;
$alias = $alias.$serial;
} else {
$conflict = false;
}
} while ($conflict);
// at this point, the alias is valid and unique
return $alias;
}
function updateOrder($element_id, $order) {
$result=db_query_params ('UPDATE artifact_extra_field_elements
SET element_pos= $1
WHERE element_id=$2',
array($order,
$element_id));
if ($result && db_affected_rows($result) > 0) {
return true;
}
else {
$this->setError(db_error());
return false;
}
}
function reorderValues($element_id, $new_pos) {
$res = db_query_params ('SELECT element_id FROM artifact_extra_field_elements WHERE extra_field_id=$1 ORDER BY element_pos ASC, element_id ASC',
array($this->getID()));
$max = db_numrows($res);
if ($new_pos < 1 || $new_pos > $max) {
$this->setError(_('Out of range value'));
return false;
}
$i = 1;
$data = array();
while ($i <= $max) {
if ($i == $new_pos) {
$data[] = $element_id;
$i++;
}
if (($row = db_fetch_array($res)) && $row['element_id'] != $element_id) {
$data[] = $row['element_id'];
$i++;
}
}
for ($i = 0; $i < count($data); $i++) {
if (! $this->updateOrder($data[$i], $i + 1))
return false;
}
return true;
}
function alphaorderValues() {
$res = db_query_params ('SELECT element_id FROM artifact_extra_field_elements WHERE extra_field_id=$1 ORDER BY element_name ASC',
array($this->getID()));
$i = 1;
while ($row = db_fetch_array($res)) {
if (! $this->updateOrder($row['element_id'], $i))
return false;
$i++;
}
return true;
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|