setProperties([ 'id' => 'dcstore', 'name' => __('Store file'), 'desc' => __('Re-create dcstore.xml file according to _define.php variables'), 'priority' => 420, 'config' => true, 'types' => ['plugin', 'theme'] ]); return true; } public function isConfigured(): bool { return !empty($this->getSetting('pattern')); } public function configure($url): ?string { if (!empty($_POST['save']) && !empty($_POST['dcstore_pattern'])) { $this->setSettings('pattern', (string) $_POST['dcstore_pattern']); $this->redirect($url); } return '

' . __('File will be overwritten if it exists') . '

' . '

' . '

' . '

' . sprintf(__('You can use wildcards %s'), '%author%, %type%, %id%, %version%.') . '
' . __('For exemple on github https://github.com/MyGitName/%id%/releases/download/v%version%/%type%-%id%.zip') . '
' . __('Note on github, you must create a release and join to it the module zip file.') . '

'; } public function openModule(): ?bool { $content = $this->generateXML(); if ($this->hasError()) { return false; } try { files::putContent($this->module['sroot'] . '/dcstore.xml', $content); $this->setSuccess(__('Write dcstore.xml file.')); } catch(Exception $e) { $this->setError(__('Failed to write dcstore.xml file')); return false; } return true; } public function generateXML() { $xml = ['']; $rsp = new xmlTag('module'); # id if (empty($this->module['id'])) { $this->setError(__('unkow module id')); } $rsp->id = $this->module['id']; # name if (empty($this->module['oname'])) { $this->setError(__('unknow module name')); } $rsp->name($this->module['oname']); # version if (empty($this->module['version'])) { $this->setError(__('unknow module version')); } $rsp->version($this->module['version']); # author if (empty($this->module['author'])) { $this->setError(__('unknow module author')); } $rsp->author($this->module['author']); # desc if (empty($this->module['desc'])) { $this->setError(__('unknow module description')); } $rsp->desc($this->module['desc']); # repository if (empty($this->module['repository'])) { $this->setError(__('no repository set in _define.php')); } # file $file_pattern = $this->parseFilePattern(); if (empty($file_pattern)) { $this->setError(__('no zip file pattern set in configuration')); } $rsp->file($file_pattern); # da dc_min or requires core if (!empty($this->module['requires']) && is_array($this->module['requires'])) { foreach ($this->module['requires'] as $req) { if (!is_array($req)) { $req = [$req]; } if ($req[0] == 'core') { $this->module['dc_min'] = $req[1]; break; } } } if (empty($this->module['dc_min'])) { $this->setWarning(__('no minimum dotclear version')); } else { $rsp->insertNode(new xmlTag('da:dcmin', $this->module['dc_min'])); } # da details if (empty($this->module['details'])) { $this->setWarning(__('no details URL')); } else { $rsp->insertNode(new xmlTag('da:details', $this->module['details'])); } # da sshot //$rsp->insertNode(new xmlTag('da:sshot', $this->module['sshot'])); # da section if (!empty($this->module['section'])) { $rsp->insertNode(new xmlTag('da:section', $this->module['section'])); } # da support if (empty($this->module['support'])) { $this->setWarning(__('no support URL')); } else { $rsp->insertNode(new xmlTag('da:support', $this->module['support'])); } # da tags //$rsp->insertNode(new xmlTag('da:tags', $this->module['tags'])); $res = new xmlTag('modules', $rsp); $res->insertAttr('xmlns:da', 'http://dotaddict.org/da/'); return str_replace('><', ">\n<", $res->toXML()); } private function parseFilePattern() { return text::tidyURL(str_replace( [ '%type%', '%id%', '%version%', '%author%' ], [ $this->module['type'], $this->module['id'], $this->module['version'], $this->module['author'] ], $this->getSetting('pattern') )); } }