'/\[!\[Release(.*)LICENSE\)/ms', 'target' => '/^([^\n]+)[\r\n|\n]{1,}/ms' ]; protected $bloc_content = [ 'release' => '[![Release](https://img.shields.io/github/v/release/%username%/%module%)](https://github.com/%username%/%module%/releases)', 'date' => '[![Date](https://img.shields.io/github/release-date/%username%/%module%)](https://github.com/%username%/%module%/releases)', 'issues' => '[![Issues](https://img.shields.io/github/issues/%username%/%module%)](https://github.com/%username%/%module%/issues)', 'dotclear' => '[![Dotclear](https://img.shields.io/badge/dotclear-v%dotclear%-blue.svg)](https://fr.dotclear.org/download)', 'dotaddict' => '[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://%type%s.dotaddict.org/dc2/details/%module%)', 'license' => '[![License](https://img.shields.io/github/license/%username%/%module%)](https://github.com/%username%/%module%/blob/master/LICENSE)' ]; protected function init(): bool { $this->setProperties([ 'id' => 'gitshields', 'name' => __('Shields badges'), 'desc' => __('Add and maintain shields.io badges to the REDAME.md file'), 'priority' => 380, 'config' => true, 'types' => ['plugin', 'theme'] ]); return true; } public function isConfigured(): bool { return !empty($this->getSetting('username')); } public function configure($url): ?string { if (!empty($_POST['save']) && !empty($_POST['username'])) { $this->setSettings([ 'username' => (string) $_POST['username'], 'dotaddict' => !empty($_POST['dotaddict']) ]); $this->redirect($url); } return '
' . form::field('username', 60, 100, $this->getSetting('username')) . '
' . __('Used in your Github URL: http://github.com/username/module_id.') . '
' .
__('If you have badges not created by this tool in the README.md file you should remove them manually.') . '
' . __('If your plugin or theme is on Dotaddict, you can add a badge to link to its details in Dotaddict.') . '
'; } public function openModule(): ?bool { $this->replaceInfo(); return null; } public function readFile(&$content): ?bool { if ($this->stop_scan || !preg_match('/(.*?)README\.md$/i', $this->path_full)) { return null; } $clean = $this->deleteShieldsBloc($content); $content = $this->writeShieldsBloc($clean); $this->stop_scan = true; return true; } private function replaceInfo() { $bloc = []; foreach($this->bloc_content as $k => $v) { if ($k == 'dotaddict' && empty($this->getSetting('dotaddict'))) { continue; } $bloc[$k] = trim(str_replace( [ '%username%', '%module%', '%dotclear%', '%type%', "\r\n", "\n" ], [ $this->getSetting('username'), $this->module['id'], $dotclear = $this->getDotclearVersion(), $this->module['type'], '', '' ], $v )); } $this->bloc = $bloc; $this->setSuccess(__('Prepare custom shield info')); } private function getDotclearVersion() { $version = null; 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') { $version = $req[1]; break; } } } return $version ?: $this->core->getVersion('core'); } private function writeShieldsBloc($content) { $res = preg_replace( $this->bloc_pattern['target'], '$1' . "\n\n" . trim(implode("\n", $this->bloc)) . "\n\n", $content, 1, $count ); if ($count) { $this->setSuccess(__('Write new shield bloc')); } return $res; } private function deleteShieldsBloc($content) { $res = preg_replace( $this->bloc_pattern['remove'], "\n\n", $content, 1, $count ); if ($count) { $this->setSuccess(__('Delete old shield bloc')); } return $res; } }