2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
|
2026-03-21 02:55:24 +08:00
|
|
|
namespace app;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\listener\wechat\OffcialAccountListener;
|
|
|
|
|
use app\listener\wechat\RoutineListener;
|
|
|
|
|
use app\listener\wechat\WorkListener;
|
|
|
|
|
use crmeb\services\SystemConfigService;
|
|
|
|
|
use app\services\work\WorkConfigServices;
|
|
|
|
|
use crmeb\services\GroupDataService;
|
|
|
|
|
use crmeb\services\wechat\config\HttpCommonConfig;
|
|
|
|
|
use crmeb\services\wechat\MiniProgram;
|
|
|
|
|
use crmeb\services\wechat\OfficialAccount;
|
|
|
|
|
use crmeb\services\wechat\Work;
|
|
|
|
|
use crmeb\utils\Json;
|
|
|
|
|
use think\Service;
|
|
|
|
|
use app\services\system\config\SystemConfigServices;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class AppService
|
|
|
|
|
* @package app
|
|
|
|
|
*/
|
|
|
|
|
class AppService extends Service
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public $bind = [
|
|
|
|
|
'json' => Json::class,
|
|
|
|
|
'sysConfig' => SystemConfigService::class,
|
|
|
|
|
'sysGroupData' => GroupDataService::class
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
public function boot()
|
|
|
|
|
{
|
|
|
|
|
defined('DS') || define('DS', DIRECTORY_SEPARATOR);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 注册
|
|
|
|
|
*/
|
|
|
|
|
public function register()
|
|
|
|
|
{
|
|
|
|
|
//http配置服务
|
|
|
|
|
$this->app->bind(HttpCommonConfig::class, function () {
|
|
|
|
|
return (new HttpCommonConfig())->setServe(SystemConfigServices::class);
|
|
|
|
|
});
|
|
|
|
|
//公众号
|
|
|
|
|
$this->app->bind(OfficialAccount::class, function () {
|
|
|
|
|
return (new OfficialAccount)->setPushMessageHandler(OffcialAccountListener::class);
|
|
|
|
|
});
|
|
|
|
|
//小程序
|
|
|
|
|
$this->app->bind(MiniProgram::class, function () {
|
|
|
|
|
return (new MiniProgram)->setPushMessageHandler(RoutineListener::class);
|
|
|
|
|
});
|
|
|
|
|
//企业微信
|
|
|
|
|
$this->app->bind(Work::class, function () {
|
|
|
|
|
return (new Work)->setPushMessageHandler(WorkListener::class)
|
|
|
|
|
->setConfigHandler(WorkConfigServices::class);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|