0

APIを使用するためにcpanelやdirectadminなどのサーバーコントロールパネルタイプを検出する方法:cpanel、directadmin、kloxo、pleskを検出するだけで十分です

$panel = ???????????;
    switch($panel){
       case 'cpanel':
          $xmlapi = new xmlapi($ip);
          //...
       break;
       case 'directadmin':
          $sock = new HTTPSocket;
          //...
       break;
       .
       .
       .
    }
4

2 に答える 2

0

hanky-panky が言ったように、これには簡単な解決策はありません。独自のクリエイティブな方法を実装する必要があります。特定のファイルの存在 (例: Cpanel は api ファイルを php インクルード パスに置く) またはその他のアイデアを使用して、ソケットを開いた状態で 1 つのコントロール パネルを検出する必要がある場合があります。

この目的のためにこのクラスを使用できます

namespace Model;

// usage:
//include 'detectControlPanel';
//$object = new \model\detectControlPanel();
//$result = $object->getDetect();
//var_dump($result);

class detectControlPanel
{
public $debug = false;
protected $detect = array();

public function getDetect()
{
    return $this->detect;
}

public function __construct($debug = false)
{
    $this->run();
    $this->debug = $debug;
    $this->debug($this->detect);
}

public function run()
{
    $this->detect['cpanel'] = $this->isCpanel();
    $this->detect['virtualmin'] = $this->isVirtualmin();
    $this->detect['plesk'] = $this->isPlesk();
    $this->detect['directadmin'] = $this->isDirectadmin();
    return $this->detect;
}

private function isCpanel()
{
    try {
        $this->telnet('localhost', 2082);
        return true;
    } catch (\Exception $ex) {
        $this->debug($ex);
        return false;
    }
}

private function isVirtualmin()
{
    try {
        $this->telnet('localhost', 10000);
        return true;
    } catch (\Exception $ex) {
        $this->debug($ex);
        return false;
    }
}

private function isDirectadmin()
{
    try {
        $this->telnet('localhost', 2222);
        return true;
    } catch (\Exception $ex) {
        $this->debug($ex);
        return false;
    }
}

private function isPlesk()
{
    try {
        $this->telnet('localhost', 8443);
        return true;
    } catch (\Exception $ex) {
        $this->debug($ex);
        return false;
    }
}

private function debug($input)
{
    if ($this->debug == true) {
        if (gettype($input) == 'string') {
            echo '<br>' . "\n";
            echo $input;
            echo '<br>' . "\n";
        } elseif (gettype($input) == 'array') {
            echo '<pre>' . "\n";
            print_r($input);
            echo '</pre>' . "\n";
        } elseif (gettype($input) == 'object' && get_class($input) == 'Exception') {
            echo '<pre>' . "\n";
            echo $input->getMessage();
            echo '</pre>' . "\n";
        } else {
            var_dump($input);
        }
    }
}

private function telnet($hostname, $port)
{
    if (!$hostname)
        throw new \Exception("empty host name");
    if (!$port)
        throw new \Exception("empty port number");
    $ipAddress = gethostbyname($hostname);
    $link = @fsockopen($ipAddress, $port, $errno, $error);
    if ($error) {
        throw new \Exception($error, $errno);
    }
    if ($link) {
        return true;
    }
    return false;
}
}
于 2015-11-21T15:31:48.250 に答える