截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasicLogic.php 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?php
  2. namespace app\admin\logic\setting;
  3. use app\common\basics\Logic;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\FileServer;
  6. use app\common\server\UrlServer;
  7. /**
  8. * 网站基础设置
  9. * Class BasicLogic
  10. * @package app\admin\logic\setting
  11. */
  12. class BasicLogic extends Logic
  13. {
  14. /**
  15. * Notes: 网站设置
  16. * @author 段誉(2021/6/10 23:52)
  17. * @return array
  18. */
  19. public static function getBasicConfig()
  20. {
  21. $config = [
  22. 'file_url' => UrlServer::getFileUrl('/'),
  23. 'name' => ConfigServer::get('website', 'name'),
  24. 'web_favicon' => ConfigServer::get('website', 'web_favicon'),
  25. 'client_login_logo' => ConfigServer::get('website', 'client_login_logo'),
  26. 'pc_client_login_logo' => ConfigServer::get('website', 'pc_client_login_logo'),
  27. 'user_image' => ConfigServer::get('website', 'user_image'),
  28. 'goods_image' => ConfigServer::get('website', 'goods_image'),
  29. 'platform_login_logo' => ConfigServer::get('website_platform', 'platform_login_logo'),
  30. 'platform_login_image' => ConfigServer::get('website_platform', 'platform_login_image'),
  31. 'platform_login_title' => ConfigServer::get('website_platform', 'platform_login_title'),
  32. 'platform_admin_logo' => ConfigServer::get('website_platform', 'platform_admin_logo'),
  33. 'platform_contact' => ConfigServer::get('website_platform', 'platform_contact'),
  34. 'platform_mobile' => ConfigServer::get('website_platform', 'platform_mobile'),
  35. 'shop_login_logo' => ConfigServer::get('website_shop', 'shop_login_logo'),
  36. 'shop_login_image' => ConfigServer::get('website_shop', 'shop_login_image'),
  37. 'shop_login_title' => ConfigServer::get('website_shop', 'shop_login_title'),
  38. 'shop_admin_logo' => ConfigServer::get('website_shop', 'shop_admin_logo'),
  39. 'shop_default_logo' => ConfigServer::get('website_shop', 'shop_default_logo'),
  40. 'shop_default_bg' => ConfigServer::get('website_shop', 'shop_default_bg'),
  41. ];
  42. return $config;
  43. }
  44. /**
  45. * Notes: 网站设置-商城设置
  46. * @param $post
  47. * @author 段誉(2021/6/10 23:53)
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. */
  52. public static function setWebsiteBasic($post)
  53. {
  54. ConfigServer::set('website', 'name', $post['name']);
  55. ConfigServer::set('website', 'web_favicon', UrlServer::setFileUrl($post['web_favicon'] ?? ''));
  56. ConfigServer::set('website', 'client_login_logo', UrlServer::setFileUrl($post['client_login_logo'] ?? ''));
  57. ConfigServer::set('website', 'pc_client_login_logo', UrlServer::setFileUrl($post['pc_client_login_logo'] ?? ''));
  58. ConfigServer::set('website', 'user_image', UrlServer::setFileUrl($post['user_image'] ?? ''));
  59. ConfigServer::set('website', 'goods_image', UrlServer::setFileUrl($post['goods_image'] ?? ''));
  60. }
  61. /**
  62. * Notes: 网站设置-平台设置
  63. * @param $post
  64. * @author 段誉(2021/6/10 23:53)
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\DbException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. */
  69. public static function setPlatform($post)
  70. {
  71. ConfigServer::set('website_platform', 'platform_login_logo', UrlServer::setFileUrl($post['platform_login_logo'] ?? ''));
  72. ConfigServer::set('website_platform', 'platform_login_image', UrlServer::setFileUrl($post['platform_login_image'] ?? ''));
  73. ConfigServer::set('website_platform', 'platform_login_title', $post['platform_login_title']);
  74. ConfigServer::set('website_platform', 'platform_admin_logo', UrlServer::setFileUrl($post['platform_admin_logo'] ?? ''));
  75. ConfigServer::set('website_platform', 'platform_contact', $post['platform_contact']);
  76. ConfigServer::set('website_platform', 'platform_mobile', $post['platform_mobile']);
  77. }
  78. /**
  79. * Notes: 网站设置-商家设置
  80. * @param $post
  81. * @author 段誉(2021/6/10 23:53)
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\DbException
  84. * @throws \think\db\exception\ModelNotFoundException
  85. */
  86. public static function setShop($post)
  87. {
  88. ConfigServer::set('website_shop', 'shop_login_logo', UrlServer::setFileUrl($post['shop_login_logo'] ?? ''));
  89. ConfigServer::set('website_shop', 'shop_login_image', UrlServer::setFileUrl($post['shop_login_image'] ?? ''));
  90. ConfigServer::set('website_shop', 'shop_login_title', $post['shop_login_title']);
  91. ConfigServer::set('website_shop', 'shop_admin_logo', UrlServer::setFileUrl($post['shop_admin_logo'] ?? ''));
  92. ConfigServer::set('website_shop', 'shop_default_logo', UrlServer::setFileUrl($post['shop_default_logo'] ?? ''));
  93. ConfigServer::set('website_shop', 'shop_default_bg', UrlServer::setFileUrl($post['shop_default_bg'] ?? ''));
  94. }
  95. /**
  96. * @notes 获取版权资质
  97. * @return array[]
  98. * @author ljj
  99. * @date 2022/2/22 9:30 上午
  100. */
  101. public static function getCopyright()
  102. {
  103. $config = [
  104. 'company_name' => ConfigServer::get('copyright', 'company_name'),
  105. 'number' => ConfigServer::get('copyright', 'number'),
  106. 'link' => ConfigServer::get('copyright', 'link'),
  107. 'business_license' => ConfigServer::get('copyright', 'business_license'),
  108. 'other_qualifications' => ConfigServer::get('copyright', 'other_qualifications',[]),
  109. ];
  110. $config['business_license'] = $config['business_license'] ? UrlServer::getFileUrl($config['business_license']) : '';
  111. if (!empty($config['other_qualifications'])) {
  112. foreach ($config['other_qualifications'] as &$val) {
  113. $val = UrlServer::getFileUrl($val);
  114. }
  115. }
  116. return ['config'=>$config];
  117. }
  118. /**
  119. * @notes 设置版权资质
  120. * @param $post
  121. * @return bool
  122. * @throws \think\db\exception\DataNotFoundException
  123. * @throws \think\db\exception\DbException
  124. * @throws \think\db\exception\ModelNotFoundException
  125. * @author ljj
  126. * @date 2022/2/22 9:37 上午
  127. */
  128. public static function setCopyright($post)
  129. {
  130. $num = count($post['other_qualifications'] ?? []);
  131. if ($num > 5) {
  132. return '其他资质图片不能超过五张';
  133. }
  134. ConfigServer::set('copyright', 'company_name', $post['company_name']);
  135. ConfigServer::set('copyright', 'number', $post['number']);
  136. ConfigServer::set('copyright', 'link', $post['link']);
  137. ConfigServer::set('copyright', 'business_license', UrlServer::setFileUrl($post['business_license'] ?? ''));
  138. $other_qualifications = [];
  139. if (!empty($post['other_qualifications'])) {
  140. foreach ($post['other_qualifications'] as &$val) {
  141. $val = UrlServer::setFileUrl($val);
  142. }
  143. $other_qualifications = json_encode($post['other_qualifications']);
  144. }
  145. ConfigServer::set('copyright', 'other_qualifications', $other_qualifications);
  146. return true;
  147. }
  148. }