2018-08-08 17:11:45 +02:00
|
|
|
// ***************************************************************************
|
|
|
|
//
|
|
|
|
// Delphi MVC Framework
|
|
|
|
//
|
|
|
|
// Copyright (c) 2010-2018 Daniele Teti and the DMVCFramework Team
|
|
|
|
//
|
|
|
|
// https://github.com/danieleteti/delphimvcframework
|
|
|
|
//
|
|
|
|
// ***************************************************************************
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
// *************************************************************************** }
|
|
|
|
|
2017-09-24 19:40:40 +02:00
|
|
|
unit MVCFramework.JSONRPC;
|
|
|
|
|
2018-08-08 17:11:45 +02:00
|
|
|
{
|
2018-11-21 22:11:58 +01:00
|
|
|
JSON-RPC over HTTP implemented as described here
|
|
|
|
https://www.jsonrpc.org/historical/json-rpc-over-http.html
|
2018-08-08 17:11:45 +02:00
|
|
|
}
|
|
|
|
|
2017-09-24 19:40:40 +02:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2018-05-16 19:46:29 +02:00
|
|
|
System.Classes,
|
|
|
|
Data.DB,
|
|
|
|
System.SysUtils,
|
|
|
|
jsondataobjects,
|
|
|
|
MVCFramework,
|
|
|
|
MVCFramework.Commons,
|
|
|
|
System.Rtti,
|
|
|
|
System.Generics.Collections,
|
|
|
|
MVCFramework.Serializer.Commons,
|
|
|
|
MVCFramework.Serializer.jsondataobjects;
|
2017-09-24 19:40:40 +02:00
|
|
|
|
|
|
|
const
|
|
|
|
JSONRPC_VERSION = '2.0';
|
|
|
|
JSONRPC_HEADER = 'jsonrpc';
|
|
|
|
JSONRPC_METHOD = 'method';
|
|
|
|
JSONRPC_PARAMS = 'params';
|
|
|
|
JSONRPC_ID = 'id';
|
|
|
|
JSONRPC_RESULT = 'result';
|
|
|
|
JSONRPC_ERROR = 'error';
|
|
|
|
JSONRPC_CODE = 'code';
|
|
|
|
JSONRPC_MESSAGE = 'message';
|
|
|
|
JSONRPC_DATA = 'data';
|
|
|
|
|
|
|
|
type
|
2017-09-26 01:02:09 +02:00
|
|
|
IMVCJSONRPCMessage = interface
|
|
|
|
['{73B8D463-75E1-404B-8437-EF4B3C950D2F}']
|
|
|
|
function AsJSONRPCMessage: string;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TMVCJSONRPCMessage = class abstract(TInterfacedObject, IMVCJSONRPCMessage)
|
2017-09-24 19:40:40 +02:00
|
|
|
private
|
|
|
|
fJSON: TJsonObject;
|
|
|
|
protected
|
2017-09-26 01:02:09 +02:00
|
|
|
class procedure CheckVersion(const aJSON: TJsonObject);
|
|
|
|
class procedure CheckMethod(const aJSON: TJsonObject);
|
|
|
|
class procedure CheckID(const aJSON: TJsonObject; out aIsNotification: Boolean);
|
|
|
|
constructor Create; overload;
|
|
|
|
procedure Build(const aJSON: TJsonObject); virtual; abstract;
|
|
|
|
{ IMVCJSONRPCMessage }
|
|
|
|
function AsJSONRPCMessage: string;
|
|
|
|
public
|
|
|
|
function AsJSON: TJsonObject; virtual;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
TJSONRPCObject = class(TObject)
|
2017-09-26 01:02:09 +02:00
|
|
|
protected
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure SetJsonString(const Value: string); virtual;
|
2018-05-16 19:46:29 +02:00
|
|
|
function GetJSONString: string; virtual;
|
2017-09-26 01:02:09 +02:00
|
|
|
function GetJSON: TJsonObject; virtual;
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure SetJSON(const Value: TJsonObject); virtual;
|
2017-09-26 01:02:09 +02:00
|
|
|
public
|
|
|
|
constructor Create; virtual;
|
2017-09-28 00:14:34 +02:00
|
|
|
property AsJSON: TJsonObject read GetJSON write SetJSON;
|
|
|
|
property AsJSONString: string read GetJSONString write SetJsonString;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
TJSONRPCNotification = class(TJSONRPCObject)
|
|
|
|
protected type
|
2017-09-28 00:14:34 +02:00
|
|
|
TJSONRPCRequestParams = TList<TValue>;
|
2018-05-16 19:46:29 +02:00
|
|
|
protected
|
2017-09-26 01:02:09 +02:00
|
|
|
FMethod: string;
|
2018-05-16 19:46:29 +02:00
|
|
|
FParams: TJSONRPCRequestParams;
|
2017-09-26 01:02:09 +02:00
|
|
|
procedure SetMethod(const Value: string);
|
|
|
|
protected
|
|
|
|
function GetJSON: TJsonObject; override;
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
2017-09-26 01:02:09 +02:00
|
|
|
constructor Create; override;
|
|
|
|
destructor Destroy; override;
|
|
|
|
property Method: string read FMethod write SetMethod;
|
|
|
|
property Params: TJSONRPCRequestParams read FParams;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
{$SCOPEDENUMS ON}
|
|
|
|
|
|
|
|
TJSONRPCRequestType = (Request, Notification);
|
|
|
|
|
|
|
|
TJSONRPCRequest = class(TJSONRPCNotification)
|
2017-09-24 19:40:40 +02:00
|
|
|
private
|
2018-05-16 19:46:29 +02:00
|
|
|
FID: TValue;
|
|
|
|
function GetRequestType: TJSONRPCRequestType;
|
|
|
|
protected
|
|
|
|
procedure SetJSON(const JSON: TJsonObject); override;
|
|
|
|
function GetJSON: TJsonObject; override;
|
|
|
|
procedure SetID(const Value: TValue);
|
|
|
|
public
|
|
|
|
constructor Create; override;
|
|
|
|
destructor Destroy; override;
|
|
|
|
property RequestType: TJSONRPCRequestType read GetRequestType;
|
|
|
|
property RequestID: TValue read FID write SetID;
|
|
|
|
end;
|
|
|
|
|
|
|
|
TJSONRPCResponse = class(TJSONRPCObject)
|
|
|
|
private type
|
2017-09-28 00:14:34 +02:00
|
|
|
TJSONRPCResponseError = class
|
|
|
|
private
|
|
|
|
FCode: Integer;
|
|
|
|
FMessage: string;
|
|
|
|
procedure SetCode(const Value: Integer);
|
|
|
|
procedure SetMessage(const Value: string);
|
|
|
|
public
|
|
|
|
property Code: Integer read FCode write SetCode;
|
|
|
|
property ErrMessage: string read FMessage write SetMessage;
|
|
|
|
end;
|
2017-09-26 01:02:09 +02:00
|
|
|
private
|
|
|
|
FResult: TValue;
|
|
|
|
FError: TJSONRPCResponseError;
|
2018-05-16 19:46:29 +02:00
|
|
|
FID: TValue;
|
|
|
|
procedure SetID(const Value: TValue);
|
2017-09-26 01:02:09 +02:00
|
|
|
procedure SetResult(const Value: TValue);
|
|
|
|
procedure SetError(const Value: TJSONRPCResponseError);
|
2017-09-24 19:40:40 +02:00
|
|
|
protected
|
2017-09-26 01:02:09 +02:00
|
|
|
function GetJSON: TJsonObject; override;
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure SetJSON(const JSON: TJsonObject); override;
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
2017-09-26 01:02:09 +02:00
|
|
|
constructor Create; override;
|
2017-09-24 19:40:40 +02:00
|
|
|
destructor Destroy; override;
|
2017-09-26 01:02:09 +02:00
|
|
|
property Result: TValue read FResult write SetResult;
|
|
|
|
property Error: TJSONRPCResponseError read FError write SetError;
|
2018-05-16 19:46:29 +02:00
|
|
|
property RequestID: TValue read FID write SetID;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
|
|
|
EMVCJSONRPCInvalidVersion = class(Exception)
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
EMVCJSONRPCException = class(Exception)
|
2017-09-26 01:02:09 +02:00
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
EMVCJSONRPCErrorResponse = class abstract(Exception)
|
2017-09-24 19:40:40 +02:00
|
|
|
private
|
|
|
|
FJSONRPCErrorCode: Integer;
|
|
|
|
public
|
|
|
|
property JSONRPCErrorCode: Integer read FJSONRPCErrorCode;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
EMVCJSONRPCParseError = class(EMVCJSONRPCErrorResponse)
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
|
|
|
constructor Create;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
EMVCJSONRPCInvalidRequest = class(EMVCJSONRPCErrorResponse)
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
|
|
|
constructor Create;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
EMVCJSONRPCMethodNotFound = class(EMVCJSONRPCErrorResponse)
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
2018-08-08 17:11:45 +02:00
|
|
|
constructor Create(const MethodName: string);
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
EMVCJSONRPCInvalidParams = class(EMVCJSONRPCErrorResponse)
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
2017-09-28 00:14:34 +02:00
|
|
|
constructor Create(const message: string);
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
EMVCJSONRPCInternalError = class(EMVCJSONRPCErrorResponse)
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
|
|
|
constructor Create;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ -32000 to -32099 Server error Reserved for implementation-defined server-errors. }
|
2017-09-26 01:02:09 +02:00
|
|
|
EMVCJSONRPCServerError = class(EMVCJSONRPCErrorResponse)
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
2017-09-28 00:14:34 +02:00
|
|
|
constructor Create(const JSONRPCError: Integer; const message: string);
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
TMVCJSONObject = TJsonObject;
|
2017-09-24 19:40:40 +02:00
|
|
|
TMVCJSONArray = TJDOJsonArray;
|
|
|
|
|
|
|
|
TMVCJSONRPCController = class(TMVCController)
|
2017-10-10 12:19:46 +02:00
|
|
|
private
|
|
|
|
fSerializer: TMVCJsonDataObjectsSerializer;
|
2018-11-21 22:11:58 +01:00
|
|
|
fRPCInstance: TObject;
|
|
|
|
fOwsRPCInstance: Boolean;
|
2017-10-10 12:19:46 +02:00
|
|
|
function GetSerializer: TMVCJsonDataObjectsSerializer;
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure InjectParams(lJSONRPCReq: TJSONRPCRequest; lRTTIMethod: TRttiMethod);
|
2017-09-24 19:40:40 +02:00
|
|
|
protected
|
2018-05-16 19:46:29 +02:00
|
|
|
function CreateError(const RequestID: TValue; const ErrorCode: Integer; const message: string): TJsonObject;
|
2017-09-28 00:14:34 +02:00
|
|
|
function CreateResponse(const RequestID: TValue; const Value: TValue): TJSONRPCResponse;
|
2017-09-26 01:02:09 +02:00
|
|
|
function CreateRequest(const JSON: TJsonObject): TJSONRPCRequest;
|
2017-10-10 12:19:46 +02:00
|
|
|
function JSONObjectAs<T: class, constructor>(const JSON: TJsonObject): T;
|
2017-09-24 19:40:40 +02:00
|
|
|
public
|
|
|
|
[MVCPath]
|
|
|
|
[MVCHTTPMethods([httpPOST])]
|
|
|
|
[MVCConsumes(TMVCMediaType.APPLICATION_JSON)]
|
|
|
|
[MVCProduces(TMVCMediaType.APPLICATION_JSON)]
|
2018-08-08 17:11:45 +02:00
|
|
|
procedure Index; virtual;
|
2018-11-21 22:11:58 +01:00
|
|
|
constructor Create; overload; override;
|
2017-10-10 12:19:46 +02:00
|
|
|
destructor Destroy; override;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2018-11-21 22:11:58 +01:00
|
|
|
TMVCJSONRPCPublisher = class(TMVCJSONRPCController)
|
|
|
|
public
|
|
|
|
constructor Create(const RPCInstance: TObject; const Owns: Boolean = True); reintroduce; overload;
|
|
|
|
end;
|
|
|
|
|
2017-09-24 19:40:40 +02:00
|
|
|
implementation
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
uses
|
2018-05-16 19:46:29 +02:00
|
|
|
MVCFramework.Serializer.Intf,
|
|
|
|
System.TypInfo;
|
2017-09-26 01:02:09 +02:00
|
|
|
|
|
|
|
function JSONDataValueToTValue(const JSONDataValue: TJsonDataValueHelper): TValue;
|
|
|
|
begin
|
|
|
|
case JSONDataValue.Typ of
|
|
|
|
jdtString:
|
|
|
|
begin
|
|
|
|
Result := JSONDataValue.Value;
|
|
|
|
end;
|
|
|
|
jdtFloat:
|
|
|
|
begin
|
|
|
|
Result := JSONDataValue.FloatValue;
|
|
|
|
end;
|
|
|
|
jdtBool:
|
|
|
|
begin
|
|
|
|
Result := JSONDataValue.BoolValue;
|
|
|
|
end;
|
|
|
|
jdtArray:
|
|
|
|
begin
|
2017-09-28 00:14:34 +02:00
|
|
|
Result := TJsonArray.Parse(JSONDataValue.ArrayValue.ToJSON) as TJsonArray;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
jdtObject:
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
Result := TJsonObject.Parse(JSONDataValue.ObjectValue.ToJSON) as TJsonObject;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
jdtInt:
|
|
|
|
begin
|
|
|
|
Result := JSONDataValue.IntValue;
|
|
|
|
end;
|
|
|
|
jdtLong:
|
|
|
|
begin
|
|
|
|
Result := JSONDataValue.LongValue;
|
|
|
|
end;
|
|
|
|
jdtULong:
|
|
|
|
begin
|
|
|
|
Result := JSONDataValue.ULongValue;
|
|
|
|
end;
|
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('Invalid parameter type');
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure TValueToJsonElement(const Value: TValue; const JSON: TJsonObject; const KeyName: string);
|
2017-09-26 01:02:09 +02:00
|
|
|
var
|
|
|
|
lSer: TMVCJsonDataObjectsSerializer;
|
|
|
|
begin
|
|
|
|
case Value.Kind of
|
|
|
|
tkInteger:
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.I[KeyName] := Value.AsInteger;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
tkFloat:
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.D[KeyName] := Value.AsExtended;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
tkString, tkUString, tkWChar, tkLString, tkWString:
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.S[KeyName] := Value.AsString;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
tkInt64:
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.I[KeyName] := Value.AsInt64;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
tkClass:
|
|
|
|
begin
|
|
|
|
if Value.AsObject is TJsonObject then
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.O[KeyName] := TJsonObject.Create;
|
|
|
|
JSON.O[KeyName].Assign(TJsonObject(Value.AsObject));
|
2017-09-26 01:02:09 +02:00
|
|
|
end
|
|
|
|
else if Value.AsObject is TJsonArray then
|
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.A[KeyName] := TJsonArray.Create;
|
|
|
|
JSON.A[KeyName].Assign(TJsonArray(Value.AsObject));
|
2017-09-26 01:02:09 +02:00
|
|
|
end
|
|
|
|
else if Value.AsObject is TDataSet then
|
|
|
|
begin
|
|
|
|
lSer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
try
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.A[KeyName] := TJsonArray.Create;
|
|
|
|
lSer.DataSetToJsonArray(TDataSet(Value.AsObject), JSON.A[KeyName], TMVCNameCase.ncLowerCase, []);
|
2017-09-26 01:02:09 +02:00
|
|
|
finally
|
|
|
|
lSer.Free;
|
|
|
|
end;
|
|
|
|
end
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
lSer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
try
|
2018-05-16 19:46:29 +02:00
|
|
|
JSON.O[KeyName] := TJsonObject.Create;
|
|
|
|
lSer.ObjectToJsonObject(Value.AsObject, JSON.O[KeyName], TMVCSerializationType.stProperties, []);
|
2017-09-26 01:02:09 +02:00
|
|
|
finally
|
|
|
|
lSer.Free;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('Invalid parameter type');
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure AppendTValueToJsonArray(const Value: TValue; const JSONArr: TJsonArray);
|
|
|
|
var
|
|
|
|
lSer: TMVCJsonDataObjectsSerializer;
|
|
|
|
lJArr: TJsonArray;
|
|
|
|
lJObj: TJsonObject;
|
|
|
|
begin
|
|
|
|
case Value.Kind of
|
|
|
|
tkInteger:
|
|
|
|
begin
|
|
|
|
JSONArr.Add(Value.AsInteger);
|
|
|
|
end;
|
|
|
|
tkFloat:
|
|
|
|
begin
|
|
|
|
JSONArr.Add(Value.AsExtended);
|
|
|
|
end;
|
|
|
|
tkString, tkUString, tkWChar, tkLString, tkWString:
|
|
|
|
begin
|
|
|
|
JSONArr.Add(Value.AsString);
|
|
|
|
end;
|
|
|
|
tkInt64:
|
|
|
|
begin
|
|
|
|
JSONArr.Add(Value.AsInt64);
|
|
|
|
end;
|
|
|
|
tkClass:
|
|
|
|
begin
|
|
|
|
if Value.AsObject is TJsonObject then
|
|
|
|
begin
|
|
|
|
lJObj := TJsonObject.Create;
|
|
|
|
JSONArr.Add(lJObj);
|
|
|
|
lJObj.Assign(TJsonObject(Value.AsObject));
|
|
|
|
end
|
|
|
|
else if Value.AsObject is TJsonArray then
|
|
|
|
begin
|
|
|
|
lJArr := TJsonArray.Create;
|
|
|
|
JSONArr.Add(lJArr);
|
|
|
|
lJArr.Assign(TJsonArray(Value.AsObject));
|
|
|
|
end
|
|
|
|
else if Value.AsObject is TDataSet then
|
|
|
|
begin
|
|
|
|
lSer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
try
|
|
|
|
lJArr := TJsonArray.Create;
|
|
|
|
JSONArr.Add(lJArr);
|
|
|
|
lSer.DataSetToJsonArray(TDataSet(Value.AsObject), lJArr, TMVCNameCase.ncLowerCase, []);
|
|
|
|
finally
|
|
|
|
lSer.Free;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
lSer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
try
|
|
|
|
lJObj := TJsonObject.Create;
|
|
|
|
JSONArr.Add(lJObj);
|
|
|
|
lSer.ObjectToJsonObject(Value.AsObject, lJObj, TMVCSerializationType.stProperties, []);
|
|
|
|
finally
|
|
|
|
lSer.Free;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('Invalid parameter type');
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
function StringToJSON(const aValue: string): TJsonObject;
|
|
|
|
var
|
2018-05-16 19:46:29 +02:00
|
|
|
lJSON: TJsonObject;
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
lJSON := nil;
|
|
|
|
try
|
2018-05-16 19:46:29 +02:00
|
|
|
lJSON := TJsonObject.Parse(aValue) as TJsonObject;
|
2017-09-26 01:02:09 +02:00
|
|
|
Result := lJSON;
|
|
|
|
except
|
|
|
|
on E: Exception do
|
|
|
|
begin
|
|
|
|
lJSON.Free;
|
|
|
|
raise EMVCJSONRPCParseError.Create;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-09-24 19:40:40 +02:00
|
|
|
{ TMVCJSONRPCMessage }
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
function TMVCJSONRPCMessage.AsJSON: TJsonObject;
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
Result := TMVCJSONObject.Create;
|
|
|
|
Result.S[JSONRPC_HEADER] := JSONRPC_VERSION;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
function TMVCJSONRPCMessage.AsJSONRPCMessage: string;
|
|
|
|
begin
|
|
|
|
Result := fJSON.ToJSON();
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
class procedure TMVCJSONRPCMessage.CheckID(const aJSON: TMVCJSONObject; out aIsNotification: Boolean);
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
{
|
|
|
|
id
|
|
|
|
An identifier established by the Client that MUST contain a String, Number, or NULL value if included.
|
|
|
|
If it is not included it is assumed to be a notification.
|
|
|
|
The value SHOULD normally not be Null [1] and Numbers SHOULD NOT contain fractional parts [2]
|
|
|
|
}
|
|
|
|
aIsNotification := not aJSON.Contains(JSONRPC_ID);
|
|
|
|
if not aIsNotification then
|
|
|
|
begin
|
|
|
|
if not(aJSON.Types[JSONRPC_ID] in [jdtString, jdtInt, jdtLong, jdtULong, jdtNone]) then
|
2017-09-26 01:02:09 +02:00
|
|
|
raise EMVCJSONRPCException.Create('Message is not a notification but its ''id'' property is not valid');
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
class procedure TMVCJSONRPCMessage.CheckMethod(const aJSON: TMVCJSONObject);
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
if (aJSON.Types[JSONRPC_METHOD] <> jdtString) then
|
|
|
|
raise EMVCJSONRPCException.Create('Invalid ''method''');
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
class procedure TMVCJSONRPCMessage.CheckVersion(const aJSON: TMVCJSONObject);
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
if not Assigned(aJSON) then
|
|
|
|
raise EMVCJSONRPCException.Create('JSON not assigned');
|
|
|
|
if aJSON.S[JSONRPC_HEADER] <> JSONRPC_VERSION then
|
|
|
|
raise EMVCJSONRPCInvalidVersion.Create(JSONRPC_HEADER + ' must be "2.0"');
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
constructor TMVCJSONRPCMessage.Create;
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
{ TMVCJSONRPCController }
|
2017-09-24 19:40:40 +02:00
|
|
|
|
2018-11-21 22:11:58 +01:00
|
|
|
constructor TMVCJSONRPCPublisher.Create(const RPCInstance: TObject; const Owns: Boolean);
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
fRPCInstance := RPCInstance;
|
|
|
|
fOwsRPCInstance := Owns;
|
|
|
|
end;
|
|
|
|
|
|
|
|
constructor TMVCJSONRPCController.Create;
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
fRPCInstance := Self;
|
|
|
|
fOwsRPCInstance := False;
|
|
|
|
end;
|
|
|
|
|
2018-08-08 17:11:45 +02:00
|
|
|
function TMVCJSONRPCController.CreateError(const RequestID: TValue; const ErrorCode: Integer; const message: string): TJsonObject;
|
2017-09-26 01:02:09 +02:00
|
|
|
var
|
2017-09-28 00:14:34 +02:00
|
|
|
lErrResp: TJSONRPCResponse;
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
2017-09-28 00:14:34 +02:00
|
|
|
lErrResp := TJSONRPCResponse.Create;
|
2017-09-26 01:02:09 +02:00
|
|
|
try
|
2017-10-10 12:19:46 +02:00
|
|
|
lErrResp.RequestID := RequestID;
|
2017-09-28 00:14:34 +02:00
|
|
|
lErrResp.Error := TJSONRPCResponse.TJSONRPCResponseError.Create;
|
2017-09-26 01:02:09 +02:00
|
|
|
lErrResp.Error.Code := ErrorCode;
|
2017-09-28 00:14:34 +02:00
|
|
|
lErrResp.Error.ErrMessage := message;
|
2017-09-26 01:02:09 +02:00
|
|
|
Result := lErrResp.AsJSON;
|
|
|
|
finally
|
|
|
|
lErrResp.Free;
|
|
|
|
end;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
function TMVCJSONRPCController.CreateRequest(const JSON: TJsonObject): TJSONRPCRequest;
|
2017-09-26 01:02:09 +02:00
|
|
|
var
|
|
|
|
I: Integer;
|
|
|
|
lParams: TJsonArray;
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
2017-09-28 00:14:34 +02:00
|
|
|
try
|
|
|
|
Result := TJSONRPCRequest.Create;
|
|
|
|
if JSON.Types[JSONRPC_ID] = jdtString then
|
2017-10-10 12:19:46 +02:00
|
|
|
Result.RequestID := JSON.S[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtInt then
|
2017-10-10 12:19:46 +02:00
|
|
|
Result.RequestID := JSON.I[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtLong then
|
2017-10-10 12:19:46 +02:00
|
|
|
Result.RequestID := JSON.L[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtULong then
|
2017-10-10 12:19:46 +02:00
|
|
|
Result.RequestID := JSON.U[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else
|
2017-10-10 12:19:46 +02:00
|
|
|
Result.RequestID := TValue.Empty;
|
2017-09-24 19:40:40 +02:00
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
Result.Method := JSON.S[JSONRPC_METHOD];
|
2017-09-26 01:02:09 +02:00
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
if JSON.Types[JSONRPC_PARAMS] = jdtArray then
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
2017-09-28 00:14:34 +02:00
|
|
|
lParams := JSON.A[JSONRPC_PARAMS];
|
|
|
|
for I := 0 to lParams.Count - 1 do
|
|
|
|
begin
|
|
|
|
Result.Params.Add(JSONDataValueToTValue(lParams[I]));
|
|
|
|
end;
|
|
|
|
end
|
|
|
|
else if JSON.Types[JSONRPC_PARAMS] <> jdtNone then
|
|
|
|
begin
|
|
|
|
raise EMVCJSONRPCException.Create('Params must be a JSON array or null');
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
2017-09-28 00:14:34 +02:00
|
|
|
finally
|
|
|
|
JSON.Free;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
function TMVCJSONRPCController.CreateResponse(const RequestID: TValue; const Value: TValue): TJSONRPCResponse;
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
2017-09-28 00:14:34 +02:00
|
|
|
Result := TJSONRPCResponse.Create;
|
2017-10-10 12:19:46 +02:00
|
|
|
Result.RequestID := RequestID;
|
2017-09-26 01:02:09 +02:00
|
|
|
Result.Result := Value;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
|
2017-10-10 12:19:46 +02:00
|
|
|
destructor TMVCJSONRPCController.Destroy;
|
|
|
|
begin
|
2018-11-21 22:11:58 +01:00
|
|
|
if Assigned(fRPCInstance) and fOwsRPCInstance then
|
|
|
|
begin
|
|
|
|
fRPCInstance.Free;
|
|
|
|
end;
|
2017-10-10 12:19:46 +02:00
|
|
|
fSerializer.Free;
|
|
|
|
inherited;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure TMVCJSONRPCController.InjectParams(lJSONRPCReq: TJSONRPCRequest; lRTTIMethod: TRttiMethod);
|
|
|
|
var
|
|
|
|
lRTTIMethodParams: TArray<TRttiParameter>;
|
|
|
|
lRTTIMethodParam: TRttiParameter;
|
|
|
|
begin
|
|
|
|
lRTTIMethodParams := lRTTIMethod.GetParameters;
|
|
|
|
if (Length(lRTTIMethodParams) <> lJSONRPCReq.Params.Count) then
|
|
|
|
raise EMVCJSONRPCInvalidParams.CreateFmt('Wrong parameters count. Expected %d got %d.',
|
|
|
|
[Length(lRTTIMethodParams), lJSONRPCReq.Params.Count]);
|
|
|
|
for lRTTIMethodParam in lRTTIMethodParams do
|
|
|
|
begin
|
|
|
|
if lRTTIMethodParam.Flags * [pfVar, pfOut, pfArray, pfReference] <> [] then
|
|
|
|
raise EMVCJSONRPCInvalidParams.CreateFmt
|
|
|
|
('Parameter modifier not supported for formal parameter [%s]. Only const and value modifiers are allowed.',
|
|
|
|
[lRTTIMethodParam.Name]);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-10-10 12:19:46 +02:00
|
|
|
function TMVCJSONRPCController.GetSerializer: TMVCJsonDataObjectsSerializer;
|
|
|
|
begin
|
|
|
|
if not Assigned(fSerializer) then
|
|
|
|
fSerializer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
Result := fSerializer;
|
|
|
|
end;
|
|
|
|
|
2018-08-08 17:11:45 +02:00
|
|
|
procedure TMVCJSONRPCController.Index;
|
2017-09-24 19:40:40 +02:00
|
|
|
var
|
2017-09-26 01:02:09 +02:00
|
|
|
lJSONRPCReq: TJSONRPCRequest;
|
2017-09-24 19:40:40 +02:00
|
|
|
lMethod: string;
|
|
|
|
lRTTI: TRTTIContext;
|
|
|
|
lRTTIType: TRttiType;
|
|
|
|
lRTTIMethod: TRttiMethod;
|
|
|
|
lRes: TValue;
|
2017-09-28 00:14:34 +02:00
|
|
|
lJSONRPCResponse: TJSONRPCResponse;
|
2017-09-24 19:40:40 +02:00
|
|
|
lParamsToInject: TArray<TValue>;
|
2017-09-26 01:02:09 +02:00
|
|
|
lReqID: TValue;
|
2018-11-21 22:11:58 +01:00
|
|
|
lJSON: TJsonObject;
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
2017-09-26 01:02:09 +02:00
|
|
|
lReqID := TValue.Empty;
|
2017-09-24 19:40:40 +02:00
|
|
|
SetLength(lParamsToInject, 0);
|
|
|
|
try
|
2018-11-21 22:11:58 +01:00
|
|
|
lJSON := StringToJSON(Context.Request.Body);
|
|
|
|
if not Assigned(lJSON) then
|
|
|
|
raise EMVCJSONRPCParseError.Create;
|
|
|
|
lJSONRPCReq := CreateRequest(lJSON);
|
2017-09-24 19:40:40 +02:00
|
|
|
try
|
2017-09-26 01:02:09 +02:00
|
|
|
lMethod := lJSONRPCReq.Method;
|
2018-05-16 19:46:29 +02:00
|
|
|
|
|
|
|
if lJSONRPCReq.RequestType = TJSONRPCRequestType.Request then
|
|
|
|
begin
|
|
|
|
if lJSONRPCReq.RequestID.IsEmpty then
|
|
|
|
raise EMVCJSONRPCInvalidRequest.Create;
|
|
|
|
lReqID := lJSONRPCReq.RequestID;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
lRTTI := TRTTIContext.Create;
|
|
|
|
try
|
2018-11-21 22:11:58 +01:00
|
|
|
lRTTIType := lRTTI.GetType(fRPCInstance.ClassType);
|
2017-09-26 01:02:09 +02:00
|
|
|
lRTTIMethod := lRTTIType.GetMethod(lMethod);
|
|
|
|
if Assigned(lRTTIMethod) then
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
InjectParams(lJSONRPCReq, lRTTIMethod);
|
|
|
|
try
|
2018-11-21 22:11:58 +01:00
|
|
|
lRes := lRTTIMethod.Invoke(fRPCInstance, lJSONRPCReq.Params.ToArray);
|
2018-05-16 19:46:29 +02:00
|
|
|
except
|
|
|
|
on E: EInvalidCast do
|
|
|
|
begin
|
|
|
|
raise EMVCJSONRPCInvalidParams.Create('Check your input parameters types');
|
|
|
|
end;
|
2017-10-10 12:19:46 +02:00
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
case lJSONRPCReq.RequestType of
|
|
|
|
TJSONRPCRequestType.Notification:
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
if lRes.IsObjectInstance then
|
|
|
|
lRes.AsObject.Free;
|
|
|
|
ResponseStatus(HTTP_STATUS.NoContent);
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
2018-05-16 19:46:29 +02:00
|
|
|
TJSONRPCRequestType.Request:
|
|
|
|
begin
|
|
|
|
lJSONRPCResponse := CreateResponse(lJSONRPCReq.RequestID, lRes);
|
|
|
|
try
|
|
|
|
ResponseStatus(200);
|
|
|
|
Render(lJSONRPCResponse.AsJSON);
|
|
|
|
finally
|
|
|
|
lJSONRPCResponse.Free;
|
|
|
|
end;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
2018-05-16 19:46:29 +02:00
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('Invalid RequestType');
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
2017-09-26 01:02:09 +02:00
|
|
|
end
|
|
|
|
else
|
2018-05-16 19:46:29 +02:00
|
|
|
raise EMVCJSONRPCMethodNotFound.Create(lMethod);
|
2017-09-26 01:02:09 +02:00
|
|
|
finally
|
|
|
|
lRTTI.Free;
|
|
|
|
end;
|
2017-09-24 19:40:40 +02:00
|
|
|
finally
|
2017-09-26 01:02:09 +02:00
|
|
|
lJSONRPCReq.Free;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
2017-09-26 01:02:09 +02:00
|
|
|
except
|
|
|
|
on E: EMVCJSONRPCErrorResponse do
|
|
|
|
begin
|
|
|
|
{
|
|
|
|
http://www.jsonrpc.org/historical/json-rpc-over-http.html#response-codes
|
|
|
|
HTTP Status code message
|
|
|
|
500 -32700 Parse error.
|
|
|
|
400 -32600 Invalid Request.
|
|
|
|
404 -32601 Method not found.
|
|
|
|
500 -32602 Invalid params.
|
|
|
|
500 -32603 Internal error.
|
|
|
|
500 -32099..-32000 Server error.
|
|
|
|
}
|
|
|
|
case E.JSONRPCErrorCode of
|
2018-05-16 19:46:29 +02:00
|
|
|
- 32700:
|
|
|
|
ResponseStatus(500);
|
|
|
|
-32600:
|
|
|
|
ResponseStatus(400);
|
|
|
|
-32601:
|
|
|
|
ResponseStatus(404);
|
|
|
|
-32602:
|
|
|
|
ResponseStatus(500);
|
|
|
|
-32603:
|
|
|
|
ResponseStatus(500);
|
|
|
|
-32099 .. -32000:
|
|
|
|
ResponseStatus(500);
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
2018-05-16 19:46:29 +02:00
|
|
|
Render(CreateError(lReqID, E.JSONRPCErrorCode, E.message), True);
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
2018-05-16 19:46:29 +02:00
|
|
|
on E: Exception do
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
2018-05-16 19:46:29 +02:00
|
|
|
Render(CreateError(lReqID, 0, E.message), True);
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
2017-09-24 19:40:40 +02:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-10-10 12:19:46 +02:00
|
|
|
function TMVCJSONRPCController.JSONObjectAs<T>(const JSON: TJsonObject): T;
|
|
|
|
begin
|
|
|
|
Result := T.Create;
|
|
|
|
try
|
|
|
|
GetSerializer.JsonObjectToObject(JSON, Result, TMVCSerializationType.stProperties, []);
|
|
|
|
except
|
|
|
|
Result.Free;
|
|
|
|
raise;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-09-24 19:40:40 +02:00
|
|
|
{ EMVCJSONRPCParseError }
|
|
|
|
|
|
|
|
constructor EMVCJSONRPCParseError.Create;
|
|
|
|
begin
|
2018-08-08 17:11:45 +02:00
|
|
|
inherited Create('Parse error. Invalid JSON was received by the server. An error occurred on the server while parsing the JSON text');
|
2017-09-24 19:40:40 +02:00
|
|
|
FJSONRPCErrorCode := -32700;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ EMVCJSONRPCInvalidRequest }
|
|
|
|
|
|
|
|
constructor EMVCJSONRPCInvalidRequest.Create;
|
|
|
|
begin
|
2017-09-26 01:02:09 +02:00
|
|
|
inherited Create('Invalid Request. The JSON sent is not a valid Request object.');
|
2017-09-24 19:40:40 +02:00
|
|
|
FJSONRPCErrorCode := -32600;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ EMVCJSONRPCMethodNotFound }
|
|
|
|
|
2018-08-08 17:11:45 +02:00
|
|
|
constructor EMVCJSONRPCMethodNotFound.Create(const MethodName: string);
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
2018-11-21 22:11:58 +01:00
|
|
|
inherited CreateFmt('Method "%s" not found. The method does not exist or is not available.', [MethodName]);
|
2017-09-24 19:40:40 +02:00
|
|
|
FJSONRPCErrorCode := -32601;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ EMVCJSONRPCInvalidParams }
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
constructor EMVCJSONRPCInvalidParams.Create(const message: string);
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
inherited Create('Invalid params. [hint: ' + message + ']');
|
|
|
|
FJSONRPCErrorCode := -32602;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ EMVCJSONRPCInternalError }
|
|
|
|
|
|
|
|
constructor EMVCJSONRPCInternalError.Create;
|
|
|
|
begin
|
|
|
|
inherited Create('Internal JSON-RPC error');
|
|
|
|
FJSONRPCErrorCode := -32603;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ EMVCJSONRPCServerError }
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
constructor EMVCJSONRPCServerError.Create(const JSONRPCError: Integer; const message: string);
|
2017-09-24 19:40:40 +02:00
|
|
|
begin
|
|
|
|
inherited Create(message);
|
|
|
|
FJSONRPCErrorCode := JSONRPCError;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
{ TJSONRPCRequest }
|
|
|
|
|
|
|
|
constructor TJSONRPCRequest.Create;
|
|
|
|
begin
|
|
|
|
inherited Create;
|
|
|
|
end;
|
|
|
|
|
|
|
|
destructor TJSONRPCRequest.Destroy;
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TJSONRPCRequest.GetRequestType: TJSONRPCRequestType;
|
|
|
|
begin
|
|
|
|
if FID.IsEmpty then
|
|
|
|
Result := TJSONRPCRequestType.Notification
|
|
|
|
else
|
|
|
|
Result := TJSONRPCRequestType.Request;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure TJSONRPCRequest.SetJSON(const JSON: TJsonObject);
|
|
|
|
var
|
|
|
|
I: Integer;
|
|
|
|
lParams: TJsonArray;
|
|
|
|
begin
|
|
|
|
if JSON.Types[JSONRPC_ID] = jdtString then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.S[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtInt then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.I[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtLong then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.L[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtULong then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.U[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := TValue.Empty;
|
2017-09-28 00:14:34 +02:00
|
|
|
|
|
|
|
Method := JSON.S[JSONRPC_METHOD];
|
|
|
|
Params.Clear;
|
|
|
|
if JSON.Types[JSONRPC_PARAMS] = jdtArray then
|
|
|
|
begin
|
|
|
|
lParams := JSON.A[JSONRPC_PARAMS];
|
|
|
|
for I := 0 to lParams.Count - 1 do
|
|
|
|
begin
|
|
|
|
Params.Add(JSONDataValueToTValue(lParams[I]));
|
|
|
|
end;
|
|
|
|
end
|
|
|
|
else if JSON.Types[JSONRPC_PARAMS] <> jdtNone then
|
|
|
|
begin
|
|
|
|
raise EMVCJSONRPCException.Create('Params must be a JSON array or null');
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
destructor TJSONRPCNotification.Destroy;
|
|
|
|
var
|
|
|
|
lValue: TValue;
|
|
|
|
begin
|
|
|
|
for lValue in FParams do
|
|
|
|
begin
|
|
|
|
if lValue.IsObjectInstance then
|
|
|
|
lValue.AsObject.Free;
|
|
|
|
end;
|
|
|
|
FParams.Free;
|
|
|
|
inherited;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TJSONRPCNotification.GetJSON: TJsonObject;
|
|
|
|
var
|
|
|
|
I: Integer;
|
|
|
|
begin
|
|
|
|
if FMethod.IsEmpty then
|
|
|
|
raise EMVCJSONRPCException.Create('JSON-RPC "Method" cannot be empty');
|
|
|
|
Result := inherited;
|
|
|
|
Result.S[JSONRPC_METHOD] := FMethod;
|
|
|
|
if FParams.Count > 0 then
|
|
|
|
begin
|
|
|
|
for I := 0 to FParams.Count - 1 do
|
|
|
|
begin
|
|
|
|
AppendTValueToJsonArray(FParams[I], Result.A[JSONRPC_PARAMS]);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSONRPCNotification.SetMethod(const Value: string);
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FMethod := Value;
|
|
|
|
end;
|
|
|
|
|
|
|
|
{ TJSONRCPResponse }
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
constructor TJSONRPCResponse.Create;
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
FError := nil;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
destructor TJSONRPCResponse.Destroy;
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FreeAndNil(FError);
|
2017-09-28 00:14:34 +02:00
|
|
|
if FResult.IsObjectInstance then
|
|
|
|
FResult.AsObject.Free;
|
2017-09-26 01:02:09 +02:00
|
|
|
inherited;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
function TJSONRPCResponse.GetJSON: TJsonObject;
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
Result := inherited;
|
|
|
|
// Must generate something like the following:
|
|
|
|
// {"jsonrpc": "2.0", "error": {"code": -32601, "message": "Method not found"}, "id": "1"}
|
2018-05-16 19:46:29 +02:00
|
|
|
|
|
|
|
if FID.IsEmpty then
|
|
|
|
begin
|
|
|
|
Result.Values[JSONRPC_ID] := jdtNone;
|
|
|
|
end
|
|
|
|
else if FID.IsType<string> then
|
|
|
|
begin
|
|
|
|
Result.S[JSONRPC_ID] := FID.AsString;
|
|
|
|
end
|
|
|
|
else if FID.IsType<Int32> then
|
|
|
|
begin
|
|
|
|
Result.I[JSONRPC_ID] := FID.AsInteger;
|
|
|
|
end
|
|
|
|
else if FID.IsType<Int64> then
|
|
|
|
begin
|
|
|
|
Result.I[JSONRPC_ID] := FID.AsInt64;
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('ID can be only Int32, Int64 or String');
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
try
|
|
|
|
if Assigned(FError) then
|
|
|
|
begin
|
|
|
|
Result.O[JSONRPC_ERROR].I[JSONRPC_CODE] := FError.Code;
|
2017-09-28 00:14:34 +02:00
|
|
|
Result.O[JSONRPC_ERROR].S[JSONRPC_MESSAGE] := FError.ErrMessage;
|
2017-09-26 01:02:09 +02:00
|
|
|
end
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
TValueToJsonElement(Self.FResult, Result, JSONRPC_RESULT);
|
|
|
|
end;
|
|
|
|
except
|
|
|
|
Result.Free;
|
|
|
|
raise;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure TJSONRPCResponse.SetError(const Value: TJSONRPCResponseError);
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FError := Value;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure TJSONRPCResponse.SetID(const Value: TValue);
|
|
|
|
begin
|
|
|
|
FID := Value;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure TJSONRPCResponse.SetJSON(const JSON: TJsonObject);
|
|
|
|
begin
|
|
|
|
if JSON.Types[JSONRPC_ID] = jdtString then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.S[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtInt then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.I[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtLong then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.L[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else if JSON.Types[JSONRPC_ID] = jdtULong then
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := JSON.U[JSONRPC_ID]
|
2017-09-28 00:14:34 +02:00
|
|
|
else
|
2017-10-10 12:19:46 +02:00
|
|
|
RequestID := TValue.Empty;
|
2017-09-28 00:14:34 +02:00
|
|
|
|
|
|
|
if JSON.Contains(JSONRPC_RESULT) then
|
|
|
|
begin
|
|
|
|
FreeAndNil(FError);
|
|
|
|
FResult := JSONDataValueToTValue(JSON.Values[JSONRPC_RESULT]);
|
|
|
|
end
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
FResult := TValue.Empty;
|
|
|
|
if JSON.Contains(JSONRPC_ERROR) then
|
|
|
|
begin
|
|
|
|
FError := TJSONRPCResponseError.Create;
|
|
|
|
FError.Code := JSON.O[JSONRPC_ERROR].I[JSONRPC_CODE];
|
|
|
|
FError.ErrMessage := JSON.O[JSONRPC_ERROR].S[JSONRPC_MESSAGE];
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('Response message must have ''result'' or ''error''');
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSONRPCResponse.SetResult(const Value: TValue);
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FResult := Value;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
{ TJSONRPCNotification }
|
2017-09-26 01:02:09 +02:00
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
constructor TJSONRPCNotification.Create;
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
inherited;
|
2018-05-16 19:46:29 +02:00
|
|
|
FParams := TJSONRPCRequestParams.Create;
|
2017-09-26 01:02:09 +02:00
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
constructor TJSONRPCObject.Create;
|
|
|
|
begin
|
|
|
|
inherited;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TJSONRPCObject.GetJSON: TJsonObject;
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
Result := TJsonObject.Create;
|
|
|
|
Result.S[JSONRPC_HEADER] := JSONRPC_VERSION;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
function TJSONRPCObject.GetJSONString: string;
|
2017-09-26 01:02:09 +02:00
|
|
|
var
|
|
|
|
lJSON: TJsonObject;
|
|
|
|
begin
|
|
|
|
lJSON := GetJSON;
|
|
|
|
try
|
2018-05-16 19:46:29 +02:00
|
|
|
Result := lJSON.ToJSON;
|
2017-09-26 01:02:09 +02:00
|
|
|
finally
|
|
|
|
lJSON.Free;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure TJSONRPCRequest.SetID(const Value: TValue);
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FID := Value;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
procedure TJSONRPCObject.SetJSON(const Value: TJsonObject);
|
|
|
|
begin
|
|
|
|
// not implemented
|
|
|
|
raise Exception.Create('This method must be overwritten by child');
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TJSONRPCObject.SetJsonString(const Value: string);
|
2017-09-28 00:14:34 +02:00
|
|
|
var
|
|
|
|
lJSON: TJsonObject;
|
|
|
|
begin
|
|
|
|
try
|
|
|
|
lJSON := TJsonObject.Parse(Value) as TJsonObject;
|
|
|
|
except
|
|
|
|
raise EMVCJSONRPCParseError.Create;
|
|
|
|
end;
|
|
|
|
try
|
|
|
|
AsJSON := lJSON;
|
|
|
|
finally
|
|
|
|
lJSON.Free;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-09-26 01:02:09 +02:00
|
|
|
{ TJSONRPCResponseError }
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure TJSONRPCResponse.TJSONRPCResponseError.SetCode(const Value: Integer);
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FCode := Value;
|
|
|
|
end;
|
|
|
|
|
2017-09-28 00:14:34 +02:00
|
|
|
procedure TJSONRPCResponse.TJSONRPCResponseError.SetMessage(const Value: string);
|
2017-09-26 01:02:09 +02:00
|
|
|
begin
|
|
|
|
FMessage := Value;
|
|
|
|
end;
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
{ TJSONRPCMessage }
|
|
|
|
|
|
|
|
function TJSONRPCRequest.GetJSON: TJsonObject;
|
|
|
|
begin
|
|
|
|
Result := inherited GetJSON;
|
|
|
|
if not FID.IsEmpty then
|
|
|
|
begin
|
|
|
|
if FID.IsType<string> then
|
|
|
|
begin
|
|
|
|
Result.S[JSONRPC_ID] := FID.AsString;
|
|
|
|
end
|
|
|
|
else if FID.IsType<Int32> then
|
|
|
|
begin
|
|
|
|
Result.I[JSONRPC_ID] := FID.AsInteger;
|
|
|
|
end
|
|
|
|
else if FID.IsType<Int64> then
|
|
|
|
begin
|
|
|
|
Result.I[JSONRPC_ID] := FID.AsInt64;
|
|
|
|
end
|
|
|
|
else
|
|
|
|
raise EMVCJSONRPCException.Create('ID can be only Int32, Int64 or String');
|
|
|
|
end;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
2017-09-24 19:40:40 +02:00
|
|
|
end.
|