123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- <?php
- class DB_DataObject_Links
- {
-
- public $do = false;
-
- public $load = 'all';
-
- public $scanf = false;
-
- public $printf = false;
-
- public $cached = false;
-
- public $apply = true;
-
-
- public $links;
-
- public function __construct($do, $cfg = array())
- {
-
- $this->do = $do;
- foreach ($cfg as $k => $v) {
- $this->$k = $v;
- }
- }
-
- public function link($field, $args = array())
- {
- $info = $this->linkInfo($field);
- if (!$info) {
- $this->do->raiseError(
- "getLink:Could not find link for row $field",
- DB_DATAOBJECT_ERROR_INVALIDCONFIG
- );
- return false;
- }
- $field = $info[2];
- if (empty($args)) {
- if (!isset($this->do->$field)) {
- return $info[0];
- }
- $ret = $this->getLink($field);
-
- return ($ret === 0) ? $info[0] : $ret;
- }
- $assign = is_array($args) ? $args[0] : $args;
-
- if (!is_a($assign, 'DB_DataObject')) {
- if (is_numeric($assign) && is_integer($assign * 1)) {
- if ($assign > 0) {
- if (!$info) {
- return false;
- }
-
- if (!$info[0]->get($info[1], $assign)) {
- return false;
- }
- }
- $this->do->$field = $assign;
- return true;
- }
- return false;
- }
-
- $this->do->$field = $assign->{$info[1]};
- return true;
- }
-
- public function linkInfo($field)
- {
- if (is_array($field)) {
- if (count($field) == 3) {
-
-
- return array(
- $field[1],
- $field[2],
- $field[0]
- );
- }
- list($table, $link) = explode(':', $field[1]);
- return array(
- $this->do->factory($table),
- $link,
- $field[0]
- );
- }
-
- $links = $this->do->links();
- if (empty($links) || !is_array($links)) {
- return false;
- }
- if (!isset($links[$field])) {
- return false;
- }
- list($table, $link) = explode(':', $links[$field]);
-
- if ($p = strpos($field, ".")) {
- $field = substr($field, 0, $p);
- }
- return array(
- $this->do->factory($table),
- $link,
- $field
- );
- }
-
- public function getLink($field, $table = false, $link = '')
- {
- static $cache = array();
-
- if ($table == false) {
- $info = $this->linkInfo($field);
- if ($info) {
- return $this->getLink($field, $info[0], $link === false ? $info[1] : $link);
- }
-
-
- if (!($p = strpos($field, '_'))) {
- return false;
- }
- $table = substr($field, 0, $p);
- return $this->getLink($field, $table);
- }
- $tn = is_string($table) ? $table : $table->tableName();
- if (!isset($this->do->$field)) {
- $this->do->raiseError("getLink: row not set $field", DB_DATAOBJECT_ERROR_NODATA);
- return false;
- }
-
- if (empty($this->do->$field) || $this->do->$field < 0) {
- return 0;
- }
- if ($this->cached && isset($cache[$tn . ':' . $link . ':' . $this->do->$field])) {
- return $cache[$tn . ':' . $link . ':' . $this->do->$field];
- }
- $obj = is_string($table) ? $this->do->factory($tn) : $table;;
- if (!is_a($obj, 'DB_DataObject')) {
- $this->do->raiseError(
- "getLink:Could not find class for row $field, table $tn",
- DB_DATAOBJECT_ERROR_INVALIDCONFIG
- );
- return false;
- }
-
- $ret = false;
- if ($link) {
- if ($obj->get($link, $this->do->$field)) {
- $ret = $obj;
- }
-
- } elseif ($obj->get($this->do->$field)) {
- $ret = $obj;
- }
- if ($this->cached) {
- $cache[$tn . ':' . $link . ':' . $this->do->$field] = $ret;
- }
- return $ret;
- }
-
- public function applyLinks($format = '_%s')
- {
-
- if ($this->do->_link_loaded) {
- return true;
- }
- $this->do->_link_loaded = false;
- $cols = $this->do->table();
- $links = $this->do->links();
- $loaded = array();
- if ($links) {
- foreach ($links as $key => $match) {
- list($table, $link) = explode(':', $match);
- $k = sprintf($format, str_replace('.', '_', $key));
-
- if ($p = strpos($key, '.')) {
- $key = substr($key, 0, $p);
- }
- $this->do->$k = $this->getLink($key, $table, $link);
- if (is_object($this->do->$k)) {
- $loaded[] = $k;
- }
- }
- $this->do->_link_loaded = $loaded;
- return true;
- }
-
-
-
-
- if (!is_null($links)) {
- return false;
- }
- foreach (array_keys($cols) as $key) {
- if (!($p = strpos($key, '_'))) {
- continue;
- }
-
- $k = sprintf($format, $key);
- $this->do->$k = $this->getLink($key);
- if (is_object($this->do->$k)) {
- $loaded[] = $k;
- }
- }
- $this->do->_link_loaded = $loaded;
- return true;
- }
-
- public function getLinkArray($field, $table = null, $fkey = false, $fval = false, $fmethod = false)
- {
- $ret = array();
- if (!$table) {
- $links = $this->do->links();
- if (is_array($links)) {
- if (!isset($links[$field])) {
-
- return $ret;
- }
- list($table, $link) = explode(':', $links[$field]);
- return $this->getLinkArray($field, $table);
- }
- if (!($p = strpos($field, '_'))) {
- return $ret;
- }
- return $this->getLinkArray($field, substr($field, 0, $p));
- }
- $c = $this->do->factory($table);
- if (!is_object($c) || !is_a($c, 'DB_DataObject')) {
- $this->do->raiseError(
- "getLinkArray:Could not find class for row $field, table $table",
- DB_DATAOBJECT_ERROR_INVALIDCONFIG
- );
- return $ret;
- }
-
- if (method_exists($c, 'listFind')) {
- $c->listFind($this->id);
- while ($c->fetch()) {
- $ret[] = clone($c);
- }
- return $ret;
- }
- return $c->fetchAll($fkey, $fval, $fmethod);
- }
- }
|