[ Guía ] Modulo gRIP
#1
Que tal es una pequeña guía de como usar el modulo gRIP, para entender el tutorial se necesitan conocimientos aceptables.

El modulo gRIP sirve para consumir servicios REST, se manejara método GET, POST, PUT & DELETE, enviando datos en la url y en el body.

Que es una Restful api:
https://bbvaopen4u.com/es/actualidad/api...-proyectos

Que son los métodos "GET, POST, PUT & DELETE":
https://developer.mozilla.org/es/docs/We...%C3%ADfico.

Que es el status code http:
https://es.wikipedia.org/wiki/Anexo:C%C3...stado_HTTP

Que es un JSON
https://es.wikipedia.org/wiki/JSON

Métodos Disponibles en gRIP ( Dudas sobre eso leer el link antes mencionado )
Código PHP:
enum GripRequestType {
   
GripRequestTypeGet 0,//sera metodo get para obtener datos
   
GripRequestTypePost 1,//método post para enviar datos
   
GripRequestTypePut 2,//método put para actualizar datos
   
GripRequestTypeDelete 3//método delete para eliminar datos



HTTP Status ( Dudas sobre eso leer el link antes mencionado )
Código PHP:
enum GripHTTPStatus {
    
GripHTTPStatusContinue 100,
    
GripHTTPStatusSwitchingProtocols 101,
    
GripHTTPStatusProcessing 102,
    
GripHTTPStatusOk 200,
    
GripHTTPStatusCreated 201,
    
GripHTTPStatusAccepted 202,
    
GripHTTPStatusNonAuthoritativeInformation 203,
    
GripHTTPStatusNoContent 204,
    
GripHTTPStatusResetContent 205,
    
GripHTTPStatusPartialContent 206,
    
GripHTTPStatusMultiStatus 207,
    
GripHTTPStatusAlreadyReported 208,
    
GripHTTPStatusImUsed 226,
    
GripHTTPStatusMultipleChoices 300,
    
GripHTTPStatusMovedPermanently 301,
    
GripHTTPStatusFound 302,
    
GripHTTPStatusSeeOther 303,
    
GripHTTPStatusNotModified 304,
    
GripHTTPStatusUseProxy 305,
    
GripHTTPStatusTemporaryRedirect 307,
    
GripHTTPStatusPermanentRedirect 308,
    
GripHTTPStatusBadRequest 400,
    
GripHTTPStatusUnauthorized 401,
    
GripHTTPStatusPaymentRequired 402,
    
GripHTTPStatusForbidden 403,
    
GripHTTPStatusNotFound 404,
    
GripHTTPStatusMethodNotAllowed 405,
    
GripHTTPStatusNotAcceptable 406,
    
GripHTTPStatusProxyAuthenticationRequired 407,
    
GripHTTPStatusRequestTimeout 408,
    
GripHTTPStatusConflict 409,
    
GripHTTPStatusGone 410,
    
GripHTTPStatusLengthRequired 411,
    
GripHTTPStatusPreconditionFailed 412,
    
GripHTTPStatusPayloadTooLarge 413,
    
GripHTTPStatusUriTooLong 414,
    
GripHTTPStatusUnsupportedMediaType 415,
    
GripHTTPStatusRangeNotSatisfiable 416,
    
GripHTTPStatusExpectationFailed 417,
    
GripHTTPStatusImATeapot 418,
    
GripHTTPStatusMisdirectedRequest 421,
    
GripHTTPStatusUnprocessableEntity 422,
    
GripHTTPStatusLocked 423,
    
GripHTTPStatusFailedDependency 424,
    
GripHTTPStatusUpgradeRequired 426,
    
GripHTTPStatusPreconditionRequired 428,
    
GripHTTPStatusTooManyRequests 429,
    
GripHTTPStatusRequestHeaderFieldsTooLarge 431,
    
GripHTTPStatusUnavailableForLegalReasons 451,
    
GripHTTPStatusInternalServerError 500,
    
GripHTTPStatusNotImplemented 501,
    
GripHTTPStatusBadGateway 502,
    
GripHTTPStatusServiceUnavailable 503,
    
GripHTTPStatusGatewayTimeout 504,
    
GripHTTPStatusHttpVersionNotSupported 505,
    
GripHTTPStatusVariantAlsoNegotiates 506,
    
GripHTTPStatusInsufficientStorage 507,
    
GripHTTPStatusLoopDetected 508,
    
GripHTTPStatusNotExtended 510,
    
GripHTTPStatusNetworkAuthenticationRequired 511,
}; 


Código PHP:
enum GripBody {
   
Empty_GripBody = -1,
   
Invalid_GripBody 0,

Datos para ver si el body es invalido o esta vacio

Código PHP:
enum GripJSONValue {
    
Invalid_GripJSONValue 0,

Para verificar si el JSON es valido

Código PHP:
enum GripResponseState {
   
GripResponseStateCancelled 1,
   
GripResponseStateError 2,
   
GripResponseStateSuccessful 3,
   
GripResponseStateTimeout 4,

Para verificar si es correcto la respuesta, tardo demasiado o hubo un error


Se debe tener en cuenta que en los get y delete solo se pueden enviar datos en la url o en los headers,
a diferencia de post y put que se pueden enviar datos en la url, los headers y el body.


Método POST (Creando un email y password)

Código PHP:
public fnTest(id)
{
    
//creamos el JSON
    
new GripJSONValue:data grip_json_init_object();
    
//creamos una llave con su respectivo valor
    
grip_json_object_set_string(data"email""[email protected]");
    
//creamos una llave con su respectivo valor
    
grip_json_object_set_string(data"password""1234");

    
//creamos la variable donde enviaremos los datos en el body si es un json valido si no se envia vacio
    
new GripBody:body data != Invalid_GripJSONValue grip_body_from_json(data) : Empty_GripBody;

    
//creamos la variable opciones
    
new GripRequestOptions:options grip_create_default_options();
    
//enviamos en los headers que el tipo es json
    
grip_options_add_header(options"Content-Type""application/json");
    
//el usuario es grip
    
grip_options_add_header(options"User-Agent""Grip");
    
    
grip_request(
        
"https://www.soedivx.net/xdxd/"//parametro para la url
        
body//enviamos los datos en el body
        
GripRequestTypePost//indicamos que es una consulta post 
        /*
            otros tipos de request

            enum GripRequestType {
               GripRequestTypeGet = 0,
               GripRequestTypePost = 1,
               GripRequestTypePut = 2,
               GripRequestTypeDelete = 3
            }
        */
        
"handlerTest"//registramos el handler donde obtendremos la respuesta
        
options//enviamos las opciones
        
id //enviamos el id
    
);

    
//grip_request(const uri[], GripBody:body, GripRequestType:type, const handler[], opciones, otros_datos)
    
    
grip_destroy_json_value(data);//destruimos el json
    
grip_destroy_body(body);//destruimos el body
    
grip_destroy_options(options);//destruimos las opciones
}


public 
handlerTestid //registramos el id que se envio en el handler, si no se envia no lo toma en cuenta
{
    
/*
    enum GripResponseState {
       GripResponseStateCancelled = 1,
       GripResponseStateError = 2,
       GripResponseStateSuccessful = 3,
       GripResponseStateTimeout = 4,
    }
    */
    
new GripResponseState:responseState grip_get_response_state();//obtenemos el estado
    
if (responseState != GripResponseStateSuccessful) {//si el estado es distinto de 3 que es el correcto
        
server_print("Response Status Faild: [ %d ]"responseState);//mandamos un print diciendo el estado
        
return;//paramos la función
    
}

    new 
GripHTTPStatus:status grip_get_response_status_code();//obtenemos el status code
    
if (status != GripHTTPStatusOk//si el estado es distinto de 200
    
{
        
server_print("Status Code: [ %d ]"status);//printeamos el estado si hay error
        
return;//paramos la función
    
}
    new 
szBuffer[1024];
    new 
GripJSONValue:responseBody grip_json_parse_response_body(szBuffercharsmax(szBuffer));//obtenemos la respuesta en el body

    
if(responseBody == Invalid_GripJSONValue)//verificamos que la respuesta sea un json valido
    
{
        
server_print("JSON Invalido: [ %d ]"Invalid_GripJSONValue)//printeamos que no es valido
        
return;//paramos la función
    
}

    new 
szData[52];
    
//suponiendo que la respuesta del json tiene una llave llamada email, obtenemos su valor 
    
new GripJSONValue:email grip_json_object_get_value(responseBody"email");
    
grip_json_get_string(emailszDatacharsmax(szData))//obtenemos el valor de la llave
    
server_print("email %s"szData);//printeamos el valor
    
grip_destroy_json_value(email);//destruimos la llave

    //suponiendo que la respuesta del json tiene una llave llamada password, obtenemos su valor 
    
new GripJSONValue:password grip_json_object_get_value(responseBody"password");
    
grip_json_get_string(passwordszDatacharsmax(szData))//obtenemos el valor de la llave
    
server_print("password %s"szData);//printeamos el valor
    
grip_destroy_json_value(password);//destruimos la llave

    
grip_destroy_json_value(responseBody);//destruimos la respuesta





Método GET (Obteniendo un top15)

Código PHP:
/*
    Usando GRIP (GET) + JSON


    Obteniendo la respuesta como string
    y convirtiendolo a JSON con la librería JSON


    La respuesta esperada
    es algo asi

    [
        {
            userName : ....
            reset: .....
        },
        {
            userName : ....
            reset: .....
        }
    ]
    por cual debemos acceder a cada posición y dentro de ella a cada llave
*/
public showTop8id )
{
    if(!
bTop//si no se a cargado el top
        
return;//paramos la función

    
show_motdidmotdTop"[ AMXX ] Top8." );//mostramos los datos
}

public 
getTop( )
{
    
bTop false;
    new 
url[250];
    
formatex(urlcharsmax(url), "dominio.com/topUsers?format=json");//registramos la url y enviamos de parametro format con el valor de json para el get
    
grip_request(
        
url//url
        
Empty_GripBody,//enviamos el body vacio
        
GripRequestTypeGet//método get
        
"reqTop"//registramos el handler
    
);
}
public 
reqTop( )//handler
{
    new 
GripResponseState:responseState grip_get_response_state();//obtenemos el estado
    
if (responseState != GripResponseStateSuccessful) {//si el estado es distinto de 3 que es el correcto
        
server_print("Response Status Faild: [ %d ]"responseState);//mandamos un print diciendo el estado
        
return;//paramos la función
    
}

    new 
GripHTTPStatus:status grip_get_response_status_code();//obtenemos el status code
    
if (status != GripHTTPStatusOk//si el estado es distinto de 200
    
{
        
server_print("Status Code: [ %d ]"status);//printeamos el estado si hay error
        
return;//paramos la función
    
}

    new 
response[1024];
    
grip_get_response_body_string(responsecharsmax(response));//obtenemos la respuesta del body como string
    //si la respuesta esperada no es un json basta con usas grip_get_response_body_string y ya usas el texto 
    //a su gusto, por ejemplo equal(response, "Y") y ya no va el paso de abajo

    
new JSON:root_value json_parse(response);//analizamos que sea un json

    
if (!json_is_array(root_value))//no es un arreglo?
    
{
        
server_print("No es un json valido");
        return;
//paramos la función
    
}

    new 
JSON:object;//creamos una variable tipo JSON
    
new data[500];
    static 
valval json_array_get_count(root_value);//obtenemos el tamaño del objeto json
    
static lenlen 0;

    
len += formatex(motdTop[len], charsmax(motdTop)- len,
    
"<body>\
    <style>\
    #customers {\
    font-family: ^"
Trebuchet MS^", Arial, Helvetica, sans-serif;\
    border-collapse: collapse;\
    width: 100%;\
    margin: 0 auto;\
    }\
    #customers td, #customers th {\
    border: 1px solid #ddd;\
    padding: 8px 55px;\
    }\
    #customers tr:nth-child(even){background-color: #f2f2f2;}\
    #customers tr:hover {background-color: #ddd;}\
    #customers th {\
    padding-top: 12px;\
    padding-bottom: 12px;\
    text-align: left;\
    background-color: #4CAF50;\
    color: white;\
    }\
    </style><table id=customers>\
    " 
);
    
len += formatexmotdTop[len], charsmax(motdTop)- len"<tr>\
    <th>Name</th>\
    <th>Reset</th>\
    <th>Level</th>\
    <th>Experience</th>\
    </tr>\
    "
);
    for(new 
0val; ++i){
    
object json_array_get_value(root_valuei);//obtenemos la posición

    
len += formatexmotdTop[len], charsmax(motdTop)- len"<tr>");//mostramos los datos
    
json_object_get_string(object"userName"datacharsmax(data), true);//obtenemos el valor de la llave
    
len += formatexmotdTop[len], charsmax(motdTop)- len"<td>%s</td>"data);//mostramos los datos
    
json_object_get_string(object"reset"datacharsmax(data), true);//obtenemos el valor de la llave
    
len += formatexmotdTop[len], charsmax(motdTop)- len"<td>%s</td>"data);//mostramos los datos
    
json_object_get_string(object"Level"datacharsmax(data), true);//obtenemos el valor de la llave
    
len += formatexmotdTop[len], charsmax(motdTop)- len"<td>%s</td>"data);//mostramos los datos
    
json_object_get_string(object"experience"datacharsmax(data), true);//obtenemos el valor de la llave
    
len += formatexmotdTop[len], charsmax(motdTop)- len"<td>%s</td>"data);//mostramos los datos
    
len += formatexmotdTop[len], charsmax(motdTop)- len"</tr>");

    }

    
json_free(object);//destruimos el objeto
    
json_free(root_value);//destrunimos  el json
    
len += formatexmotdTop[len], charsmax(motdTop)- len"</table>" );
    
len += formatexmotdTop[len], charsmax(motdTop)- len"</body>" );

    
bTop true;//se cargo el top






Método PUT (Actualizando datos)

Código PHP:
/*
    enviando un json como string a grip_body_from_string
*/
public updateStatusidfk_idconnected )
{
    static 
data[500], url[350], len;
    
len 0;

    
len += formatex(data[len], charsmax(data) - len"{ ^"connected^": %d }"connected);//enviamos un JSON con el valor de conected que sera lo que se actualizara, se envian en el body
    
formatex(urlcharsmax(url), "domino.com/users/conected/%d"fk_id );//enviamos la id del user por la url

    
new GripBody:body grip_body_from_string(data);//creamos la función para enviar el json como string
    
new GripRequestOptions:options grip_create_default_options();//creamos las opciones
    
grip_options_add_header(options"Content-Type""application/json");//enviamos en los headers que el tipo enviado es json
    
grip_options_add_header(options"User-Agent""Grip");//el agente grip

    
grip_request(
        
url//url
        
body//datos enviados en el body
        
GripRequestTypePut//método put
        
"reqStatus"//registramos el handler
        
options,//enviamos las opciones del header
        
id//enviamos la id al handler
     
);
 
    
grip_destroy_body(body);//destruimos el body
    
grip_destroy_options(options);//destruimos las opciones
}
public 
reqStatusid ){
    new 
GripResponseState:responseState grip_get_response_state();//obtenemos el estado
    
if (responseState != GripResponseStateSuccessful) {//si el estado es distinto de 3 que es el correcto
        
server_print("Response Status Faild: [ %d ]"responseState);//mandamos un print diciendo el estado
        
return;//paramos la función
    
}

    new 
GripHTTPStatus:status grip_get_response_status_code();//obtenemos el status code
    
if (status != GripHTTPStatusOk//si el estado es distinto de 200
    
{
        
server_print("Status Code: [ %d ]"status);//printeamos el estado si hay error
        
return;//paramos la función
    
}

    new 
response[1024], txt[1024];
    
grip_get_response_body_string(responsecharsmax(response));
    
formatex(txtcharsmax(txt), "[%s]"response);
    new 
JSON:root_value json_parse(txt);

    if(
responseBody == Invalid_GripJSONValue)//verificamos que la respuesta sea un json valido
    
{
        
server_print("JSON Invalido: [ %d ]"Invalid_GripJSONValue)//printeamos que no es valido
        
return;//paramos la función
    
}
    
/*
        Suponiendo que la respuesta es {"msj": "Usuario conectado actualizado/correctamente"}
    */    
    
new szData[52];
    
//suponiendo que la respuesta del json tiene una llave llamada email, obtenemos su valor 
    
new GripJSONValue:msj grip_json_object_get_value(responseBody"msj");//obtenemos la llave
    
grip_json_get_string(msjszDatacharsmax(szData))//obtenemos el valor de la llave
    
server_print("msj %s"szData);//printeamos el valor
    
grip_destroy_json_value(msj);//destruimos la llave

    
if(equal(szData"Usuario conectado actualizado/correctamente"))
    {
        
//se actualizo
    
}






Método DELETE


Código PHP:
    new url[250];
formatex(urlcharsmax(url), "dominio.com/cuenta?id=1");//enviamos la id en la url
grip_request(
    
url//url
    
Empty_GripBody,//enviamos el body vacio
    
GripRequestTypeDelete//método delete
    
"DeleteHandler"//registramos el handler
); 


& el handler es igual a los ya mencionados anteriormente.


Include documentado

Código PHP:
/*
 * gRIP
 * Copyright © 2018 Alik Aslanyan <[email protected]>
 * Copyright © The AMX Mod X Development Team.
 *
 *
 *    This program 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.
 *
 *    This program 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 this program; if not, write to the Free Software Foundation,
 *    Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *    In addition, as a special exception, the author gives permission to
 *    link the code of this program with the Half-Life Game Engine ("HL
 *    Engine") and Modified Game Libraries ("MODs") developed by Valve,
 *    L.L.C ("Valve").  You must obey the GNU General Public License in all
 *    respects for all of the code used other than the HL Engine and MODs
 *    from Valve.  If you modify this file, you may extend this exception
 *    to your version of the file, but you are not obligated to do so.  If
 *    you do not wish to do so, delete this exception statement from your
 *    version.
 *
 */
 
/*
*    Some of the API definitions were taken from AMX Mod X. There are places, where I decided to do somethings differently.
*    Btw JSON implementation is designed to be 90% drop in replacement of AMX Mod X json.inc file.
*/
 
#if defined _grip_included
   #endinput
#endif
#define _grip_included
 
#pragma reqlib grip
#if !defined AMXMODX_NOAUTOLOAD
   #pragma loadlib grip
#endif
 
 
enum GripRequestType {
   
GripRequestTypeGet 0,
   
GripRequestTypePost 1,
   
GripRequestTypePut 2,
   
GripRequestTypeDelete 3
}
 
enum GripRequestCancellation {
   
Invalid_GripRequestCancellation 0,
}
 
enum GripRequestOptions {
   
Empty_GripRequestOptions = -1,
   
Invalid_GripRequestOptions 0,
}
 
enum GripBody {
   
Empty_GripBody = -1,
   
Invalid_GripBody 0,
}
 
enum GripJSONValue {
    
Invalid_GripJSONValue 0,
}
 
/*
 * JSON types
 */
enum GripJSONType
{
   
GripJSONNull    1,
   
GripJSONString  2,
   
GripJSONNumber  3,
   
GripJSONObject  4,
   
GripJSONArray   5,
   
GripJSONBoolean 6,
   
GripJSONError 7,
};
 
enum GripResponseState {
   
GripResponseStateCancelled 1,
   
GripResponseStateError 2,
   
GripResponseStateSuccessful 3,
   
GripResponseStateTimeout 4,
}
 
enum GripHTTPStatus {
    
GripHTTPStatusContinue 100,
    
GripHTTPStatusSwitchingProtocols 101,
    
GripHTTPStatusProcessing 102,
    
GripHTTPStatusOk 200,
    
GripHTTPStatusCreated 201,
    
GripHTTPStatusAccepted 202,
    
GripHTTPStatusNonAuthoritativeInformation 203,
    
GripHTTPStatusNoContent 204,
    
GripHTTPStatusResetContent 205,
    
GripHTTPStatusPartialContent 206,
    
GripHTTPStatusMultiStatus 207,
    
GripHTTPStatusAlreadyReported 208,
    
GripHTTPStatusImUsed 226,
    
GripHTTPStatusMultipleChoices 300,
    
GripHTTPStatusMovedPermanently 301,
    
GripHTTPStatusFound 302,
    
GripHTTPStatusSeeOther 303,
    
GripHTTPStatusNotModified 304,
    
GripHTTPStatusUseProxy 305,
    
GripHTTPStatusTemporaryRedirect 307,
    
GripHTTPStatusPermanentRedirect 308,
    
GripHTTPStatusBadRequest 400,
    
GripHTTPStatusUnauthorized 401,
    
GripHTTPStatusPaymentRequired 402,
    
GripHTTPStatusForbidden 403,
    
GripHTTPStatusNotFound 404,
    
GripHTTPStatusMethodNotAllowed 405,
    
GripHTTPStatusNotAcceptable 406,
    
GripHTTPStatusProxyAuthenticationRequired 407,
    
GripHTTPStatusRequestTimeout 408,
    
GripHTTPStatusConflict 409,
    
GripHTTPStatusGone 410,
    
GripHTTPStatusLengthRequired 411,
    
GripHTTPStatusPreconditionFailed 412,
    
GripHTTPStatusPayloadTooLarge 413,
    
GripHTTPStatusUriTooLong 414,
    
GripHTTPStatusUnsupportedMediaType 415,
    
GripHTTPStatusRangeNotSatisfiable 416,
    
GripHTTPStatusExpectationFailed 417,
    
GripHTTPStatusImATeapot 418,
    
GripHTTPStatusMisdirectedRequest 421,
    
GripHTTPStatusUnprocessableEntity 422,
    
GripHTTPStatusLocked 423,
    
GripHTTPStatusFailedDependency 424,
    
GripHTTPStatusUpgradeRequired 426,
    
GripHTTPStatusPreconditionRequired 428,
    
GripHTTPStatusTooManyRequests 429,
    
GripHTTPStatusRequestHeaderFieldsTooLarge 431,
    
GripHTTPStatusUnavailableForLegalReasons 451,
    
GripHTTPStatusInternalServerError 500,
    
GripHTTPStatusNotImplemented 501,
    
GripHTTPStatusBadGateway 502,
    
GripHTTPStatusServiceUnavailable 503,
    
GripHTTPStatusGatewayTimeout 504,
    
GripHTTPStatusHttpVersionNotSupported 505,
    
GripHTTPStatusVariantAlsoNegotiates 506,
    
GripHTTPStatusInsufficientStorage 507,
    
GripHTTPStatusLoopDetected 508,
    
GripHTTPStatusNotExtended 510,
    
GripHTTPStatusNetworkAuthenticationRequired 511,
};
 
/**
 * Gets state of the response.
 *
 * @note          This has nothing to do with HTTP status codes.
 *
 * @return         Returns current response state.
 */
native GripResponseState:grip_get_response_state();
 
 
/**
 * Gets HTTP status code of the response.
 *
 * @return         Returns current response state.
 */
native any:grip_get_response_status_code();
 
/**
 * Returns whether request exists/active. 
 *
 * @note          This has nothing to do with HTTP status codes.
 *
 * @param request   Request handle.
 *  
 * @return         Returns current response state.
 */
native grip_is_request_active(GripRequestCancellation:request);
 
/**
 * Creates new body handle from string
 * 
 * @note          Body should be destroyed with the relevant call.
 *
 * @param str      Zero terminated string from which body should be created
 *  
 * @return         Newly crated body handle
 */
native GripBody:grip_body_from_string(str[]);
 
/**
 * Creates new body handle from string
 *
 * @note                  Body should be destroyed with the relevant call.
 *
 * @param str              Zero terminated string from which body should be created
 * @param pretty            True to format pretty JSON string, false to not
 * @param recursion_limit   Limit of the internal recursion
 *
 * @return                 Newly crated body handle
 */
native GripBody:grip_body_from_json(GripJSONValue:valuebool:pretty falserecursion_limit 100);
 
/**
 * Destroys body handle
 *
 * @param body      Body to be destroyed
 *  
 * @noreturn
 */
native grip_destroy_body(GripBody:body);
 
/**
 * Starts sending of the request  
 * @note   The handle should look like:
 *       public RequestHandler(const any: userData);
 *
 *
 * @param uri      Request URI. Supports TLS.
 * @param type      Request type which should be sended.
 * @param body      Reqeust body, can be either JSON or plaintext 
 * @param handler   A callback which will be called when request finishes execution
 * @param options   Request options containing HTTP headers, timeout and so on..
 * @param userData    User data (can be datapack or anything)
 *  
 * @return      Cancellation handle.
 */
native GripRequestCancellation:grip_request(const uri[], GripBody:bodyGripRequestType:type, const handler[], GripRequestOptions:options Empty_GripRequestOptions, const anyuserData 0);
 
/**
 * Cancel sending of the request and receiving of response.  
 *
 * @param cancellation   Cancellation handle of the request.
 *  
 * @return      Request handle
 */
native grip_cancel_request(GripRequestCancellation:cancellation);
 
/**
 * Get current error description. Implementation defined.  
 *
 * @note There are certain AMXX limitations to maximum string sizes.  
 *
 * @param buffer       Output buffer to which description should be written
 * @param buffer_size   Maximum length of the buffer.
 *  
 * @return              Number of cells written
 */
native grip_get_error_description(buffer[], buffer_size);
 
/**
 * Get current response body as string.
 *
 * @note There are certain AMXX limitations to maximum string sizes.  
 *
 * @param buffer       Output buffer to which body should be written
 * @param buffer_size   Maximum length of the buffer.
 *  
 * @return              Number of cells written
 */
native grip_get_response_body_string(buffer[], buffer_size);
 
/**
 * Destroy this JSON value
 *
 * @param json_value   JSON Value to be destroyed.
 *
 * @noreturn
 */
native grip_destroy_json_value(GripJSONValue:grip_json_value);
 
/**
 * Create options with empty headers and some timeout.
 *
 * @note       Options should be destroyed with the relevant call.
 *
 * @param timeout   timeout -1 to disable, >0 to enable timeout.
 *
 * @return       Request options handle.
 */
native GripRequestOptions:grip_create_default_options(Float:timeout = -1.0);
 
/**
 * Destroy this options
 *
 * @noreturn
 */
native grip_destroy_options(GripRequestOptions:options);
 
/**
 * Add HTTP Header to this options.
 *.
 * @param options   Options to which header should be added
 * @param headerName    Header name
 * @param headerValue   Header value
 *
 * @return       Request options handle.
 */
native grip_options_add_header(GripRequestOptions:options, const headerName[], const headerValue[]);
 
 
/**
 * Create options with headers and some timeout.
 *
 * @note       Options should be destroyed with the relevant call.
 *
 * @param headers   Array of header pairs.
 * @param headers_count   Count of the header pairs.
 * @param timeout   timeout -1 to disable, >0 to enable timeout.
 *
 * @return       Request options handle.
 */
stock grip_create_create_options(const headers[][2][], const headers_countFloat:timeout = -1.0) {
   new 
GripRequestOptions:options grip_create_default_options(timeout);
    
   for(new 
0headers_count; ++i) {
      
grip_options_add_header(optionsheaders[i][0], headers[i][1]);
   }
    
   return 
options;
}
 
/**
 * Parse current response body as JSON.
 *
 * @param buffer               Output buffer to which possible error should be written
 * @param error_buffer_size       Maximum length of the buffer.
 *
 *
 * @return                      JSON Value handle. If error occurred, returns invalid handle.
 */
native GripJSONValue:grip_json_parse_response_body(error_buffer[], const error_buffer_size);
 
/**
 * Parses string that contains JSON.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param string            String to parse
 * @param buffer           Output buffer to which possible error should be written
 * @param error_buffer_size   Maximum length of the buffer.
 *
 * @return                  JSON value, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_parse_string(const string[], error_buffer[], const error_buffer_size);
 
/**
 * Parses file that contains JSON.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param string            String to parse
 *
 * @return                  JSON value, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_parse_file(const file[], error_buffer[], const error_buffer_size);
 
/**
 * Checks if the first value is the same as the second one.
 *
 * @param value1            JSON handle
 * @param value2            JSON handle
 *
 * @return                  True if they are the same, false otherwise
 * @error                   If passed value is not a valid handle
 */
native bool:grip_json_equals(const GripJSONValue:value1, const GripJSONValue:value2);
 
/**
 * Validates json by checking if object have identically named
 * fields with matching types.
 *
 * @note                    Schema {"name":"", "age":0} will validate
 *                          {"name":"Joe", "age":25} and {"name":"Joe", "age":25, "gender":"m"},
 *                          but not {"name":"Joe"} or {"name":"Joe", "age":"Cucumber"}.
 *
 * @note                    In case of arrays, only first value in schema
 *                          is checked against all values in tested array.
 *
 * @note                    Empty objects ({}) validate all objects,
 *                          empty arrays ([]) validate all arrays,
 *                          null validates values of every type.
 *
 * @param schema            JSON handle
 * @param value             JSON handle
 *
 * @return                  True if passed value is valid, false otherwise
 * @error                   If a schema handle or value handle is invalid
 */
native bool:grip_json_validate(const GripJSONValue:schema, const GripJSONValue:value);
 
/**
 * Gets value's parent handle.
 *
 * @note                  Parent's handle Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param value           JSON handle
 *
 * @return                Parent's handle
 */
// This method is wontfix, because of mixed value/ref semantics of json.inc
// native GripJSONValue:grip_json_get_parent(const GripJSONValue:value);
 
/**
 * Gets JSON type of passed value.
 *
 * @param value             JSON handle
 *
 * @return                  JSON type (GripJSONType constants)
 * @error                   If a value handle is invalid
 */
native GripJSONType:grip_json_get_type(const GripJSONValue:value);
 
/**
 * Inits an empty object.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_object();
 
/**
 * Inits an empty array.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_array();
 
/**
 * Inits string data.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param value             String that the handle will be initialized with
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_string(const value[]);
 
/**
 * Inits a number.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param value             Integer number that the handle will be initialized with
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_number(value);
 
/**
 * Inits a float number.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param value             Float number that the handle will be initialized with
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_float(Float:value);
#define grip_json_init_real(%1) grip_json_init_float(%1)
 
/**
 * Inits a boolean value.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param value             Boolean value that the handle will be initialized with
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_bool(bool:value);
 
/**
 * Inits a null.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 */
native GripJSONValue:grip_json_init_null();
 
/**
 * Creates deep copy of passed value.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param value             JSON handle to be copied
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 * @error                   If passed value is not a valid handle
 */
native GripJSONValue:grip_json_deep_copy(const GripJSONValue:value);
 
/**
 * Gets string data.
 *
 * @param value             JSON handle
 * @param buffer            Buffer to copy string to
 * @param maxlen            Maximum size of the buffer
 *
 * @return                  The number of cells written to the buffer
 * @error                   If passed value is not a valid handle
 */
native grip_json_get_string(const GripJSONValue:valuebuffer[], maxlen);
 
/**
 * Gets a number.
 *
 * @param value             JSON handle
 *
 * @return                  Number
 * @error                   If passed value is not a valid handle
 */
native grip_json_get_number(const GripJSONValue:value);
 
/**
 * Gets a float number.
 *
 * @param value             JSON handle
 *
 * @return                  Real number
 * @error                   If passed value is not a valid handle
 */
#define grip_json_get_real(%1) grip_json_get_float(%1)
native Float:grip_json_get_float(const GripJSONValue:value);
 
/**
 * Gets a boolean value.
 *
 * @param value             JSON handle
 *
 * @return                  Boolean value
 * @error                   If passed value is not a valid handle
 */
native bool:grip_json_get_bool(const GripJSONValue:value);
 
/**
 * Gets a value from the array.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param array             Array handle
 * @param index             Position in the array (starting from 0)
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 * @error                   If passed handle is not a valid array
 */
native GripJSONValue:grip_json_array_get_value(const GripJSONValue:array, index);
 
/**
 * Gets string data from the array.
 *
 * @param array             Array handle
 * @param index             Position in the array (starting from 0)
 * @param buffer            Buffer to copy string to
 * @param maxlen            Maximum size of the buffer
 *
 * @return                  The number of cells written to the buffer
 * @error                   If passed handle is not a valid array
 */
native grip_json_array_get_string(const GripJSONValue:array, indexbuffer[], buffer_size);
 
/**
 * Gets a number from the array.
 *
 * @param array             Array handle
 * @param index             Position in the array (starting from 0)
 *
 * @return                  The number as integer
 * @error                   If passed handle is not a valid array
 */
native grip_json_array_get_number(const GripJSONValue:array, index);
 
/**
 * Gets a real number from the array.
 *
 * @param array             Array handle
 * @param index             Position in the array (starting from 0)
 *
 * @return                  The number as float
 * @error                   If passed handle is not a valid array
 */
#define grip_json_array_get_real(%1, %2) grip_json_array_get_float(%1, %2)
native Float:grip_json_array_get_float(const GripJSONValue:array, index);
 
/**
 * Gets a boolean value from the array.
 *
 * @param array             Array handle
 * @param index             Position in the array (starting from 0)
 *
 * @return                  Boolean value
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_get_bool(const GripJSONValue:array, index);
 
/**
 * Gets count of the elements in the array.
 *
 * @param array             Array handle
 *
 * @return                  Number of elements in the array
 * @error                   If passed handle is not a valid array
 */
native grip_json_array_get_count(const GripJSONValue:array);
 
/**
 * Replaces an element in the array with value.
 *
 * @param array             Array handle
 * @param index             Position in the array to be replaced
 * @param value             JSON handle to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_replace_value(GripJSONValue:array, index, const GripJSONValue:value);
 
/**
 * Replaces an element in the array with string data.
 *
 * @param array             Array handle
 * @param index             Position in the array to be replaced
 * @param string            String to copy
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_replace_string(GripJSONValue:array, index, const string[]);
 
/**
 * Replaces an element in the array with number.
 *
 * @param array             Array handle
 * @param index             Position in the array to be replaced
 * @param number            Number to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_replace_number(GripJSONValue:array, indexnumber);
 
/**
 * Replaces an element in the array with real number.
 *
 * @param array             Array handle
 * @param index             Position in the array to be replaced
 * @param number            Real number to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_replace_float(GripJSONValue:array, indexFloat:number);
#define grip_json_array_replace_real(%1, %2, %2) grip_json_array_replace_float(%1, %2, %3)
 
/**
 * Replaces an element in the array with boolean value.
 *
 * @param array             Array handle
 * @param index             Position in the array to be replaced
 * @param boolean           Boolean value to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_replace_bool(GripJSONValue:array, indexbool:boolean);
 
/**
 * Replaces an element in the array with null.
 *
 * @param array             Array handle
 * @param index             Position in the array to be replaced
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_replace_null(GripJSONValue:array, index);
 
/**
 * Appends a value in the array.
 *
 * @param array             Array handle
 * @param value             JSON handle to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_append_value(GripJSONValue:array, const GripJSONValue:value);
 
/**
 * Appends string data in the array.
 *
 * @param array             Array handle
 * @param string            String to copy
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_append_string(GripJSONValue:array, const string[]);
 
/**
 * Appends a number in the array.
 *
 * @param array             Array handle
 * @param number            Number to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_append_number(GripJSONValue:array, number);
 
/**
 * Appends a real number in the array.
 *
 * @param array             Array handle
 * @param number            Real number to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_append_float(GripJSONValue:array, Float:number);
#define grip_json_array_append_real(%1, %2, %3) grip_json_array_append_float(%1, %2, %3)
 
/**
 * Appends a boolean value in the array.
 *
 * @param array             Array handle
 * @param boolean           Boolean value to set
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_append_bool(GripJSONValue:array, bool:boolean);
 
/**
 * Appends a null in the array.
 *
 * @param array             Array handle
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_append_null(GripJSONValue:array);
 
/**
 * Removes an element from the array.
 *
 * @note                    Order of values in array may change during execution.
 *
 * @param array             Array handle
 * @param index             Position in the array (starting from 0)
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_remove(GripJSONValue:array, index);
 
/**
 * Removes all elements from the array.
 *
 * @param array             Array handle
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid array
 */
native bool:grip_json_array_clear(GripJSONValue:array);
 
/**
 * Gets a value from the object.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 * @error                   If passed handle is not a valid object
 */
native GripJSONValue:grip_json_object_get_value(const GripJSONValue:object, const name[], bool:dot_not false);
 
/**
 * Gets string data from the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param buffer            Buffer to copy string to
 * @param maxlen            Maximum size of the buffer
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  The number of cells written to the buffer
 * @error                   If passed handle is not a valid object
 */
native grip_json_object_get_string(const GripJSONValue:object, const name[], buffer[], maxlenbool:dot_not false);
 
/**
 * Gets a number from the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  Number
 * @error                   If passed handle is not a valid object
 */
native grip_json_object_get_number(const GripJSONValue:object, const name[], bool:dot_not false);
 
/**
 * Gets a real number from the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  Real number
 * @error                   If passed handle is not a valid object
 */
native Float:grip_json_object_get_float(const GripJSONValue:object, const name[], bool:dot_not false);
#define grip_json_object_get_real(%1, %2, %3) grip_json_object_get_float(%1, %2, %3)
 
/**
 * Gets a boolean value from the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  Boolean value
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_get_bool(const GripJSONValue:object, const name[], bool:dot_not false);
 
/**
 * Gets count of the keys in the object.
 *
 * @param object            Object handle
 *
 * @return                  Keys count
 * @error                   If passed handle is not a valid object
 */
native grip_json_object_get_count(const GripJSONValue:object);
 
/**
 * Gets name of the object's key.
 *
 * @param object            Object handle
 * @param index             Position from which get key name
 * @param buffer            Buffer to copy string to
 * @param maxlen            Maximum size of the buffer
 *
 * @return                  The number of cells written to the buffer
 * @error                   If passed handle is not a valid object
 */
native grip_json_object_get_name(const GripJSONValue:objectindexbuffer[], maxlen);
 
/**
 * Gets a value at the specified position from the object.
 *
 * @note                    Needs to be destroyed using grip_destroy_json_value() native.
 *
 * @param object            Object handle
 * @param index             Position from which get key name
 *
 * @return                  JSON handle, Invalid_GripJSONValue if error occurred
 * @error                   If passed handle is not a valid object
 */
native GripJSONValue:grip_json_object_get_value_at(const GripJSONValue:objectindex);
 
/**
 * Checks if the object has a value with a specific name and type.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param type              Type of value, if JSONError type will not be checked
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if has, false if not
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_has_value(const GripJSONValue:object, const name[], GripJSONType:type GripJSONErrorbool:dot_not false);
 
/**
 * Sets a value in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 * @note                    It also removes the old value if any.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param value             JSON handle to set
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_set_value(GripJSONValue:object, const name[], const GripJSONValue:valuebool:dot_not false);
 
/**
 * Sets string data in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 * @note                    It also removes the old value if any.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param string            String to copy
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_set_string(GripJSONValue:object, const name[], const string[], bool:dot_not false);
 
/**
 * Sets a number in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 * @note                    It also removes the old value if any.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param number            Number to set
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_set_number(GripJSONValue:object, const name[], numberbool:dot_not false);
 
/**
 * Sets a real number in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 * @note                    It also removes the old value if any.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param number            Real number to set
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_set_float(GripJSONValue:object, const name[], Float:numberbool:dot_not false);
#define grip_json_object_set_real(%1, %2, %3, %4) grip_json_object_set_float(%1, %2, %3, %4)
 
/**
 * Sets a boolean value in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 * @note                    It also removes the old value if any.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param boolean           Boolean value to set
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_set_bool(GripJSONValue:object, const name[], bool:booleanbool:dot_not false);
 
/**
 * Sets a null in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 * @note                    It also removes the old value if any.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_set_null(GripJSONValue:object, const name[], bool:dot_not false);
 
/**
 * Removes a key and its value in the object.
 *
 * @note                    If dot notation is used some values may be inaccessible
 *                          because valid names in JSON can contain dots.
 *
 * @param object            Object handle
 * @param name              Key name
 * @param dot_not           True to use dot notation, false to not
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_remove(GripJSONValue:object, const name[], bool:dot_not false);
 
/**
 * Removes all keys and their values in the object.
 *
 * @param object            Object handle
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid object
 */
native bool:grip_json_object_clear(GripJSONValue:object);
 
/**
 * Gets size of serialization.
 *
 * @param value             JSON handle
 * @param pretty            True to count size for pretty format, false to not
 * @param null_byte         True to include null byte, false to not
 * @param recursion_limit   Limit of the internal recursion
 *
 * @return                  Size of serialized string
 * @error                   If passed handle is not a valid value
 */
native grip_json_serial_size(const GripJSONValue:valuebool:pretty falsebool:null_byte falserecursion_limit 100);
 
/**
 * Copies serialized string to the buffer.
 *
 * @param value             JSON handle
 * @param buffer            Buffer to copy string to
 * @param maxlen            Maximum size of the buffer
 * @param pretty            True to format pretty JSON string, false to not
 * @param recursion_limit   Limit of the internal recursion
 *
 * @return                  The number of cells written to the buffer
 * @error                   If passed handle is not a valid value
 */
native grip_json_serial_to_string(const GripJSONValue:valuebuffer[], maxlenbool:pretty falserecursion_limit 100);
 
/**
 * Copies serialized string to the file.
 *
 * @param value             JSON handle
 * @param file              Path to the file
 * @param pretty            True to format pretty JSON string, false to not
 * @param recursion_limit   Limit of the internal recursion
 *
 * @return                  True if succeed, false otherwise
 * @error                   If passed handle is not a valid value
 */
native bool:grip_json_serial_to_file(const GripJSONValue:value, const file[], bool:pretty falserecursion_limit 100); 


Todo lo antes mencionado lo saque de códigos que hice yo y probé tiempo atrás.

Creditos
- al autor del post ( https://c-s.net.ua/forum/topic90058.html )
- Flys por ayudarme hace tiempo con el host para probar las funciones
- metita666 por probar cosas mías hechas con la librería gRIP


Cabe aclarar que el módulo gRIP solo sirve para LINUX, no para windows.

Si el módulo del post original no les anda usen este.
[Imagen: zcsztw-4.png] [Imagen: 6u5fj2-4.png]
[Imagen: linkedin_thumb_image.png][Imagen: 76561198283253977.png][Imagen: linkedin_thumb_image.png]
Responder
#2
Muy buena++, les recomiendo a cualquiera que le de una oportunidad al modulo, esta muy bueno, se pueden hacer cosas bonitas con el y es muy intuitivo. Proud
Responder
#3
Página para validar si un json es valido
https://jsonlint.com/?code=

programa para probar un servicio web y que datos devuelve
https://www.postman.com/
[Imagen: zcsztw-4.png] [Imagen: 6u5fj2-4.png]
[Imagen: linkedin_thumb_image.png][Imagen: 76561198283253977.png][Imagen: linkedin_thumb_image.png]
Responder
#4
Buena guía Approved
Ingeniero agrónomo y desarrollador de Software.

tutoriales-allied
buscas un zp?

"La imitación es la forma más sincera de admiración con la que puede pagar la mediocridad a la grandeza"

Merci Alliedmodders pour m'introduire dans la programmation.
Responder
#5
Bonita Guía. Mario
Corazón I dream of someday being able to have your near. Corazón
[Imagen: 76561199006140497.png]
Responder
#6
(19/06/2020, 11:33 PM)roccoxx escribió: Buena guía  Approved

(19/06/2020, 11:48 PM)andres_1041 escribió: Bonita Guía. Mario

(19/06/2020, 05:07 PM)metita escribió: Muy buena++, les recomiendo a cualquiera que le de una oportunidad al modulo, esta muy bueno, se pueden hacer cosas bonitas con el y es muy intuitivo.  Proud
gracias  Trolleyes



modulo gRIP para windows - module gRIP for windows

https://mega.nz/file/lmggwa6I#2TU0LefhpX...2MD-3W3Jsk
linux otras versiones
[Imagen: zcsztw-4.png] [Imagen: 6u5fj2-4.png]
[Imagen: linkedin_thumb_image.png][Imagen: 76561198283253977.png][Imagen: linkedin_thumb_image.png]
Responder
#7
no había visto!
buena guia!!
estamos para ayudar ! Proud
[Imagen: 76561198090851442.png]
Responder
#8
Código PHP:
Json
{
    
"title":"soy un titulo",
    
"author": {
        
"name":"tuptamadre"
    
}
}


new 
GripJSONValue:author grip_json_init_object();
grip_json_object_set_string(author"name""tuptamadre");

new 
GripJSONValue:body grip_json_init_object();
grip_json_object_set_string(body"title""soy un titulo");
grip_json_object_set_value(body"author"author);


Array

{
    
"title":"soy un titulo",
    
"author": [{
        
"name":"tuptamadre"
    
}]
}

new 
GripJSONValue:author grip_json_init_object();
grip_json_object_set_string(author"name""tuptamadre");


new 
GripJSONValue:array = grip_json_init_array();
grip_json_array_append_value(array, author);

new 
GripJSONValue:body grip_json_init_object();
grip_json_object_set_string(body"title""soy un titulo");
grip_json_object_set_value(body"author", array); 


creditos: metita, totopizza.
[Imagen: zcsztw-4.png] [Imagen: 6u5fj2-4.png]
[Imagen: linkedin_thumb_image.png][Imagen: 76561198283253977.png][Imagen: linkedin_thumb_image.png]
Responder
#9
Un consejo, si obtienen respuesta de un .php por ejemplo asegúrense que el formato del archivo sea UTF8 SIN BOOM ya que a la hora de obtener el json no lo hará correctamente, saludos.
Ingeniero agrónomo y desarrollador de Software.

tutoriales-allied
buscas un zp?

"La imitación es la forma más sincera de admiración con la que puede pagar la mediocridad a la grandeza"

Merci Alliedmodders pour m'introduire dans la programmation.
Responder
#10
todo gud guchi, gracias por la info.
[Imagen: zcsztw-4.png] [Imagen: 6u5fj2-4.png]
[Imagen: linkedin_thumb_image.png][Imagen: 76561198283253977.png][Imagen: linkedin_thumb_image.png]
Responder
#11
Hola, pregunta hay chance de enviar un string o algo asi por el parametro 6 de grip_request

Código PHP:
New iData]
iData] = id
iData
] = id2

grip_request
t_urlbodyGripRequestTypeGet"Grip_Handler"optionsiData ); 

por que lo intento y me da error, existe una forma?

-----------------------------------------------------------------

Alfinal, toco hacer esto

Código PHP:
new idata = (value1 << 16) | value2;

// Desempacar los valores
new value1 = (data >> 16) & 0xFFFF;  // Valor 1
new value2 data 0xFFFF;          // Valor 2 
Responder


Salto de foro:


Usuarios navegando en este tema: 1 invitado(s)