146ca39b7SAndreas Gohr<?php 2*d6d97f60SAnna Dabrowska 346ca39b7SAndreas Gohr/** 446ca39b7SAndreas Gohr * DokuWiki Plugin struct (Helper Component) 546ca39b7SAndreas Gohr * 646ca39b7SAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 746ca39b7SAndreas Gohr * @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de> 846ca39b7SAndreas Gohr */ 946ca39b7SAndreas Gohr 1046ca39b7SAndreas Gohr// must be run within Dokuwiki 1193ca6f4fSAndreas Gohruse dokuwiki\plugin\struct\meta\AccessDataValidator; 12f411d872SAndreas Gohruse dokuwiki\plugin\struct\meta\AccessTable; 13f0ee60b9SMichael Großeuse dokuwiki\plugin\struct\meta\AccessTableLookup; 14ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\Assignments; 15ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\Schema; 16ba766201SAndreas Gohruse dokuwiki\plugin\struct\meta\StructException; 1746ca39b7SAndreas Gohr 1846ca39b7SAndreas Gohrif (!defined('DOKU_INC')) die(); 1946ca39b7SAndreas Gohr 2046ca39b7SAndreas Gohr/** 2146ca39b7SAndreas Gohr * The public interface for the struct plugin 2246ca39b7SAndreas Gohr * 237dac04ffSAndreas Gohr * 3rd party developers should always interact with struct data through this 247dac04ffSAndreas Gohr * helper plugin only. If additionional interface functionality is needed, 257dac04ffSAndreas Gohr * it should be added here. 2646ca39b7SAndreas Gohr * 2746ca39b7SAndreas Gohr * All functions will throw StructExceptions when something goes wrong. 287dac04ffSAndreas Gohr * 297dac04ffSAndreas Gohr * Remember to check permissions yourself! 3046ca39b7SAndreas Gohr */ 31*d6d97f60SAnna Dabrowskaclass helper_plugin_struct extends DokuWiki_Plugin 32*d6d97f60SAnna Dabrowska{ 3346ca39b7SAndreas Gohr 3446ca39b7SAndreas Gohr /** 3546ca39b7SAndreas Gohr * Get the structured data of a given page 3646ca39b7SAndreas Gohr * 3746ca39b7SAndreas Gohr * @param string $page The page to get data for 3846ca39b7SAndreas Gohr * @param string|null $schema The schema to use null for all 39387ee210SAnna Dabrowska * @param int $time A timestamp if you want historic data 4046ca39b7SAndreas Gohr * @return array ('schema' => ( 'fieldlabel' => 'value', ...)) 4146ca39b7SAndreas Gohr * @throws StructException 4246ca39b7SAndreas Gohr */ 43*d6d97f60SAnna Dabrowska public function getData($page, $schema = null, $time = 0) 44*d6d97f60SAnna Dabrowska { 457dac04ffSAndreas Gohr $page = cleanID($page); 46387ee210SAnna Dabrowska if (!$time) { 47387ee210SAnna Dabrowska $time = time(); 48387ee210SAnna Dabrowska } 4946ca39b7SAndreas Gohr 507dac04ffSAndreas Gohr if (is_null($schema)) { 51025cb9daSAndreas Gohr $assignments = Assignments::getInstance(); 527dac04ffSAndreas Gohr $schemas = $assignments->getPageAssignments($page, false); 537dac04ffSAndreas Gohr } else { 547dac04ffSAndreas Gohr $schemas = array($schema); 557dac04ffSAndreas Gohr } 567dac04ffSAndreas Gohr 577dac04ffSAndreas Gohr $result = array(); 587dac04ffSAndreas Gohr foreach ($schemas as $schema) { 59f411d872SAndreas Gohr $schemaData = AccessTable::byTableName($schema, $page, $time); 600dd23cefSAndreas Gohr $result[$schema] = $schemaData->getDataArray(); 617dac04ffSAndreas Gohr } 627dac04ffSAndreas Gohr 637dac04ffSAndreas Gohr return $result; 6446ca39b7SAndreas Gohr } 6546ca39b7SAndreas Gohr 6646ca39b7SAndreas Gohr /** 6746ca39b7SAndreas Gohr * Saves data for a given page (creates a new revision) 6846ca39b7SAndreas Gohr * 697dac04ffSAndreas Gohr * If this call succeeds you can assume your data has either been saved or it was 707dac04ffSAndreas Gohr * not necessary to save it because the data already existed in the wanted form or 717dac04ffSAndreas Gohr * the given schemas are no longer assigned to that page. 727dac04ffSAndreas Gohr * 737dac04ffSAndreas Gohr * Important: You have to check write permissions for the given page before calling 747dac04ffSAndreas Gohr * this function yourself! 757dac04ffSAndreas Gohr * 767dac04ffSAndreas Gohr * this duplicates a bit of code from entry.php - we could also fake post data and let 777dac04ffSAndreas Gohr * entry handle it, but that would be rather unclean and might be problematic when multiple 787dac04ffSAndreas Gohr * calls are done within the same request. 797dac04ffSAndreas Gohr * 807dac04ffSAndreas Gohr * @todo should this try to lock the page? 817dac04ffSAndreas Gohr * 827dac04ffSAndreas Gohr * 8346ca39b7SAndreas Gohr * @param string $page 847dac04ffSAndreas Gohr * @param array $data ('schema' => ( 'fieldlabel' => 'value', ...)) 8546ca39b7SAndreas Gohr * @param string $summary 86178d3992SElan Ruusamäe * @param string $summary 8746ca39b7SAndreas Gohr * @throws StructException 8846ca39b7SAndreas Gohr */ 89178d3992SElan Ruusamäe public function saveData($page, $data, $summary = '', $minor = false) 90178d3992SElan Ruusamäe { 917dac04ffSAndreas Gohr $page = cleanID($page); 927dac04ffSAndreas Gohr $summary = trim($summary); 937dac04ffSAndreas Gohr if (!$summary) $summary = $this->getLang('summary'); 9446ca39b7SAndreas Gohr 957dac04ffSAndreas Gohr if (!page_exists($page)) throw new StructException("Page does not exist. You can not attach struct data"); 967dac04ffSAndreas Gohr 977dac04ffSAndreas Gohr // validate and see if anything changes 9893ca6f4fSAndreas Gohr $valid = AccessDataValidator::validateDataForPage($data, $page, $errors); 9993ca6f4fSAndreas Gohr if ($valid === false) { 10093ca6f4fSAndreas Gohr throw new StructException("Validation failed:\n%s", join("\n", $errors)); 1017dac04ffSAndreas Gohr } 10293ca6f4fSAndreas Gohr if (!$valid) return; // empty array when no changes were detected 1037dac04ffSAndreas Gohr 104178d3992SElan Ruusamäe $newrevision = self::createPageRevision($page, $summary, $minor); 1057dac04ffSAndreas Gohr 1067dac04ffSAndreas Gohr // save the provided data 107025cb9daSAndreas Gohr $assignments = Assignments::getInstance(); 10893ca6f4fSAndreas Gohr foreach ($valid as $v) { 10993ca6f4fSAndreas Gohr $v->saveData($newrevision); 1107dac04ffSAndreas Gohr // make sure this schema is assigned 11193ca6f4fSAndreas Gohr $assignments->assignPageSchema($page, $v->getAccessTable()->getSchema()->getTable()); 1127dac04ffSAndreas Gohr } 11346ca39b7SAndreas Gohr } 11446ca39b7SAndreas Gohr 11546ca39b7SAndreas Gohr /** 11610575566SAnna Dabrowska * Save lookup data row 117ff2afc7cSMichael Große * 1180ceefd5cSAnna Dabrowska * @param AccessTable $access the table into which to save the data 119ff2afc7cSMichael Große * @param array $data data to be saved in the form of [columnName => 'data'] 120ff2afc7cSMichael Große */ 1210ceefd5cSAnna Dabrowska public function saveLookupData(AccessTable $access, $data) 122ff2afc7cSMichael Große { 123ff2afc7cSMichael Große if (!$access->getSchema()->isEditable()) { 124ff2afc7cSMichael Große throw new StructException('lookup save error: no permission for schema'); 125ff2afc7cSMichael Große } 126ff2afc7cSMichael Große $validator = $access->getValidator($data); 127ff2afc7cSMichael Große if (!$validator->validate()) { 128ff2afc7cSMichael Große throw new StructException("Validation failed:\n%s", implode("\n", $validator->getErrors())); 129ff2afc7cSMichael Große } 130ff2afc7cSMichael Große if (!$validator->saveData()) { 131ff2afc7cSMichael Große throw new StructException('No data saved'); 132ff2afc7cSMichael Große } 133ff2afc7cSMichael Große } 134ff2afc7cSMichael Große 135ff2afc7cSMichael Große /** 13613eddb0fSAndreas Gohr * Creates a new page revision with the same page content as before 13713eddb0fSAndreas Gohr * 13813eddb0fSAndreas Gohr * @param string $page 13913eddb0fSAndreas Gohr * @param string $summary 14013eddb0fSAndreas Gohr * @param bool $minor 14113eddb0fSAndreas Gohr * @return int the new revision 14213eddb0fSAndreas Gohr */ 143*d6d97f60SAnna Dabrowska public static function createPageRevision($page, $summary = '', $minor = false) 144*d6d97f60SAnna Dabrowska { 14513eddb0fSAndreas Gohr $summary = trim($summary); 14613eddb0fSAndreas Gohr // force a new page revision @see action_plugin_struct_entry::handle_pagesave_before() 14713eddb0fSAndreas Gohr $GLOBALS['struct_plugin_force_page_save'] = true; 14813eddb0fSAndreas Gohr saveWikiText($page, rawWiki($page), $summary, $minor); 14913eddb0fSAndreas Gohr unset($GLOBALS['struct_plugin_force_page_save']); 15013eddb0fSAndreas Gohr $file = wikiFN($page); 15113eddb0fSAndreas Gohr clearstatcache(false, $file); 15213eddb0fSAndreas Gohr return filemtime($file); 15313eddb0fSAndreas Gohr } 15413eddb0fSAndreas Gohr 15513eddb0fSAndreas Gohr /** 15646ca39b7SAndreas Gohr * Get info about existing schemas 15746ca39b7SAndreas Gohr * 15846ca39b7SAndreas Gohr * @param string|null $schema the schema to query, null for all 1597dac04ffSAndreas Gohr * @return Schema[] 16046ca39b7SAndreas Gohr * @throws StructException 16146ca39b7SAndreas Gohr */ 162*d6d97f60SAnna Dabrowska public function getSchema($schema = null) 163*d6d97f60SAnna Dabrowska { 1647dac04ffSAndreas Gohr if (is_null($schema)) { 1657dac04ffSAndreas Gohr $schemas = Schema::getAll(); 1667dac04ffSAndreas Gohr } else { 1677dac04ffSAndreas Gohr $schemas = array($schema); 1687dac04ffSAndreas Gohr } 16946ca39b7SAndreas Gohr 1707dac04ffSAndreas Gohr $result = array(); 1717dac04ffSAndreas Gohr foreach ($schemas as $table) { 1727dac04ffSAndreas Gohr $result[$table] = new Schema($table); 1737dac04ffSAndreas Gohr } 1747dac04ffSAndreas Gohr return $result; 17546ca39b7SAndreas Gohr } 17646ca39b7SAndreas Gohr 17746ca39b7SAndreas Gohr /** 17846ca39b7SAndreas Gohr * Returns all pages known to the struct plugin 17946ca39b7SAndreas Gohr * 18046ca39b7SAndreas Gohr * That means all pages that have or had once struct data saved 18146ca39b7SAndreas Gohr * 18246ca39b7SAndreas Gohr * @param string|null $schema limit the result to a given schema 1837dac04ffSAndreas Gohr * @return array (page => (schema => true), ...) 18446ca39b7SAndreas Gohr * @throws StructException 18546ca39b7SAndreas Gohr */ 186*d6d97f60SAnna Dabrowska public function getPages($schema = null) 187*d6d97f60SAnna Dabrowska { 188025cb9daSAndreas Gohr $assignments = Assignments::getInstance(); 1897dac04ffSAndreas Gohr return $assignments->getPages($schema); 19046ca39b7SAndreas Gohr } 19146ca39b7SAndreas Gohr} 192