mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-14 21:02:49 +00:00
37 lines
917 B
PHP
37 lines
917 B
PHP
<?php
|
||
|
||
namespace App\Module;
|
||
|
||
use App\Services\RequestContext;
|
||
use Symfony\Component\Yaml\Yaml;
|
||
|
||
class Apps
|
||
{
|
||
/**
|
||
* 判断应用是否已安装
|
||
*
|
||
* @param string $appId 应用ID(名称)
|
||
* @return bool 如果应用已安装返回 true,否则返回 false
|
||
*/
|
||
public static function isInstalled(string $appId): bool
|
||
{
|
||
if ($appId === 'appstore') {
|
||
return true;
|
||
}
|
||
|
||
$key = 'app_installed_' . $appId;
|
||
if (RequestContext::has($key)) {
|
||
return RequestContext::get($key);
|
||
}
|
||
|
||
$configFile = base_path('docker/appstore/config/' . $appId . '/config.yml');
|
||
$installed = false;
|
||
if (file_exists($configFile)) {
|
||
$configData = Yaml::parseFile($configFile);
|
||
$installed = $configData['status'] === 'installed';
|
||
}
|
||
|
||
return RequestContext::save($key, $installed);
|
||
}
|
||
}
|