HookLogic.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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\logic;
  12. use think\Db;
  13. class HookLogic
  14. {
  15. /**
  16. * 导入应用钩子
  17. * @param $app
  18. * @return array
  19. * @throws \ReflectionException
  20. * @throws \think\Exception
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. * @throws \think\exception\DbException
  24. * @throws \think\exception\PDOException
  25. */
  26. public static function importHooks($app)
  27. {
  28. $hookConfigFile = cmf_get_app_config_file($app, 'hooks');
  29. if (file_exists($hookConfigFile)) {
  30. $hooksInFile = include $hookConfigFile;
  31. if (empty($hooksInFile) || !is_array($hooksInFile)) {
  32. return;
  33. }
  34. foreach ($hooksInFile as $hookName => $hook) {
  35. $hook['type'] = empty($hook['type']) ? 2 : $hook['type'];
  36. if (!in_array($hook['type'], [2, 3, 4]) && !in_array($app, ['cmf', 'swoole'])) {
  37. $hook['type'] = 2;
  38. }
  39. $findHook = Db::name('hook')->where('hook', $hookName)->count();
  40. $hook['app'] = $app;
  41. if ($findHook > 0) {
  42. Db::name('hook')->where('hook', $hookName)->strict(false)->field(true)->update($hook);
  43. } else {
  44. $hook['hook'] = $hookName;
  45. Db::name('hook')->insert($hook);
  46. }
  47. }
  48. }
  49. }
  50. }