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.
55 lines
1.8 KiB
55 lines
1.8 KiB
<?php
|
|
declare (strict_types=1);
|
|
namespace app\agent\controller;
|
|
|
|
include_once LONGBING_EXTEND_PATH . "LongbingUpgrade.php";
|
|
class AppUpgrade extends \app\AdminRest
|
|
{
|
|
public function getUpgradeInfo()
|
|
{
|
|
$goods_name = config("app.AdminModelList")["app_model_name"];
|
|
$auth_uniacid = config("app.AdminModelList")["auth_uniacid"];
|
|
$version_no = config("app.AdminModelList")["version_no"];
|
|
$upgrade = new \LongbingUpgrade($auth_uniacid, $goods_name, \think\facade\Env::get("j2hACuPrlohF9BvFsgatvaNFQxCBCc", false));
|
|
$data = $upgrade->checkAuth();
|
|
$data["location_version_no"] = $version_no;
|
|
$data["is_upgrade"] = $this->getIsUpgrade();
|
|
$this->update();
|
|
return $this->success($data);
|
|
}
|
|
public function update()
|
|
{
|
|
$key = "init_all_data";
|
|
setCache($key, "", 7200, $this->_uniacid);
|
|
\app\admin\service\UpdateService::installSql($this->_uniacid);
|
|
return $this->success([]);
|
|
}
|
|
private function getIsUpgrade()
|
|
{
|
|
if (!longbingIsWeiqin()) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
public function upgrade()
|
|
{
|
|
if ($this->getIsUpgrade()) {
|
|
$goods_name = config("app.AdminModelList")["app_model_name"];
|
|
$auth_uniacid = config("app.AdminModelList")["auth_uniacid"];
|
|
$version_no = config("app.AdminModelList")["version_no"];
|
|
$upgrade = new \LongbingUpgrade($auth_uniacid, $goods_name, \think\facade\Env::get("j2hACuPrlohF9BvFsgatvaNFQxCBCc", false));
|
|
$file_temp_path = ROOT_PATH . "runtime/";
|
|
$toFilePath = ROOT_PATH;
|
|
$data = $upgrade->update($toFilePath, $file_temp_path);
|
|
$uniacid = $this->_uniacid;
|
|
clearCache($uniacid);
|
|
\app\admin\service\UpdateService::installSql($uniacid, 0);
|
|
$a = new \longbingcore\wxcore\WxSetting($this->_uniacid);
|
|
$a->setH5Info();
|
|
return $this->success(true);
|
|
} else {
|
|
return $this->success([]);
|
|
}
|
|
}
|
|
} |