ThemeModel.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\model;
  12. use think\Model;
  13. use think\Db;
  14. class ThemeModel extends Model
  15. {
  16. /**
  17. * 获取插件列表
  18. */
  19. public function getList()
  20. {
  21. }
  22. public function installTheme($theme)
  23. {
  24. $manifest = WEB_ROOT . "themes/$theme/manifest.json";
  25. if (file_exists_case($manifest)) {
  26. $manifest = file_get_contents($manifest);
  27. $themeData = json_decode($manifest, true);
  28. $themeData['theme'] = $theme;
  29. $this->updateThemeFiles($theme);
  30. $this->data($themeData)->save();
  31. return true;
  32. } else {
  33. return false;
  34. }
  35. }
  36. public function updateTheme($theme)
  37. {
  38. $manifest = WEB_ROOT . "themes/$theme/manifest.json";
  39. if (file_exists_case($manifest)) {
  40. $manifest = file_get_contents($manifest);
  41. $themeData = json_decode($manifest, true);
  42. $this->updateThemeFiles($theme);
  43. $this->save($themeData, ['theme' => $theme]);
  44. return true;
  45. } else {
  46. return false;
  47. }
  48. }
  49. /**
  50. * 获取当前前台模板某操作下的模板文件
  51. * @param $action string 控制器操作
  52. * @return array|string|\think\Collection
  53. * @throws \think\db\exception\DataNotFoundException
  54. * @throws \think\db\exception\ModelNotFoundException
  55. * @throws \think\exception\DbException
  56. */
  57. public function getActionThemeFiles($action)
  58. {
  59. $theme = config('template.cmf_default_theme');
  60. return Db::name('theme_file')->where(['theme' => $theme, 'action' => $action])->select();
  61. }
  62. private function updateThemeFiles($theme, $suffix = 'html')
  63. {
  64. $dir = 'themes/' . $theme;
  65. $themeDir = $dir;
  66. $tplFiles = [];
  67. $root_dir_tpl_files = cmf_scan_dir("$dir/*.$suffix");
  68. foreach ($root_dir_tpl_files as $root_tpl_file) {
  69. $root_tpl_file = "$dir/$root_tpl_file";
  70. $configFile = preg_replace("/\.$suffix$/", '.json', $root_tpl_file);
  71. $root_tpl_file_no_suffix = preg_replace("/\.$suffix$/", '', $root_tpl_file);
  72. if (is_file($root_tpl_file) && file_exists_case($configFile)) {
  73. array_push($tplFiles, $root_tpl_file_no_suffix);
  74. }
  75. }
  76. $subDirs = cmf_sub_dirs($dir);
  77. foreach ($subDirs as $dir) {
  78. $subDirTplFiles = cmf_scan_dir("$dir/*.$suffix");
  79. foreach ($subDirTplFiles as $tplFile) {
  80. $tplFile = "$dir/$tplFile";
  81. $configFile = preg_replace("/\.$suffix$/", '.json', $tplFile);
  82. $tplFileNoSuffix = preg_replace("/\.$suffix$/", '', $tplFile);
  83. if (is_file($tplFile) && file_exists_case($configFile)) {
  84. array_push($tplFiles, $tplFileNoSuffix);
  85. }
  86. }
  87. }
  88. foreach ($tplFiles as $tplFile) {
  89. $configFile = $tplFile . ".json";
  90. $file = preg_replace('/^themes\/' . $theme . '\//', '', $tplFile);
  91. $file = strtolower($file);
  92. $config = json_decode(file_get_contents($configFile), true);
  93. $findFile = Db::name('theme_file')->where(['theme' => $theme, 'file' => $file])->find();
  94. $isPublic = empty($config['is_public']) ? 0 : 1;
  95. $listOrder = empty($config['order']) ? 0 : floatval($config['order']);
  96. $configMore = empty($config['more']) ? [] : $config['more'];
  97. $more = $configMore;
  98. if (empty($findFile)) {
  99. Db::name('theme_file')->insert([
  100. 'theme' => $theme,
  101. 'action' => $config['action'],
  102. 'file' => $file,
  103. 'name' => $config['name'],
  104. 'more' => json_encode($more),
  105. 'config_more' => json_encode($configMore),
  106. 'description' => $config['description'],
  107. 'is_public' => $isPublic,
  108. 'list_order' => $listOrder
  109. ]);
  110. } else { // 更新文件
  111. $moreInDb = json_decode($findFile['more'], true);
  112. $more = $this->updateThemeConfigMore($configMore, $moreInDb);
  113. Db::name('theme_file')->where(['theme' => $theme, 'file' => $file])->update([
  114. 'theme' => $theme,
  115. 'action' => $config['action'],
  116. 'file' => $file,
  117. 'name' => $config['name'],
  118. 'more' => json_encode($more),
  119. 'config_more' => json_encode($configMore),
  120. 'description' => $config['description'],
  121. 'is_public' => $isPublic,
  122. 'list_order' => $listOrder
  123. ]);
  124. }
  125. }
  126. // 检查安装过的模板文件是否已经删除
  127. $files = Db::name('theme_file')->where('theme', $theme)->select();
  128. foreach ($files as $themeFile) {
  129. $tplFile = $themeDir . '/' . $themeFile['file'] . '.' . $suffix;
  130. $tplFileConfigFile = $themeDir . '/' . $themeFile['file'] . '.json';
  131. if (!is_file($tplFile) || !file_exists_case($tplFileConfigFile)) {
  132. Db::name('theme_file')->where(['theme' => $theme, 'file' => $themeFile['file']])->delete();
  133. }
  134. }
  135. }
  136. private function updateThemeConfigMore($configMore, $moreInDb)
  137. {
  138. if (!empty($configMore['vars'])) {
  139. foreach ($configMore['vars'] as $mVarName => $mVar) {
  140. if (isset($moreInDb['vars'][$mVarName]['value']) && $mVar['type'] == $moreInDb['vars'][$mVarName]['type']) {
  141. $configMore['vars'][$mVarName]['value'] = $moreInDb['vars'][$mVarName]['value'];
  142. if (isset($moreInDb['vars'][$mVarName]['valueText'])) {
  143. $configMore['vars'][$mVarName]['valueText'] = $moreInDb['vars'][$mVarName]['valueText'];
  144. }
  145. }
  146. }
  147. }
  148. if (!empty($configMore['widgets'])) {
  149. foreach ($configMore['widgets'] as $widgetName => $widget) {
  150. if (isset($moreInDb['widgets'][$widgetName]['title'])) {
  151. $configMore['widgets'][$widgetName]['title'] = $moreInDb['widgets'][$widgetName]['title'];
  152. }
  153. if (isset($moreInDb['widgets'][$widgetName]['display'])) {
  154. $configMore['widgets'][$widgetName]['display'] = $moreInDb['widgets'][$widgetName]['display'];
  155. }
  156. if (!empty($widget['vars'])) {
  157. foreach ($widget['vars'] as $widgetVarName => $widgetVar) {
  158. if (isset($moreInDb['widgets'][$widgetName]['vars'][$widgetVarName]['value']) && $widgetVar['type'] == $moreInDb['widgets'][$widgetName]['vars'][$widgetVarName]['type']) {
  159. $configMore['widgets'][$widgetName]['vars'][$widgetVarName]['value'] = $moreInDb['widgets'][$widgetName]['vars'][$widgetVarName]['value'];
  160. if (isset($moreInDb['widgets'][$widgetName]['vars'][$widgetVarName]['valueText'])) {
  161. $configMore['widgets'][$widgetName]['vars'][$widgetVarName]['valueText'] = $moreInDb['widgets'][$widgetName]['vars'][$widgetVarName]['valueText'];
  162. }
  163. }
  164. }
  165. }
  166. }
  167. }
  168. return $configMore;
  169. }
  170. }