当前位置: 首页>>代码示例>>PHP>>正文


PHP jeedom::apiAccess方法代码示例

本文整理汇总了PHP中jeedom::apiAccess方法的典型用法代码示例。如果您正苦于以下问题:PHP jeedom::apiAccess方法的具体用法?PHP jeedom::apiAccess怎么用?PHP jeedom::apiAccess使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jeedom的用法示例。


在下文中一共展示了jeedom::apiAccess方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dirname

 *
 * Jeedom is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Jeedom is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Jeedom. If not, see <http://www.gnu.org/licenses/>.
 */
require_once dirname(__FILE__) . "/../../../../core/php/core.inc.php";
if (!jeedom::apiAccess(init('apikey'))) {
    connection::failed();
    echo 'Clef API non valide, vous n\'etes pas autorisé à effectuer cette action (jeeZwave)';
    die;
}
if (isset($_GET['test'])) {
    echo 'OK';
    die;
}
if (isset($_GET['stopOpenzwave'])) {
    config::save('allowStartDeamon', 0, 'openzwave');
    openzwave::stopDeamon();
    die;
}
if (isset($_GET['startOpenzwave'])) {
    log::add('openzwave', 'debug', 'Restart Zwave deamon');
开发者ID:sfrias,项目名称:plugin-openzwave,代码行数:31,代码来源:jeeZwave.php

示例2: getClientIp

try {
    $IP = getClientIp();
    $request = init('request');
    if ($request == '') {
        $request = file_get_contents("php://input");
    }
    log::add('api', 'info', $request . ' - IP :' . $IP);
    $jsonrpc = new jsonrpc($request);
    if (!mySqlIsHere()) {
        throw new Exception('Mysql non lancé', -32001);
    }
    if ($jsonrpc->getJsonrpc() != '2.0') {
        throw new Exception('Requête invalide. Version Jsonrpc invalide : ' . $jsonrpc->getJsonrpc(), -32001);
    }
    $params = $jsonrpc->getParams();
    if (!jeedom::apiAccess($params['apikey']) && !jeedom::apiAccess($params['api'])) {
        connection::failed();
        throw new Exception('Clé API invalide', -32001);
    }
    connection::success('api');
    /*             * ************************config*************************** */
    if ($jsonrpc->getMethod() == 'config::byKey') {
        $jsonrpc->makeSuccess(config::byKey($params['key'], $params['plugin'], $params['default']));
    }
    if ($jsonrpc->getMethod() == 'config::save') {
        $jsonrpc->makeSuccess(config::save($params['key'], $params['value'], $params['plugin']));
    }
    if (isset($params['plugin']) && $params['plugin'] != '') {
        log::add('api', 'info', 'Demande pour le plugin : ' . secureXSS($params['plugin']));
        include_file('core', $params['plugin'], 'api', $params['plugin']);
    } else {
开发者ID:saez0pub,项目名称:core,代码行数:31,代码来源:jeeApi.php


注:本文中的jeedom::apiAccess方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。