public function testMethod()
 {
     $app = new \OnePHP\App();
     $func = function () {
         return true;
     };
     //default HTTP Requests in OneFramework
     $app->get('/get', $func);
     $app->post('/post', $func);
     $app->put('/put', $func);
     $app->delete('/delete', $func);
     $routes = $app->getRoutes();
     //check if routes are found
     $this->assertEquals('/get', $routes['GET'][0]->route);
     $this->assertEquals('/post', $routes['POST'][0]->route);
     $this->assertEquals('/put', $routes['PUT'][0]->route);
     $this->assertEquals('/delete', $routes['DELETE'][0]->route);
 }
Example #2
0
}
function auth()
{
    $response = array("success" => true, "token" => md5(date(DATE_ATOM)));
    return $response;
}
function checkAuth($token)
{
    $response = array("success" => true);
    if ($token == '') {
        $response["success"] = false;
        $response["message"] = "INVALID_TOKEN";
    }
    return $response;
}
$app = new \OnePHP\App();
$app->get('/api', function () use($app) {
});
$app->get('/api/:action', function ($action) use($app) {
    // verifica o Token
    $auth = checkAuth($app->getRequest()->header("Authorization"));
    if (!$auth["success"]) {
        $app->JsonResponse($auth);
        return;
    }
    // define o nome da model, se não existir usa a base model
    $entity = ucfirst(load($action));
    // instancia a model, passando o nome da action (tabela) como parametro
    $model = new $entity($action);
    // chama o metodo
    try {
<?php

//One Micro Framework - Hello World
//remember enable the .htacess in this folder
require_once 'src/OnePHP/one_framework.php';
/*
 * Remember remove this examples to avoid collisions in routes
 */
//load Micro Framework with debug enabled
$app = new \OnePHP\App();
$app->get('/', function () use($app) {
    //Action on the Root URL
    echo 'Hello world';
});
//test with slug in URL ( ':name' = '{name}' )
$app->get('/:name', function ($name) use($app) {
    echo "<h1> Hello <small> {$name} </small> </h1>";
});
//simple Json Response example
$app->get('/json/:name', function ($name) use($app) {
    return $app->JsonResponse(array('name' => $name));
});
$app->respond(function () use($app) {
    return $app->ResponseHTML('<p> This is a response with code 404. </p>', 404);
});
//Run
$app->listen();
Example #4
0
<?php

require 'boot.php';
//One Micro Framework - Hello World
//remember enable the .htacess in this folder
require_once 'lib/OnePHP/one_framework.php';
/*
 * Remember remove this examples to avoid collisions in routes
 */
//load Micro Framework with debug enabled
$app = new \OnePHP\App();
$app->get('/telegramBot/', function () use($app, $aTParam) {
    //Action on the Root URL
    return $app->ResponseHTML("\r\n        <a href=\"https://api.telegram.org/bot" . $aTParam['token'] . "/setWebhook?url=" . $aTParam['urlWebhooks'] . "\"> attiva WebHooks </a> <br/>\r\n        <a href=\"https://api.telegram.org/bot" . $aTParam['token'] . "/setWebhook?url=\"> disattiva WebHooks </a> <br/>\r\n        <a href=\"https://api.telegram.org/bot" . $aTParam['token'] . "/getUpdates\"> getUpdate WebHooks </a> <br/>\r\n        <a href=\"https://api.telegram.org/bot" . $aTParam['token'] . "/getMe\"> getMe </a> <br/>");
});
$app->post('/telegramBot/command.php', function () use($app, $database) {
    log::addLog('Chiamata');
    try {
        $message = json_decode(file_get_contents('php://input'), true);
        log::addLog(print_r($message, true));
        $database->insert("log", ["chat_idMessage" => $message['message']['message_id'], "chat_idUser" => $message['message']['from']['id'], "chat_name" => $message['message']['from']['first_name'], "chat_surname" => $message['message']['from']['last_name'], "chat_username" => $message['message']['from']['username'], "chat_date" => $message['message']['date'], "chat_text" => $message['message']['text'], "chat_log" => print_r($message, true)]);
    } catch (Exception $e) {
        log::addLog('Caught exception: ' . $e->getMessage());
    }
    return $app->ResponseHTML("Finito.");
});
$app->get('/telegramBot/message.php', function () use($app, $aTParam) {
    $data = array('chat_id' => 28751773, 'text' => 'ciao io funziono...');
    $request = new HTTPRequest($aTParam['urlCommand'] . 'sendMessage', HTTP_METH_POST);
    $request->setRawPostData($data);
    $request->send();