]>
src.bluestatic.org Git - isso.git/blob - Api.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright (c)2005-2008 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
23 * Abstract Datamanger API (api.php)
28 if (!defined('REQ_AUTO'))
41 * Auto-increasing value
43 define('REQ_AUTO', -1);
46 * Set by a cusotm set_*() function
51 * Index for cleaning type
56 * Index for requirement type
64 * Abstract class that is used as an API base for most common database interaction
65 * schemes. Creates a simple structure that holds data and can update, delete, and
68 * Life-cycle of a new object:
69 * 1. $o = new SubApi();
70 * 2. $o->set('foo', 'abc');
71 * 3. $o->set('test', 45);
72 * 4. try { $o->insert(); <other actions that depend on the saved record> } catch (ApiException $e) {}
75 * @copyright Copyright (c)2005 - 2008, Blue Static
82 * Fields: used for verification and sanitization
83 * NAME => array(TYPE, REQUIRED)
86 protected $fields = array();
89 * The table name the API maps objects for
92 protected $table = '___UNDEFINED___';
95 * The database table prefix
98 protected $prefix = '';
101 * Values array: sanitized and validated field values
104 public $values = array();
107 * Fields that were set by the client
110 private $setfields = array();
116 protected $condition = '';
119 * The object table row; a fetched row that represents this instance
122 public $record = array();
125 * Insert ID from the insert() command
128 public $insertid = 0;
131 * Error queue that builds up errors
134 private $exception = null;
139 public function __construct()
141 if (!BSApp
::$input instanceof BSInput
)
143 throw new Exception('BSApp::$input is not an instance of BSInput');
145 if (!BSApp
::$db instanceof BSDb
)
147 throw new Exception('BSApp::$db is not an instance of BSDb');
152 * Adds an error into the error queue that is then hit
154 * @param Exception Error message
156 protected function _error(Exception
$e)
158 if ($this->exception
== null)
160 $this->exception
= new ApiException();
162 $this->exception
->addException($e);
166 * This simply throws the ApiException if it exists, which inside holds
167 * all of the individual and specific errors
169 protected function _processErrorQueue()
171 if ($this->exception
)
173 throw $this->exception
;
178 * Sets an array of data into the API, ignoring things in $exclude. Keys
179 * in the array that don't exist in the API will be ignored.
181 * @param array A dictionary of field names and values to set
182 * @param array Array of keys to exclude
184 public function setArray(Array $data, $exclude = array())
186 foreach ($data as $key => $value)
188 if (in_array($key, $exclude) || !isset($this->fields
[$key]))
192 $this->set($key, $value);
197 * Resets the API object to an initial state. This will NOT clear the primary (REQ_AUTO)
200 public function reset()
202 foreach ($this->fields
as $field => $settings)
204 if ($settings[F_REQ
] == REQ_AUTO
)
207 $savevalue = $this->fetchValue($field);
208 $savevalue = ($savevalue ? $savevalue : $this->insertid
);
213 $this->setfields
= array();
214 $this->values
= array();
215 $this->condition
= '';
217 $this->exception
= null;
219 $this->set($savename, $savevalue);
223 * Sets a value, sanitizes it, and validates it
225 * @param string Field name
227 * @param bool Do clean?
228 * @param bool Do validation?
230 public function set($field, $value, $doclean = true, $dovalidate = true)
232 if (!isset($this->fields
["$field"]))
234 throw new Exception('Field "' . $field . '" is not valid');
237 $this->values["$field"] = ($doclean ? BSApp
::$input->clean($value, $this->fields
["$field"][F_TYPE]) : $value);
239 $this->setfields["$field"] = $field;
241 if ($dovalidate && method_exists($this, "validate_$field"))
243 $this->{"validate_$field"}($field);
248 * Sets the condition to use in the WHERE clause; if not passed, then
249 * it calculates it from the REQ_AUTO field
251 * @param mixed String with WHERE condition; array of fields to use for WHERE builder
253 public function setCondition($condition = null)
255 if (is_array($condition) && sizeof($condition) > 0)
257 $this->condition = '';
259 foreach ($condition as $field)
261 if (!$this->values["$field"])
263 throw new Exception('The specified field "' . $field . '" for the condition could not be found as it is not set');
266 $condbits[] = "$field = " . $this->_prepareFieldForSql($field);
268 $this->condition
= implode(' AND ', $condbits);
272 $this->condition
= $condition;
276 foreach ($this->fields
as $name => $options)
278 if ($options[F_REQ
] == REQ_AUTO
)
280 if (!$this->values
["$name"])
282 throw new Exception('Cannot determine condition from the REQ_AUTO field because it is not set');
285 $this->condition = "$name = " . $this->_prepareFieldForSql($name);
289 if (!$this->condition)
291 throw new Exception('No REQ_AUTO fields are present and therefore the condition cannot be created');
297 * Fetches a record based on the condition
299 * @param bool Run pre_fetch()?
300 * @param bool Run post_fetch()?
302 * @return boolean Whether or not the row was successfully fetched
304 public function fetch($doPre = true, $doPost = true)
306 if (!$this->condition)
308 $this->setCondition();
311 // reset the error queue due to any validation errors caused by fetchable fields
312 $this->errors = null;
314 $this->_runActionMethod('pre_fetch', $doPre);
316 $result = BSApp::$db->queryFirst("SELECT
* FROM {$this
->prefix
}{$this
->table
} WHERE {$this
->condition
}");
322 $this->_runActionMethod('post_fetch', $doPost);
324 $this->record = $result;
330 * Inserts a record in the database
332 * @param bool Run pre_insert()?
333 * @param bool Run post_insert()?
335 public function insert($doPre = true, $doPost = true)
337 $this->_verifyRequired();
338 $this->_processErrorQueue();
340 $this->_runActionMethod('pre_insert', $doPre);
342 $fields = $values = array();
343 foreach ($this->setfields as $field)
346 $values[] = $this->_prepareFieldForSql($field);
349 BSApp::$db->query("INSERT INTO {$this
->prefix
}{$this
->table
} (" . implode(',', $fields) . ") VALUES (" . implode(',', $values) . ")");
351 if (BSApp::$db instanceof BSDbPostgreSql)
353 foreach ($this->fields as $field => $info)
355 if ($info[F_REQ] == REQ_AUTO)
362 $this->insertid = BSApp::$db->insertId($this->prefix . $this->table, $autofield);
366 $this->insertid = BSApp::$db->insertId();
369 $this->_runActionMethod('post_insert', $doPost);
373 * Updates a record in the database using the data in $vaues
375 * @param bool Run pre_update()?
376 * @param bool Run post_update()?
378 public function update($doPre = true, $doPost = true)
380 if (!$this->condition)
382 $this->setCondition();
385 $this->_processErrorQueue();
387 $this->_runActionMethod('pre_update', $doPre);
389 foreach ($this->setfields as $field)
391 $updates[] = "$field = " . $this->_prepareFieldForSql($field);
393 $updates = implode(', ', $updates);
395 BSApp::$db->query("UPDATE {$this
->prefix
}{$this
->table
} SET
$updates WHERE {$this
->condition
}");
397 $this->_runActionMethod('post_update', $doPost);
403 * @param bool Run pre_delete()?
404 * @param bool Run post_delete()?
406 public function delete($doPre = true, $doPost = true)
408 if (!$this->condition)
410 $this->setCondition();
415 $this->_runActionMethod('pre_delete', $doPre);
417 BSApp::$db->query("DELETE FROM {$this
->prefix
}{$this
->table
} WHERE {$this
->condition
}");
419 $this->_runActionMethod('post_delete', $doPost);
423 * Verifies that all required fields are set
425 protected function _verifyRequired()
427 foreach ($this->fields as $name => $options)
429 if ($options[F_REQ] == REQ_YES)
431 if (!isset($this->values["$name"]))
433 $this->_error(new FieldException(sprintf(_('The required field "%1$s" was not set'), $name), $name));
436 else if ($options[F_REQ
] == REQ_SET
)
438 $this->{"set_$name"}();
444 * Runs a pre- or post-action method for database commands
446 * @param string Action to run
447 * @param bool Actually run it?
449 protected function _runActionMethod($method, $doRun)
451 if (!$doRun || !method_exists($this, $method))
460 * Prepares a value for use in a SQL query; it encases and escapes
461 * strings and string-like values
463 * @param string Field name
465 * @return string Prepared value entry
467 protected function _prepareFieldForSql($name)
469 $type = $this->fields
["$name"][F_TYPE];
471 if ($type == TYPE_NONE || $type == TYPE_STR || $type == TYPE_STRUN)
473 return "'" . BSApp::$db->escapeString($this->values["$name"]) . "'";
475 else if ($type == TYPE_BOOL)
477 return ($this->values["$name"] == true ? "'1'" : "'0'");
479 else if ($type == TYPE_BIN
)
481 return "'" . BSApp
::$db->escapeBinary($this->values
["$name"]) . "'";
485 return $this->values["$name"];
490 * Determines the value of a field from Api->record[], Api->values[] (in that order)
492 * @param string The field ID to determine for
496 public function fetchValue($field)
498 if ($this->record[$field])
500 return $this->record[$field];
502 else if ($this->values[$field])
504 return $this->values[$field];
511 * Verify field: not a zero value
513 protected function _verifyIsNotZero($field)
515 if ($this->values[$field] == 0)
517 $this->_error(new FieldException(sprintf(_('The field
"%1$s" cannot be zero'), $field), $field));
525 * Verify field: not empty
527 protected function _verifyIsNotEmpty($field)
529 if (empty($this->values[$field]))
531 $this->_error(new FieldException(sprintf(_('The field "%
1$s" cannot be
empty'), $field), $field));
539 * Verify field: unique
541 protected function _verifyIsNotUnique($field)
543 $res = BSApp::$db->queryFirst("SELECT $field FROM {$this->prefix}{$this->table} WHERE $field = " . $this->_prepareFieldForSql($field) . (empty($this->condition) ? "" : " AND !({$this->condition})"));
546 $this->_error(new FieldException(sprintf(_('The
"%1$s" field must contain a unique value'), $field), $field));
557 * This class is an exception container that can be used to store a series
558 * of exceptions that can be thrown as one
561 * @copyright Copyright (c)2005 - 2008, Blue Static
565 class ApiException extends Exception
568 * Array of exceptions
571 private $exceptions = array();
576 public function __construct()
578 parent::__construct(_('An error occurred while processing the API data. Errors: '));
582 * Adds an exception to the collection
584 * @param Exception $e
586 public function addException(Exception $e)
588 $this->exceptions[] = $e;
589 $this->message .= ' (' . sizeof($this->exceptions) . ') ' . $e->getMessage();
593 * Returns an array of all the exceptions in the collection
597 public function getExceptions()
599 return $this->exceptions;
606 * This exception represents a problem with an API field
609 * @copyright Copyright (c)2005 - 2008, Blue Static
613 class FieldException extends Exception
616 * The name of the erroring field
622 * Constructor: create a new exception
624 public function __construct($error, $field)
626 $this->field = $field;
627 parent::__construct($error);
631 * Returns the name of the field the exception is for
635 public function getField()