*/ // must be run within Dokuwiki if (!defined('DOKU_INC')) die(); if (!defined('DOKU_LF')) define('DOKU_LF', "\n"); if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t"); if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once DOKU_PLUGIN.'syntax.php'; class syntax_plugin_whoisinyourhackspace extends DokuWiki_Syntax_Plugin { public function getType() { return 'substition'; } public function getPType() { return 'block'; } public function getSort() { return 0; } public function connectTo($mode) { $this->Lexer->addSpecialPattern("(?:\[wiyh '.*?'\]|\[wiyh\])", $mode,'plugin_whoisinyourhackspace'); } public function handle($match, $state, $pos, Doku_Handler $handler) { if (DOKU_LEXER_SPECIAL !== $state) { return []; } $matches = []; if (false !== preg_match("/wiyh '(.*?)'/", $match, $matches)) { return [$state, $match, $matches[1] ?? null]; } return [$state, $match]; } public function render($format, Doku_Renderer $renderer, $data) { global $conf; [$state, $match, $url] = $data; if($format != 'xhtml') return false; $api_path = $url ?: $this->getConf('api_path'); if (empty ($api_path)) { $renderer->doc .= "
{$this->getLang('wiyh_no_api_path')}
"; return true; } if (false === $file = file_get_contents($api_path)) { $renderer->doc .= "
{$this->getLang('wiyh_fetch_error')}
"; return true; } $api = json_decode($file); $content = ''; $content .= '
'; $content .= "

" . $this->getLang('wiyh_heading') . "

"; if ($api->state->open) { $message = "{$api->space} {$this->getLang('wiyh_open')}"; $content .= $api->state->icon->open ? "state->icon->open}\" alt=\"{$message}\" title=\"{$message}\" />" : ''; $content .= "

{$message}

"; } else { $message = "{$api->space} {$this->getLang('wiyh_closed')}"; $content .= $api->state->icon->closed ? "state->icon->closed}\" alt=\"{$message}\" title=\"{$message}\" />" : ''; $content .= "

{$message}

"; } $date = new DateTime(); $date->setTimeStamp($api->state->lastchange); $content .= "

{$this->getLang('wiyh_since')} " . $date->format('d.m.Y H:i') . " Uhr

"; $content .= '
'; $content .= '
'; $renderer->doc .= $content; return true; } } // vim:ts=4:sw=4:et: