2017-05-18 00:02:22 +02:00
|
|
|
|
// ***************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// Delphi MVC Framework
|
|
|
|
|
//
|
2022-01-04 15:44:47 +01:00
|
|
|
|
// Copyright (c) 2010-2022 Daniele Teti and the DMVCFramework Team
|
2017-05-18 00:02:22 +02:00
|
|
|
|
//
|
|
|
|
|
// https://github.com/danieleteti/delphimvcframework
|
|
|
|
|
//
|
|
|
|
|
// Collaborators with this file: Ezequiel Juliano Müller (ezequieljuliano@gmail.com)
|
|
|
|
|
//
|
|
|
|
|
// ***************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// 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.
|
|
|
|
|
//
|
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
|
|
unit RenderSampleControllerU;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2017-04-29 23:56:56 +02:00
|
|
|
|
MVCFramework,
|
|
|
|
|
MVCFramework.Commons,
|
2017-05-18 00:02:22 +02:00
|
|
|
|
MVCFramework.Serializer.Intf,
|
2021-04-21 12:22:09 +02:00
|
|
|
|
System.Rtti, BusinessObjectsU;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
|
|
[MVCPath('/')]
|
|
|
|
|
TRenderSampleController = class(TMVCController)
|
2017-05-17 22:32:45 +02:00
|
|
|
|
protected
|
2021-04-21 12:22:09 +02:00
|
|
|
|
procedure OnBeforeAction(AContext: TWebContext; const AActionName: string;
|
|
|
|
|
var AHandled: Boolean); override;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
public
|
2021-03-03 18:42:59 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/customers/simple')]
|
|
|
|
|
procedure GetCustomers_AsDataSet;
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/people')]
|
|
|
|
|
[MVCProduces('application/json')]
|
|
|
|
|
procedure GetPeople_AsObjectList;
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/customers')]
|
|
|
|
|
procedure GetCustomersAsDataSetWithRefLinks;
|
|
|
|
|
|
2020-01-24 10:09:14 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/customers/withcallback')]
|
|
|
|
|
procedure GetCustomersWithCallback;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
[MVCPath('/customers/($ID)')]
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCProduces('text/plain')]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
procedure GetPerson_AsText(const ID: Integer);
|
2016-11-27 23:17:20 +01:00
|
|
|
|
|
2020-10-30 18:08:56 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/dateandtimes/showcase')]
|
|
|
|
|
procedure GetDateAndTimeShowcase;
|
|
|
|
|
|
2020-04-20 17:56:17 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/customers2')]
|
|
|
|
|
procedure GetCustomersWithObjectDictionary;
|
|
|
|
|
|
2019-05-09 20:53:52 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-06-25 17:32:30 +02:00
|
|
|
|
[MVCPath('/customers/($ID)/asdataset')]
|
2019-05-09 20:53:52 +02:00
|
|
|
|
procedure GetCustomer_AsDataSetRecord(const ID: Integer);
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
2019-06-25 17:32:30 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2021-03-03 18:42:59 +01:00
|
|
|
|
[MVCPath('/customers/metadata/all')]
|
2019-06-25 17:32:30 +02:00
|
|
|
|
[MVCProduces('application/json')]
|
2020-04-20 17:56:17 +02:00
|
|
|
|
procedure GetDataSetWithMetadata;
|
2019-06-25 17:32:30 +02:00
|
|
|
|
|
2018-07-16 12:34:07 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2021-03-03 18:42:59 +01:00
|
|
|
|
[MVCPath('/customers2/($ID)')]
|
2018-07-16 12:34:07 +02:00
|
|
|
|
[MVCProduces('application/json')]
|
2020-04-20 17:56:17 +02:00
|
|
|
|
procedure GetCustomerByID_AsTObject(const ID: Integer);
|
2018-07-16 12:34:07 +02:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2020-10-22 19:42:18 +02:00
|
|
|
|
[MVCPath('/multi')]
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCProduces('application/json')]
|
|
|
|
|
procedure GetCustomersAndCountry_AsDataSet;
|
|
|
|
|
|
2021-01-27 20:25:35 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/people/alias')]
|
|
|
|
|
[MVCProduces('application/json')]
|
|
|
|
|
procedure GetPeople_AsObjectList_With_Alias;
|
|
|
|
|
|
2020-07-13 17:05:22 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/objectdict/nil')]
|
|
|
|
|
[MVCProduces('application/json')]
|
|
|
|
|
procedure GetNil;
|
|
|
|
|
|
2019-10-10 20:16:20 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/interfacedpeople')]
|
|
|
|
|
[MVCProduces('application/json')]
|
|
|
|
|
procedure GetInterfacedPeople;
|
|
|
|
|
|
2019-03-08 09:33:41 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-03-10 16:29:18 +01:00
|
|
|
|
[MVCPath('/people/hateoas')]
|
2019-03-08 09:33:41 +01:00
|
|
|
|
[MVCProduces('application/json')]
|
2019-03-10 16:29:18 +01:00
|
|
|
|
procedure GetPeople_AsObjectList_HATEOAS;
|
2019-03-08 09:33:41 +01:00
|
|
|
|
|
2017-07-16 19:36:44 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/people/withtiming')]
|
2017-10-30 14:42:15 +01:00
|
|
|
|
[MVCProduces('application/json')]
|
2017-07-16 19:36:44 +02:00
|
|
|
|
procedure GetPeopleWithTiming;
|
|
|
|
|
|
2019-03-10 16:29:18 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
[MVCPath('/people/($ID)')]
|
2019-03-10 16:29:18 +01:00
|
|
|
|
[MVCProduces('application/json')]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
procedure GetPersonById(const ID: Integer);
|
2019-03-10 16:29:18 +01:00
|
|
|
|
|
2017-05-25 10:31:24 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/lotofobjects')]
|
|
|
|
|
procedure GetLotOfPeople;
|
|
|
|
|
|
2018-07-16 12:34:07 +02:00
|
|
|
|
// this action is polymorphic
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2014-05-30 11:29:58 +02:00
|
|
|
|
[MVCPath('/skilledpeople')]
|
2015-06-29 14:36:54 +02:00
|
|
|
|
[MVCProduces('application/json')]
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure GetProgrammersAndPhilosophersAsObjectList;
|
2014-05-30 11:29:58 +02:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
[MVCPath('/customers/view/($ID).html')]
|
2016-02-26 19:21:57 +01:00
|
|
|
|
[MVCProduces('text/html', 'UTF-8')]
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure GetPerson_AsHTMLView;
|
2016-02-26 19:21:57 +01:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
[MVCPath('/customers/($ID).html')]
|
2017-10-30 14:42:15 +01:00
|
|
|
|
[MVCProduces('text/html')]
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure GetPerson_AsHTML;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/customers.csv')]
|
|
|
|
|
procedure GetPeopleAsCSV;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
[MVCPath('/customers/unicode/($ID).html')]
|
2014-07-04 17:52:17 +02:00
|
|
|
|
[MVCProduces('text/html', 'UTF-8')]
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure GetUnicodeText_AsHTML;
|
2014-07-04 17:52:17 +02:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2014-03-06 14:20:57 +01:00
|
|
|
|
[MVCPath('/files/customers.json')]
|
2013-11-11 19:32:20 +01:00
|
|
|
|
[MVCProduces('application/json')]
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure GetPersonJSON;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2014-04-01 00:02:31 +02:00
|
|
|
|
[MVCPath('/files/customers.png')]
|
|
|
|
|
[MVCProduces('image/png')]
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure GetPersonPhoto;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
2019-05-08 20:20:14 +02:00
|
|
|
|
[MVCPath('/images/customers/($ID)')]
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure GetPersonPhotoAsStream;
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpPOST])]
|
|
|
|
|
[MVCConsumes(TMVCMediaType.MULTIPART_FORM_DATA)]
|
|
|
|
|
[MVCPath('/files')]
|
|
|
|
|
procedure UploadBinaryData;
|
|
|
|
|
|
2021-04-21 12:22:09 +02:00
|
|
|
|
[MVCHTTPMethod([httpPOST])]
|
|
|
|
|
[MVCPath('/people/mvcfrombody')]
|
|
|
|
|
procedure CreatePerson(
|
|
|
|
|
const [MVCFromBody] Person: TPerson
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpPOST])]
|
|
|
|
|
[MVCPath('/people/mvcfromquerystring')]
|
|
|
|
|
procedure CreatePersonEx(
|
|
|
|
|
const [MVCFromBody] Person: TPerson;
|
|
|
|
|
const [MVCFromQueryString('par1')] Par1: Boolean
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpPOST])]
|
|
|
|
|
[MVCPath('/people/mvcfromheader')]
|
|
|
|
|
procedure CreatePersonEx2(
|
|
|
|
|
const [MVCFromBody] Person: TPerson;
|
|
|
|
|
const [MVCFromQueryString('par1')] Par1: Boolean;
|
|
|
|
|
const [MVCFromHeader('X-MY-HEADER')] XMyHeader: TDateTime
|
|
|
|
|
);
|
|
|
|
|
|
2019-03-16 17:20:28 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/files/($filename)')]
|
|
|
|
|
procedure GetBinaryData(const filename: string);
|
2015-06-29 14:36:54 +02:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/exception')]
|
|
|
|
|
procedure RaiseException;
|
|
|
|
|
|
2021-03-02 18:02:37 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/exception/ashtml')]
|
|
|
|
|
procedure RaiseExceptionHTML;
|
|
|
|
|
|
2017-05-18 00:02:22 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/customserializationtype')]
|
|
|
|
|
procedure GetCustomSerializationType;
|
|
|
|
|
|
2019-11-03 16:16:35 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/simplearray')]
|
|
|
|
|
procedure GetSimpleArrays;
|
|
|
|
|
|
2020-08-25 17:19:28 +02:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/simplelists')]
|
|
|
|
|
procedure GetSimpleLists;
|
|
|
|
|
|
2019-11-05 14:40:39 +01:00
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/objectwithjson')]
|
|
|
|
|
procedure GetObjectWithJSONProperty;
|
|
|
|
|
|
2020-02-03 10:51:40 +01:00
|
|
|
|
// Nullables
|
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/nullables/single')]
|
|
|
|
|
procedure GetOneNullableObject;
|
|
|
|
|
|
|
|
|
|
// Nullables
|
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/nullables/many')]
|
|
|
|
|
procedure GetManyNullableObjects;
|
2019-11-05 14:40:39 +01:00
|
|
|
|
|
2020-05-06 10:49:08 +02:00
|
|
|
|
// Arrays
|
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/arrays')]
|
|
|
|
|
procedure GetClassWithArrays;
|
2022-04-05 17:17:35 +02:00
|
|
|
|
|
|
|
|
|
// Enums
|
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
|
|
|
[MVCPath('/enums')]
|
|
|
|
|
procedure GetClassWithEnums;
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpPOST])]
|
|
|
|
|
[MVCPath('/enums')]
|
|
|
|
|
procedure EchoClassWithEnums;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
2016-02-26 19:21:57 +01:00
|
|
|
|
Generics.Collections,
|
2017-04-29 23:56:56 +02:00
|
|
|
|
MVCFramework.DataSet.Utils,
|
|
|
|
|
MVCFramework.Serializer.Commons,
|
2017-10-30 14:42:15 +01:00
|
|
|
|
MVCFramework.Serializer.Defaults,
|
2019-03-16 17:20:28 +01:00
|
|
|
|
MVCFramework.Logger,
|
2017-04-29 23:56:56 +02:00
|
|
|
|
MyDataModuleU,
|
2019-03-16 17:20:28 +01:00
|
|
|
|
System.IOUtils,
|
2017-04-29 23:56:56 +02:00
|
|
|
|
System.Classes,
|
|
|
|
|
System.SysUtils,
|
2017-05-18 00:02:22 +02:00
|
|
|
|
WebModuleU,
|
2017-10-30 14:42:15 +01:00
|
|
|
|
CustomTypesU,
|
|
|
|
|
InMemoryDataU,
|
2017-05-18 00:02:22 +02:00
|
|
|
|
JsonDataObjects,
|
2019-03-10 16:29:18 +01:00
|
|
|
|
MVCFramework.Serializer.JsonDataObjects,
|
2019-03-16 17:20:28 +01:00
|
|
|
|
Data.DB,
|
2019-06-25 17:32:30 +02:00
|
|
|
|
Web.HTTPApp,
|
|
|
|
|
Graphics,
|
|
|
|
|
System.Types;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
2019-06-25 17:32:30 +02:00
|
|
|
|
procedure DrawLogo(const Logo: TBitmap);
|
|
|
|
|
var
|
|
|
|
|
lRect: TRect;
|
|
|
|
|
lText: string;
|
|
|
|
|
begin
|
|
|
|
|
lRect := Rect(0, 0, 300, 200);
|
|
|
|
|
lText := 'DMVCFramework';
|
|
|
|
|
Logo.SetSize(lRect.Width, lRect.Height);
|
|
|
|
|
Logo.Canvas.Brush.Color := clRed;
|
|
|
|
|
Logo.Canvas.FillRect(lRect);
|
|
|
|
|
Logo.Canvas.Font.Size := 24;
|
|
|
|
|
Logo.Canvas.Font.Name := 'Tahoma';
|
|
|
|
|
Logo.Canvas.Font.Color := clWhite;
|
|
|
|
|
lRect.Inflate(-20, -60);
|
|
|
|
|
Logo.Canvas.TextRect(lRect, lText, [TTextFormats.tfCenter]);
|
|
|
|
|
end;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
{ TRoutingSampleController }
|
|
|
|
|
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure TRenderSampleController.GetUnicodeText_AsHTML;
|
2014-07-04 17:52:17 +02:00
|
|
|
|
var
|
|
|
|
|
s: string;
|
|
|
|
|
begin
|
|
|
|
|
s := '<html><body>';
|
|
|
|
|
s := s + '什么是Unicode(统一码)? in Simplified Chinese <br>';
|
|
|
|
|
s := s + 'Što je Unicode? in Croatian <br>';
|
|
|
|
|
s := s + 'Co je Unicode? in Czech';
|
|
|
|
|
s := s + '</body></html>';
|
|
|
|
|
Render(s);
|
|
|
|
|
end;
|
|
|
|
|
|
2018-07-16 12:34:07 +02:00
|
|
|
|
procedure TRenderSampleController.OnBeforeAction(AContext: TWebContext; const AActionName: string;
|
|
|
|
|
var AHandled: Boolean);
|
2017-05-17 22:32:45 +02:00
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure TRenderSampleController.RaiseException;
|
|
|
|
|
var
|
|
|
|
|
a: Integer;
|
|
|
|
|
begin
|
|
|
|
|
a := 0;
|
|
|
|
|
Render(IntToStr(10 div a));
|
|
|
|
|
end;
|
|
|
|
|
|
2021-03-02 18:02:37 +01:00
|
|
|
|
procedure TRenderSampleController.RaiseExceptionHTML;
|
|
|
|
|
var
|
|
|
|
|
a: Integer;
|
|
|
|
|
begin
|
|
|
|
|
ContentType := TMVCMediaType.TEXT_HTML;
|
|
|
|
|
a := 0;
|
|
|
|
|
Render(IntToStr(10 div a));
|
|
|
|
|
end;
|
|
|
|
|
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure TRenderSampleController.UploadBinaryData;
|
|
|
|
|
var
|
|
|
|
|
lFile: TAbstractWebRequestFile;
|
|
|
|
|
lFileExt: string;
|
|
|
|
|
lOutputFileName: string;
|
|
|
|
|
lOutputFullPath: string;
|
|
|
|
|
lOutFile: TFileStream;
|
|
|
|
|
lOutputFolder: string;
|
|
|
|
|
begin
|
|
|
|
|
if Context.Request.Files.Count <> 1 then
|
|
|
|
|
begin
|
|
|
|
|
raise EMVCException.Create(HTTP_STATUS.BadRequest, 'Expected exactly 1 file');
|
|
|
|
|
end;
|
|
|
|
|
lFile := Context.Request.Files[0];
|
|
|
|
|
|
|
|
|
|
LogI(Format('Upload: [FieldName: %s] [FileName: %s] [ContentType: %s] [Size: %d bytes]',
|
|
|
|
|
[lFile.FieldName, lFile.filename, lFile.ContentType, lFile.Stream.Size]));
|
|
|
|
|
|
|
|
|
|
{ Be sure that our data directory always exists. We could also do it in the server startup. }
|
|
|
|
|
lOutputFolder := TPath.Combine(AppPath, 'uploadedfiles');
|
|
|
|
|
if not TDirectory.Exists(lOutputFolder) then
|
|
|
|
|
begin
|
|
|
|
|
TDirectory.CreateDirectory(lOutputFolder);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
lFileExt := TPath.GetExtension(lFile.filename);
|
|
|
|
|
{
|
|
|
|
|
Here we could check for allowed extensions or check the file contents looking for
|
|
|
|
|
accepted file headers (e.g. Zip, PNG, BMP, TIFF etc).
|
|
|
|
|
In this case we just use the extension of the filename sent by the client.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{ Find a valid random filename to store the stream on disk. }
|
|
|
|
|
repeat
|
|
|
|
|
lOutputFileName := TPath.ChangeExtension(TPath.GetRandomFileName, lFileExt);
|
|
|
|
|
lOutputFullPath := TPath.Combine(lOutputFolder, lOutputFileName);
|
|
|
|
|
until not TFile.Exists(lOutputFullPath);
|
|
|
|
|
|
|
|
|
|
lOutFile := TFileStream.Create(lOutputFullPath, fmCreate);
|
|
|
|
|
try
|
|
|
|
|
lOutFile.CopyFrom(lFile.Stream, 0);
|
|
|
|
|
finally
|
|
|
|
|
lOutFile.Free;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
{ Inform the client about the name assigned to the file
|
|
|
|
|
on disk and how to retrieve it. }
|
|
|
|
|
Context.Response.ContentType := TMVCMediaType.APPLICATION_JSON;
|
|
|
|
|
Context.Response.StatusCode := HTTP_STATUS.OK;
|
2019-05-09 20:53:52 +02:00
|
|
|
|
Render(StrDict(['filename', 'ref'], [lOutputFileName, '/files/' + lOutputFileName]));
|
2019-03-16 17:20:28 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2021-04-21 12:22:09 +02:00
|
|
|
|
procedure TRenderSampleController.CreatePerson(const Person: TPerson);
|
|
|
|
|
begin
|
|
|
|
|
Render(Person, False);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TRenderSampleController.CreatePersonEx(const Person: TPerson; const Par1: Boolean);
|
|
|
|
|
begin
|
|
|
|
|
Person.Married := Par1;
|
|
|
|
|
Render(Person, False);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TRenderSampleController.CreatePersonEx2(const Person: TPerson;
|
|
|
|
|
const Par1: Boolean; const XMyHeader: TDateTime);
|
|
|
|
|
begin
|
|
|
|
|
Person.Married := Par1;
|
|
|
|
|
Person.DOB := XMyHeader;
|
|
|
|
|
Render(Person, False);
|
|
|
|
|
end;
|
|
|
|
|
|
2022-04-05 17:17:35 +02:00
|
|
|
|
procedure TRenderSampleController.EchoClassWithEnums;
|
|
|
|
|
var
|
|
|
|
|
lObj: TClassWithEnums;
|
|
|
|
|
begin
|
|
|
|
|
lObj := Context.Request.BodyAs<TClassWithEnums>;
|
|
|
|
|
lObj.RGBSet := [ctBlue, ctGreen, ctRed];
|
|
|
|
|
lObj.EnumWithName := ctBlue;
|
|
|
|
|
Render(lObj, True);
|
|
|
|
|
end;
|
|
|
|
|
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure TRenderSampleController.GetBinaryData(const filename: string);
|
|
|
|
|
var
|
|
|
|
|
lFilesFolder: string;
|
|
|
|
|
lFullFilePath: string;
|
|
|
|
|
begin
|
|
|
|
|
lFilesFolder := TPath.Combine(AppPath, 'uploadedfiles');
|
|
|
|
|
lFullFilePath := TPath.Combine(lFilesFolder, filename);
|
|
|
|
|
if not TFile.Exists(lFullFilePath) then
|
|
|
|
|
begin
|
|
|
|
|
raise EMVCException.Create('File not found');
|
|
|
|
|
end;
|
|
|
|
|
Context.Response.ContentType := TMVCMediaType.APPLICATION_OCTET_STREAM;
|
|
|
|
|
Context.Response.StatusCode := HTTP_STATUS.OK;
|
2021-04-21 12:22:09 +02:00
|
|
|
|
Context.Response.CustomHeaders.Values['Content-Disposition'] := 'attachment; filename=' +
|
|
|
|
|
filename + ';';
|
2019-03-16 17:20:28 +01:00
|
|
|
|
Render(TFileStream.Create(lFullFilePath, fmOpenRead or fmShareDenyNone));
|
|
|
|
|
end;
|
|
|
|
|
|
2020-05-06 10:49:08 +02:00
|
|
|
|
procedure TRenderSampleController.GetClassWithArrays;
|
|
|
|
|
var
|
|
|
|
|
lClass: TClassWithArrays;
|
|
|
|
|
begin
|
|
|
|
|
lClass := TClassWithArrays.Create;
|
|
|
|
|
lClass.ArrayOfString := ['one', 'two', 'three'];
|
|
|
|
|
lClass.ArrayOfInt := [1, 2, 3];
|
|
|
|
|
lClass.ArrayOfInt64 := [high(Int64), high(Int64) - 1, high(Int64) - 2];
|
|
|
|
|
lClass.ArrayOfDouble := [1234.5678, 2345.6789, 3456.78901];
|
|
|
|
|
Render(lClass);
|
|
|
|
|
end;
|
|
|
|
|
|
2022-04-05 17:17:35 +02:00
|
|
|
|
procedure TRenderSampleController.GetClassWithEnums;
|
|
|
|
|
var
|
|
|
|
|
lObj: TClassWithEnums;
|
|
|
|
|
begin
|
|
|
|
|
lObj := TClassWithEnums.Create;
|
|
|
|
|
lObj.RGBSet := [ctGreen, ctBlue];
|
|
|
|
|
lObj.EnumSimple := ctGreen;
|
|
|
|
|
lObj.EnumWithName := ctGreen;
|
|
|
|
|
lObj.EnumWithOrdValue := ctGreen;
|
|
|
|
|
lObj.EnumWithMappedValues := ctGreen;
|
|
|
|
|
Render(lObj);
|
|
|
|
|
end;
|
|
|
|
|
|
2019-05-08 20:20:14 +02:00
|
|
|
|
procedure TRenderSampleController.GetCustomerByID_AsTObject(const ID: Integer);
|
2013-11-10 01:03:53 +01:00
|
|
|
|
var
|
2013-11-11 01:11:09 +01:00
|
|
|
|
Cust: TCustomer;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
begin
|
2019-05-08 20:20:14 +02:00
|
|
|
|
if ID = 7 then // just a sample
|
2016-11-27 23:17:20 +01:00
|
|
|
|
Render(HTTP_STATUS.NotFound, 'Customer Not Found')
|
2013-11-11 01:11:09 +01:00
|
|
|
|
else
|
|
|
|
|
begin
|
|
|
|
|
Cust := TCustomer.Create;
|
|
|
|
|
Cust.Name := 'Daniele Teti Inc.';
|
|
|
|
|
Cust.ContactFirst := 'Daniele';
|
|
|
|
|
Cust.ContactLast := 'Teti';
|
|
|
|
|
Cust.AddressLine1 := 'Rome Street 12';
|
|
|
|
|
Cust.AddressLine2 := '00100';
|
|
|
|
|
Cust.City := 'ROME';
|
2019-06-25 17:32:30 +02:00
|
|
|
|
DrawLogo(Cust.Logo);
|
2013-11-11 01:11:09 +01:00
|
|
|
|
Render(Cust);
|
|
|
|
|
end;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure TRenderSampleController.GetCustomersAndCountry_AsDataSet;
|
|
|
|
|
var
|
|
|
|
|
lDM: TMyDataModule;
|
|
|
|
|
lJObj: TJSONObject;
|
2017-10-30 14:42:15 +01:00
|
|
|
|
lSer: TMVCJsonDataObjectsSerializer;
|
2016-11-27 23:17:20 +01:00
|
|
|
|
begin
|
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open;
|
|
|
|
|
lDM.qryCountry.Open;
|
2017-10-30 14:42:15 +01:00
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
lJObj := TJSONObject.Create;
|
|
|
|
|
try
|
2017-10-30 14:42:15 +01:00
|
|
|
|
// We need a non standard representation, let's create a specific serializer.
|
|
|
|
|
lSer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
|
try
|
2021-04-21 12:22:09 +02:00
|
|
|
|
lSer.DataSetToJsonArray(lDM.qryCustomers, lJObj.a['customers'],
|
|
|
|
|
TMVCNameCase.ncLowerCase, []);
|
2018-07-16 12:34:07 +02:00
|
|
|
|
lSer.DataSetToJsonArray(lDM.qryCountry, lJObj.a['countries'], TMVCNameCase.ncLowerCase, []);
|
2021-04-21 12:22:09 +02:00
|
|
|
|
lJObj.O['info'].s['timestamp'] := DateTimeToISOTimeStamp(Now);
|
2017-10-30 14:42:15 +01:00
|
|
|
|
finally
|
|
|
|
|
lSer.Free;
|
|
|
|
|
end;
|
2016-11-27 23:17:20 +01:00
|
|
|
|
Render(lJObj);
|
2017-10-30 14:42:15 +01:00
|
|
|
|
except // avoid memory leaks in case of exceptions
|
2016-11-27 23:17:20 +01:00
|
|
|
|
lJObj.Free;
|
|
|
|
|
raise;
|
|
|
|
|
end;
|
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2018-10-30 13:53:01 +01:00
|
|
|
|
procedure TRenderSampleController.GetCustomers_AsDataSet;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
var
|
2016-11-27 23:17:20 +01:00
|
|
|
|
lDM: TMyDataModule;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
begin
|
2016-11-27 23:17:20 +01:00
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open;
|
2018-05-17 21:55:32 +02:00
|
|
|
|
Render(lDM.qryCustomers, False);
|
2016-11-27 23:17:20 +01:00
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2019-05-09 20:53:52 +02:00
|
|
|
|
procedure TRenderSampleController.GetCustomersAsDataSetWithRefLinks;
|
2019-03-10 16:29:18 +01:00
|
|
|
|
var
|
|
|
|
|
lDM: TMyDataModule;
|
|
|
|
|
begin
|
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open;
|
|
|
|
|
Render(lDM.qryCustomers, False,
|
2019-05-09 20:53:52 +02:00
|
|
|
|
procedure(const DS: TDataset; const Links: IMVCLinks)
|
|
|
|
|
begin
|
2021-12-30 00:36:35 +01:00
|
|
|
|
Links
|
|
|
|
|
.AddRefLink
|
|
|
|
|
.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString)
|
|
|
|
|
.Add(HATEOAS.REL, 'self')
|
|
|
|
|
.Add(HATEOAS._TYPE, 'application/json');
|
|
|
|
|
Links
|
|
|
|
|
.AddRefLink
|
|
|
|
|
.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString + '/orders')
|
|
|
|
|
.Add(HATEOAS.REL, 'orders')
|
|
|
|
|
.Add(HATEOAS._TYPE, 'application/json');
|
2019-05-09 20:53:52 +02:00
|
|
|
|
end);
|
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2019-10-30 00:21:13 +01:00
|
|
|
|
procedure TRenderSampleController.GetCustomersWithCallback;
|
|
|
|
|
var
|
|
|
|
|
lDM: TMyDataModule;
|
|
|
|
|
lSer: TMVCJsonDataObjectsSerializer;
|
|
|
|
|
lJArray: TJsonArray;
|
2020-02-03 10:51:40 +01:00
|
|
|
|
lJObj: TJSONObject;
|
2019-10-30 00:21:13 +01:00
|
|
|
|
begin
|
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open('SELECT * FROM CUSTOMER ORDER BY CUST_NO');
|
|
|
|
|
lSer := TMVCJsonDataObjectsSerializer.Create;
|
|
|
|
|
try
|
2020-02-03 10:51:40 +01:00
|
|
|
|
lJObj := TJSONObject.Create;
|
|
|
|
|
lJArray := lJObj.a['customers'];
|
2019-10-30 00:21:13 +01:00
|
|
|
|
lSer.DataSetToJsonArray(lDM.qryCustomers, lJArray, TMVCNameCase.ncLowerCase, [],
|
2021-04-21 12:22:09 +02:00
|
|
|
|
procedure(const aField: TField; const aJsonObject: TJSONObject; var Handled: Boolean)
|
2020-02-03 10:51:40 +01:00
|
|
|
|
var
|
2020-04-20 17:56:17 +02:00
|
|
|
|
lTmp: string;
|
|
|
|
|
lPieces: TArray<string>;
|
2020-02-03 10:51:40 +01:00
|
|
|
|
begin
|
|
|
|
|
// ignore one attribute
|
|
|
|
|
if SameText(aField.FieldName, 'contact_last') then
|
|
|
|
|
begin
|
|
|
|
|
Handled := True;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
// change the attribute value
|
|
|
|
|
if SameText(aField.FieldName, 'on_hold') then
|
|
|
|
|
begin
|
|
|
|
|
aJsonObject.B['on_hold'] := not aField.IsNull;
|
|
|
|
|
Handled := True;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
// change the attribute type!
|
|
|
|
|
if SameText(aField.FieldName, 'phone_no') then
|
|
|
|
|
begin
|
2021-04-21 12:22:09 +02:00
|
|
|
|
lTmp := aField.AsString.Replace('(', '').Replace(')', '').Replace('-', ' ')
|
|
|
|
|
.Replace(' ', ' ', [rfReplaceAll]).Trim;
|
2020-02-03 10:51:40 +01:00
|
|
|
|
if lTmp.IsEmpty then
|
|
|
|
|
begin
|
|
|
|
|
Handled := True;
|
|
|
|
|
Exit;
|
|
|
|
|
end;
|
|
|
|
|
lPieces := lTmp.Split([' ']);
|
|
|
|
|
aJsonObject.O['phone'].s['intl_prefix'] := lPieces[0];
|
|
|
|
|
Delete(lPieces, 0, 1);
|
2020-04-20 17:56:17 +02:00
|
|
|
|
aJsonObject.O['phone'].s['number'] := string.Join('-', lPieces);
|
2020-02-03 10:51:40 +01:00
|
|
|
|
Handled := True;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
// add an attribute
|
|
|
|
|
if SameText(aField.FieldName, 'country') then
|
|
|
|
|
begin
|
|
|
|
|
aJsonObject.B['is_usa_customer'] := SameText(aField.AsString, 'usa');
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
// merge 2 or more attributes
|
|
|
|
|
if SameText(aField.FieldName, 'contact_first') then
|
|
|
|
|
begin
|
2021-04-21 12:22:09 +02:00
|
|
|
|
aJsonObject.s['contact_full_name'] := aField.DataSet.FieldByName('contact_first')
|
|
|
|
|
.AsString + ', ' + aField.DataSet.FieldByName('contact_last').AsString;
|
2020-02-03 10:51:40 +01:00
|
|
|
|
Handled := True;
|
|
|
|
|
end;
|
|
|
|
|
end);
|
2019-10-30 00:21:13 +01:00
|
|
|
|
finally
|
|
|
|
|
lSer.Free;
|
|
|
|
|
end;
|
2020-02-03 10:51:40 +01:00
|
|
|
|
Render(lJObj);
|
2019-10-30 00:21:13 +01:00
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2020-04-20 17:56:17 +02:00
|
|
|
|
procedure TRenderSampleController.GetCustomersWithObjectDictionary;
|
|
|
|
|
var
|
|
|
|
|
lDM: TMyDataModule;
|
2020-04-21 17:04:04 +02:00
|
|
|
|
lDict: IMVCObjectDictionary;
|
2020-04-20 17:56:17 +02:00
|
|
|
|
begin
|
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open;
|
2020-04-24 14:48:30 +02:00
|
|
|
|
lDict := ObjectDict(False { data are not freed after ObjectDict if freed } )
|
2020-04-21 17:04:04 +02:00
|
|
|
|
.Add('customers', lDM.qryCustomers,
|
2022-01-26 23:00:32 +01:00
|
|
|
|
procedure(const DS: TDataset; const Links: IMVCLinks)
|
|
|
|
|
begin
|
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString)
|
|
|
|
|
.Add(HATEOAS.REL, 'self').Add(HATEOAS._TYPE, 'application/json');
|
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString +
|
|
|
|
|
'/orders').Add(HATEOAS.REL, 'orders').Add(HATEOAS._TYPE, 'application/json');
|
|
|
|
|
end)
|
|
|
|
|
.Add('singleCustomer', lDM.qryCustomers,
|
|
|
|
|
procedure(const DS: TDataset; const Links: IMVCLinks)
|
|
|
|
|
begin
|
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString)
|
|
|
|
|
.Add(HATEOAS.REL, 'self').Add(HATEOAS._TYPE, 'application/json');
|
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString +
|
|
|
|
|
'/orders').Add(HATEOAS.REL, 'orders').Add(HATEOAS._TYPE, 'application/json');
|
|
|
|
|
end, dstSingleRecord, ncPascalCase);
|
2020-04-21 17:04:04 +02:00
|
|
|
|
Render(lDict);
|
2020-04-20 17:56:17 +02:00
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2019-10-10 20:16:20 +02:00
|
|
|
|
procedure TRenderSampleController.GetCustomer_AsDataSetRecord(const ID: Integer);
|
2019-05-09 20:53:52 +02:00
|
|
|
|
var
|
|
|
|
|
lDM: TMyDataModule;
|
|
|
|
|
begin
|
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open('SELECT * FROM CUSTOMER WHERE CUST_NO = ?', [ID]);
|
|
|
|
|
Render(lDM.qryCustomers, False, [], dstSingleRecord,
|
|
|
|
|
procedure(const DS: TDataset; const Links: IMVCLinks)
|
2019-03-10 16:29:18 +01:00
|
|
|
|
begin
|
2021-04-21 12:22:09 +02:00
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/customers').Add(HATEOAS.REL, 'customers')
|
2019-05-09 20:53:52 +02:00
|
|
|
|
.Add(HATEOAS._TYPE, TMVCMediaType.APPLICATION_JSON);
|
2021-04-21 12:22:09 +02:00
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/customers/' + DS.FieldByName('cust_no').AsString)
|
|
|
|
|
.Add(HATEOAS.REL, 'self').Add(HATEOAS._TYPE, TMVCMediaType.APPLICATION_JSON);
|
2019-03-10 16:29:18 +01:00
|
|
|
|
end);
|
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-05-18 00:02:22 +02:00
|
|
|
|
procedure TRenderSampleController.GetCustomSerializationType;
|
|
|
|
|
begin
|
|
|
|
|
// TSysUser contains a type with a custom serializer
|
|
|
|
|
Render(TSysUser.Create('daniele', ['poweruser', 'role1', 'role2']), True);
|
|
|
|
|
end;
|
|
|
|
|
|
2018-07-16 12:34:07 +02:00
|
|
|
|
procedure TRenderSampleController.GetDataSetWithMetadata;
|
|
|
|
|
var
|
|
|
|
|
lDM: TMyDataModule;
|
2020-04-21 17:04:04 +02:00
|
|
|
|
lDict: IMVCObjectDictionary;
|
2018-07-16 12:34:07 +02:00
|
|
|
|
begin
|
|
|
|
|
lDM := TMyDataModule.Create(nil);
|
|
|
|
|
try
|
|
|
|
|
lDM.qryCustomers.Open;
|
2020-04-20 17:56:17 +02:00
|
|
|
|
lDict := ObjectDict(False)
|
2021-04-07 19:14:12 +02:00
|
|
|
|
|
2020-04-21 17:04:04 +02:00
|
|
|
|
.Add('ncUpperCaseList', lDM.qryCustomers, nil, dstAllRecords, ncUpperCase)
|
|
|
|
|
.Add('ncLowerCaseList', lDM.qryCustomers, nil, dstAllRecords, ncLowerCase)
|
|
|
|
|
.Add('ncCamelCaseList', lDM.qryCustomers, nil, dstAllRecords, ncCamelCase)
|
|
|
|
|
.Add('ncPascalCaseList', lDM.qryCustomers, nil, dstAllRecords, ncPascalCase)
|
2021-04-07 19:14:12 +02:00
|
|
|
|
|
2020-04-21 17:04:04 +02:00
|
|
|
|
.Add('ncUpperCaseSingle', lDM.qryCustomers, nil, dstSingleRecord, ncUpperCase)
|
|
|
|
|
.Add('ncLowerCaseSingle', lDM.qryCustomers, nil, dstSingleRecord, ncLowerCase)
|
|
|
|
|
.Add('ncCamelCaseSingle', lDM.qryCustomers, nil, dstSingleRecord, ncCamelCase)
|
|
|
|
|
.Add('ncPascalCaseSingle', lDM.qryCustomers, nil, dstSingleRecord, ncPascalCase)
|
2021-04-07 19:14:12 +02:00
|
|
|
|
|
2020-04-20 17:56:17 +02:00
|
|
|
|
.Add('meta', StrDict(['page', 'count'], ['1', lDM.qryCustomers.RecordCount.ToString]));
|
2021-04-07 19:14:12 +02:00
|
|
|
|
|
2020-04-21 17:04:04 +02:00
|
|
|
|
Render(lDict);
|
2018-07-16 12:34:07 +02:00
|
|
|
|
finally
|
|
|
|
|
lDM.Free;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end;
|
|
|
|
|
|
2020-10-30 18:08:56 +01:00
|
|
|
|
procedure TRenderSampleController.GetDateAndTimeShowcase;
|
|
|
|
|
begin
|
|
|
|
|
Render(GetDataSet);
|
|
|
|
|
end;
|
|
|
|
|
|
2019-10-10 20:16:20 +02:00
|
|
|
|
procedure TRenderSampleController.GetInterfacedPeople;
|
|
|
|
|
begin
|
|
|
|
|
Render(ToMVCList(GetInterfacedPeopleList, True));
|
|
|
|
|
end;
|
|
|
|
|
|
2017-05-25 10:31:24 +02:00
|
|
|
|
procedure TRenderSampleController.GetLotOfPeople;
|
|
|
|
|
begin
|
2020-04-24 14:48:30 +02:00
|
|
|
|
{ classic approach }
|
|
|
|
|
// Render<TPerson>(GetPeopleList, False);
|
|
|
|
|
{ new approach with ObjectDict }
|
|
|
|
|
Render(ObjectDict(False).Add('data', GetPeopleList));
|
2019-11-05 14:40:39 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2020-02-03 10:51:40 +01:00
|
|
|
|
procedure TRenderSampleController.GetManyNullableObjects;
|
|
|
|
|
var
|
|
|
|
|
lList: TObjectList<TNullablesTest>;
|
|
|
|
|
I: Integer;
|
|
|
|
|
begin
|
|
|
|
|
lList := TObjectList<TNullablesTest>.Create(True);
|
|
|
|
|
for I := 1 to 10 do
|
|
|
|
|
begin
|
|
|
|
|
lList.Add(TNullablesTest.Create);
|
|
|
|
|
lList.Last.LoadSomeData;
|
|
|
|
|
end;
|
|
|
|
|
Render<TNullablesTest>(lList);
|
|
|
|
|
end;
|
|
|
|
|
|
2020-07-13 17:05:22 +02:00
|
|
|
|
procedure TRenderSampleController.GetNil;
|
|
|
|
|
begin
|
|
|
|
|
Render(ObjectDict().Add('data', nil));
|
|
|
|
|
end;
|
|
|
|
|
|
2019-11-05 14:40:39 +01:00
|
|
|
|
procedure TRenderSampleController.GetObjectWithJSONProperty;
|
|
|
|
|
var
|
|
|
|
|
lObj: TObjectWithJSONObject;
|
|
|
|
|
begin
|
|
|
|
|
lObj := TObjectWithJSONObject.Create;
|
|
|
|
|
lObj.StringProp := 'Daniele Teti';
|
2020-02-03 10:51:40 +01:00
|
|
|
|
lObj.JSONObject.s['stringprop'] := 'String Prop';
|
|
|
|
|
lObj.JSONObject.O['innerobj'].s['innerstringprop'] := 'Inner String Prop';
|
2019-11-05 14:40:39 +01:00
|
|
|
|
Render(lObj);
|
2017-05-25 10:31:24 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2020-02-03 10:51:40 +01:00
|
|
|
|
procedure TRenderSampleController.GetOneNullableObject;
|
|
|
|
|
begin
|
|
|
|
|
Render(TNullablesTest.Create);
|
|
|
|
|
end;
|
|
|
|
|
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure TRenderSampleController.GetPerson_AsHTML;
|
2013-11-11 19:32:20 +01:00
|
|
|
|
begin
|
2021-04-21 12:22:09 +02:00
|
|
|
|
ResponseStream.Append('<html><body><ul>').Append('<li>FirstName: Daniele</li>')
|
|
|
|
|
.Append('<li>LastName: Teti').AppendFormat('<li>DOB: %s</li>',
|
|
|
|
|
[DateToISODate(EncodeDate(1975, 5, 2))]).Append('<li>Married: yes</li>')
|
2016-11-27 23:17:20 +01:00
|
|
|
|
.Append('</ul></body></html>');
|
2016-11-18 14:09:54 +01:00
|
|
|
|
RenderResponseStream;
|
2016-02-26 19:21:57 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure TRenderSampleController.GetPerson_AsHTMLView;
|
2016-02-26 19:21:57 +01:00
|
|
|
|
var
|
|
|
|
|
Cust: TCustomer;
|
|
|
|
|
begin
|
|
|
|
|
Cust := TCustomer.Create;
|
|
|
|
|
Cust.Name := 'Daniele Teti Inc.';
|
|
|
|
|
Cust.ContactFirst := 'Daniele';
|
|
|
|
|
Cust.ContactLast := 'Teti';
|
|
|
|
|
Cust.AddressLine1 := 'Rome Street 12';
|
|
|
|
|
Cust.AddressLine2 := '00100';
|
|
|
|
|
Cust.City := 'ROME';
|
2018-10-14 18:23:20 +02:00
|
|
|
|
ViewData['customer'] := Cust;
|
2016-02-27 09:58:54 +01:00
|
|
|
|
LoadView(['header', 'customer', 'footer']);
|
2016-11-18 14:09:54 +01:00
|
|
|
|
RenderResponseStream;
|
2016-02-27 09:58:54 +01:00
|
|
|
|
{ If you need more flexibility, you can use GetRenderedView to compose your
|
|
|
|
|
output using small views.
|
|
|
|
|
Here's an example:
|
|
|
|
|
|
|
|
|
|
ContentType := TMVCMediaType.TEXT_HTML;
|
|
|
|
|
Render(GetRenderedView(['header', 'customer','footer']));
|
|
|
|
|
}
|
2013-11-11 19:32:20 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2019-05-08 20:20:14 +02:00
|
|
|
|
procedure TRenderSampleController.GetPerson_AsText(const ID: Integer);
|
2014-04-01 00:02:31 +02:00
|
|
|
|
begin
|
2022-01-26 23:00:32 +01:00
|
|
|
|
ResponseStream
|
|
|
|
|
.AppendLine('ID : ' + ID.ToString)
|
|
|
|
|
.AppendLine('FirstName : Daniele')
|
|
|
|
|
.AppendLine('LastName : Teti')
|
|
|
|
|
.AppendLine('DOB : ' + DateToStr(EncodeDate(1979, 5, 2)))
|
2016-11-27 23:17:20 +01:00
|
|
|
|
.AppendLine('Married : yes');
|
2016-11-18 14:09:54 +01:00
|
|
|
|
RenderResponseStream;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2017-10-30 14:42:15 +01:00
|
|
|
|
procedure TRenderSampleController.GetProgrammersAndPhilosophersAsObjectList;
|
2014-05-30 11:29:58 +02:00
|
|
|
|
var
|
|
|
|
|
List: TObjectList<TPerson>;
|
|
|
|
|
p: TProgrammer;
|
|
|
|
|
ph: TPhilosopher;
|
|
|
|
|
begin
|
|
|
|
|
List := TObjectList<TPerson>.Create(True);
|
|
|
|
|
p := TProgrammer.Create;
|
|
|
|
|
p.Married := True;
|
|
|
|
|
p.FirstName := 'Peter';
|
|
|
|
|
p.LastName := 'Parker';
|
|
|
|
|
p.Skills := 'Delphi, JavaScript, Python, C++';
|
|
|
|
|
List.Add(p);
|
|
|
|
|
ph := TPhilosopher.Create;
|
|
|
|
|
p.Married := False;
|
|
|
|
|
ph.FirstName := 'Bruce';
|
|
|
|
|
ph.LastName := 'Banner';
|
|
|
|
|
ph.Mentors := 'Abbagnano, Algarotti, Cavalieri, Pareyson';
|
|
|
|
|
List.Add(ph);
|
|
|
|
|
p := TProgrammer.Create;
|
|
|
|
|
p.Married := False;
|
|
|
|
|
p.FirstName := 'Sue';
|
|
|
|
|
p.LastName := 'Storm';
|
|
|
|
|
p.Skills := 'Delphi, JavaScript';
|
|
|
|
|
List.Add(p);
|
|
|
|
|
Render<TPerson>(List);
|
|
|
|
|
end;
|
|
|
|
|
|
2019-11-03 16:16:35 +01:00
|
|
|
|
procedure TRenderSampleController.GetSimpleArrays;
|
|
|
|
|
begin
|
|
|
|
|
Render(TArrayTest.Create);
|
|
|
|
|
end;
|
|
|
|
|
|
2020-08-25 17:19:28 +02:00
|
|
|
|
procedure TRenderSampleController.GetSimpleLists;
|
|
|
|
|
begin
|
|
|
|
|
Render(TSimpleListTest.Create);
|
|
|
|
|
end;
|
|
|
|
|
|
2018-05-16 19:46:29 +02:00
|
|
|
|
procedure TRenderSampleController.GetPeopleAsCSV;
|
|
|
|
|
begin
|
|
|
|
|
ResponseStream.AppendLine('first_name;last_name;age');
|
|
|
|
|
ResponseStream.AppendLine('Daniele;Teti;38');
|
|
|
|
|
ResponseStream.AppendLine('Peter;Parker;22');
|
|
|
|
|
ResponseStream.AppendLine('Bruce;Banner;60');
|
|
|
|
|
ContentType := TMVCMediaType.TEXT_CSV;
|
|
|
|
|
RenderResponseStream;
|
|
|
|
|
end;
|
|
|
|
|
|
2017-07-16 19:36:44 +02:00
|
|
|
|
procedure TRenderSampleController.GetPeopleWithTiming;
|
|
|
|
|
var
|
|
|
|
|
p: TPerson;
|
|
|
|
|
People: TPeopleWithMetadata;
|
|
|
|
|
begin
|
|
|
|
|
People := TPeopleWithMetadata.Create;
|
|
|
|
|
try
|
|
|
|
|
People.Metadata.StartProcessing := Now;
|
|
|
|
|
|
2018-07-16 12:34:07 +02:00
|
|
|
|
{$REGION 'Fake data'}
|
|
|
|
|
Sleep(1000); // processing...
|
2017-07-16 19:36:44 +02:00
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'Daniele';
|
|
|
|
|
p.LastName := 'Teti';
|
|
|
|
|
p.DOB := EncodeDate(1979, 11, 4);
|
|
|
|
|
p.Married := True;
|
|
|
|
|
People.Items.Add(p);
|
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'John';
|
|
|
|
|
p.LastName := 'Doe';
|
|
|
|
|
p.DOB := EncodeDate(1879, 10, 2);
|
|
|
|
|
p.Married := False;
|
|
|
|
|
People.Items.Add(p);
|
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'Jane';
|
|
|
|
|
p.LastName := 'Doe';
|
|
|
|
|
p.DOB := EncodeDate(1883, 1, 5);
|
|
|
|
|
p.Married := True;
|
|
|
|
|
People.Items.Add(p);
|
|
|
|
|
|
2018-07-16 12:34:07 +02:00
|
|
|
|
{$ENDREGION}
|
2017-07-16 19:36:44 +02:00
|
|
|
|
People.Metadata.CustomData := Format('There are %d people in the list', [People.Items.Count]);
|
|
|
|
|
People.Metadata.StopProcessing := Now;
|
|
|
|
|
Render(People, False);
|
|
|
|
|
finally
|
|
|
|
|
People.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure TRenderSampleController.GetPeople_AsObjectList;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
var
|
|
|
|
|
People: TObjectList<TPerson>;
|
|
|
|
|
begin
|
|
|
|
|
People := TObjectList<TPerson>.Create(True);
|
2022-04-05 17:17:35 +02:00
|
|
|
|
People.Add(TPerson.GetNew('Daniele','Teti', EncodeDate(1979, 11, 4), True));
|
|
|
|
|
People.Add(TPerson.GetNew('John','Doe', EncodeDate(1879, 10, 2), False));
|
|
|
|
|
People.Add(TPerson.GetNew('Jane','Doe', EncodeDate(1883, 1, 5), True));
|
2014-04-01 00:02:31 +02:00
|
|
|
|
|
2020-04-24 14:48:30 +02:00
|
|
|
|
{ classic approach }
|
2022-01-26 23:00:32 +01:00
|
|
|
|
//Render<TPerson>(HTTP_STATUS.OK, People, True);
|
2020-04-24 14:48:30 +02:00
|
|
|
|
{ new approach with ObjectDict }
|
|
|
|
|
Render(HTTP_STATUS.OK, ObjectDict().Add('data', People));
|
2014-04-01 00:02:31 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2019-03-10 16:29:18 +01:00
|
|
|
|
procedure TRenderSampleController.GetPeople_AsObjectList_HATEOAS;
|
2019-03-08 09:33:41 +01:00
|
|
|
|
var
|
|
|
|
|
p: TPerson;
|
|
|
|
|
People: TObjectList<TPerson>;
|
|
|
|
|
begin
|
|
|
|
|
People := TObjectList<TPerson>.Create(True);
|
|
|
|
|
|
|
|
|
|
{$REGION 'Fake data'}
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'Daniele';
|
|
|
|
|
p.LastName := 'Teti';
|
|
|
|
|
p.DOB := EncodeDate(1979, 11, 4);
|
|
|
|
|
p.Married := True;
|
|
|
|
|
People.Add(p);
|
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'John';
|
|
|
|
|
p.LastName := 'Doe';
|
|
|
|
|
p.DOB := EncodeDate(1879, 10, 2);
|
|
|
|
|
p.Married := False;
|
|
|
|
|
People.Add(p);
|
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'Jane';
|
|
|
|
|
p.LastName := 'Doe';
|
|
|
|
|
p.DOB := EncodeDate(1883, 1, 5);
|
|
|
|
|
p.Married := True;
|
|
|
|
|
People.Add(p);
|
|
|
|
|
|
|
|
|
|
{$ENDREGION}
|
2020-04-24 14:48:30 +02:00
|
|
|
|
{ classic approach }
|
|
|
|
|
{
|
|
|
|
|
Render<TPerson>(People, True,
|
2019-05-09 20:53:52 +02:00
|
|
|
|
procedure(const APerson: TPerson; const Links: IMVCLinks)
|
2020-04-24 14:48:30 +02:00
|
|
|
|
begin
|
|
|
|
|
Links
|
|
|
|
|
.AddRefLink
|
|
|
|
|
.Add(HATEOAS.HREF, '/people/' + APerson.ID.ToString)
|
|
|
|
|
.Add(HATEOAS.REL, 'self')
|
|
|
|
|
.Add(HATEOAS._TYPE, 'application/json')
|
|
|
|
|
.Add('title', 'Details for ' + APerson.FullName);
|
|
|
|
|
Links
|
|
|
|
|
.AddRefLink
|
|
|
|
|
.Add(HATEOAS.HREF, '/people')
|
|
|
|
|
.Add(HATEOAS.REL, 'people')
|
|
|
|
|
.Add(HATEOAS._TYPE, 'application/json');
|
|
|
|
|
end);
|
|
|
|
|
}
|
|
|
|
|
{ new approach with ObjectDict }
|
|
|
|
|
Render(ObjectDict().Add('data', People,
|
|
|
|
|
procedure(const APerson: TObject; const Links: IMVCLinks)
|
2019-03-08 09:33:41 +01:00
|
|
|
|
begin
|
2021-04-21 12:22:09 +02:00
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/people/' + TPerson(APerson).ID.ToString).Add(HATEOAS.REL,
|
|
|
|
|
'self').Add(HATEOAS._TYPE, 'application/json').Add('title',
|
|
|
|
|
'Details for ' + TPerson(APerson).FullName);
|
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/people').Add(HATEOAS.REL, 'people').Add(HATEOAS._TYPE,
|
|
|
|
|
'application/json');
|
2020-04-24 14:48:30 +02:00
|
|
|
|
end));
|
2019-03-08 09:33:41 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2021-01-27 20:25:35 +01:00
|
|
|
|
procedure TRenderSampleController.GetPeople_AsObjectList_With_Alias;
|
|
|
|
|
var
|
|
|
|
|
p: TPerson;
|
|
|
|
|
People: TPeople;
|
|
|
|
|
begin
|
|
|
|
|
People := TPeople.Create(True);
|
|
|
|
|
{$REGION 'Fake data'}
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'Daniele';
|
|
|
|
|
p.LastName := 'Teti';
|
|
|
|
|
p.DOB := EncodeDate(1979, 11, 4);
|
|
|
|
|
p.Married := True;
|
|
|
|
|
People.Add(p);
|
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'John';
|
|
|
|
|
p.LastName := 'Doe';
|
|
|
|
|
p.DOB := EncodeDate(1879, 10, 2);
|
|
|
|
|
p.Married := False;
|
|
|
|
|
People.Add(p);
|
|
|
|
|
|
|
|
|
|
p := TPerson.Create;
|
|
|
|
|
p.FirstName := 'Jane';
|
|
|
|
|
p.LastName := 'Doe';
|
|
|
|
|
p.DOB := EncodeDate(1883, 1, 5);
|
|
|
|
|
p.Married := True;
|
|
|
|
|
People.Add(p);
|
|
|
|
|
|
|
|
|
|
People.Add(nil);
|
|
|
|
|
|
|
|
|
|
{$ENDREGION}
|
|
|
|
|
{ classic approach }
|
2021-04-21 12:22:09 +02:00
|
|
|
|
// Render<TPerson>(People, True);
|
|
|
|
|
// Render(People, True);
|
|
|
|
|
// Render<TPerson>(HTTP_STATUS.OK, People, True);
|
2021-01-27 20:25:35 +01:00
|
|
|
|
{ new approach with ObjectDict }
|
2021-03-03 18:42:59 +01:00
|
|
|
|
Render(HTTP_STATUS.OK, ObjectDict().Add('data', People));
|
2021-01-27 20:25:35 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2019-05-08 20:20:14 +02:00
|
|
|
|
procedure TRenderSampleController.GetPersonById(const ID: Integer);
|
2019-03-10 16:29:18 +01:00
|
|
|
|
var
|
|
|
|
|
lPerson: TPerson;
|
|
|
|
|
begin
|
|
|
|
|
lPerson := TPerson.Create;
|
|
|
|
|
try
|
2019-05-08 20:20:14 +02:00
|
|
|
|
lPerson.ID := ID;
|
2019-03-10 16:29:18 +01:00
|
|
|
|
lPerson.FirstName := 'Daniele';
|
2019-05-08 20:20:14 +02:00
|
|
|
|
lPerson.LastName := 'Teti';
|
2019-03-10 16:29:18 +01:00
|
|
|
|
lPerson.DOB := EncodeDate(1979, 11, 4);
|
|
|
|
|
lPerson.Married := True;
|
|
|
|
|
Render(lPerson, False,
|
2019-05-09 20:53:52 +02:00
|
|
|
|
procedure(const AObject: TObject; const Links: IMVCLinks)
|
2019-03-10 16:29:18 +01:00
|
|
|
|
begin
|
2021-04-21 12:22:09 +02:00
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/people/' + TPerson(AObject).ID.ToString)
|
|
|
|
|
.Add(HATEOAS.REL, 'self').Add(HATEOAS._TYPE, TMVCMediaType.APPLICATION_JSON);
|
2019-10-10 20:16:20 +02:00
|
|
|
|
Links.AddRefLink.Add(HATEOAS.HREF, '/people').Add(HATEOAS.REL, 'people').Add(HATEOAS._TYPE,
|
|
|
|
|
TMVCMediaType.APPLICATION_JSON);
|
2019-03-10 16:29:18 +01:00
|
|
|
|
end);
|
|
|
|
|
finally
|
|
|
|
|
lPerson.Free;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure TRenderSampleController.GetPersonJSON;
|
2013-11-11 19:32:20 +01:00
|
|
|
|
var
|
2019-03-10 16:29:18 +01:00
|
|
|
|
lJSONPerson: TJSONObject;
|
2013-11-11 19:32:20 +01:00
|
|
|
|
begin
|
2019-03-10 16:29:18 +01:00
|
|
|
|
lJSONPerson := TJSONObject.Create;
|
|
|
|
|
lJSONPerson.s['FirstName'] := 'Daniele';
|
|
|
|
|
lJSONPerson.s['LastName'] := 'Teti';
|
|
|
|
|
lJSONPerson.s['DOB'] := DateToISODate(EncodeDate(1975, 5, 2));
|
|
|
|
|
lJSONPerson.B['Married'] := True;
|
|
|
|
|
Render(lJSONPerson);
|
2013-11-11 19:32:20 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2016-11-27 23:17:20 +01:00
|
|
|
|
procedure TRenderSampleController.GetPersonPhoto;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
begin
|
2014-04-01 19:36:05 +02:00
|
|
|
|
// ContentType := 'image/jpeg';
|
2016-11-27 23:17:20 +01:00
|
|
|
|
SendFile('..\..\_\customer.png');
|
2014-04-01 00:02:31 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2019-03-16 17:20:28 +01:00
|
|
|
|
procedure TRenderSampleController.GetPersonPhotoAsStream;
|
2015-06-29 14:36:54 +02:00
|
|
|
|
var
|
|
|
|
|
LPhoto: TFileStream;
|
|
|
|
|
begin
|
2018-07-16 12:34:07 +02:00
|
|
|
|
LPhoto := TFileStream.Create('..\..\_\customer.png', fmOpenRead or fmShareDenyWrite);
|
2015-06-29 14:36:54 +02:00
|
|
|
|
ContentType := 'image/png'; // you can also use MVCProduces attribute
|
|
|
|
|
|
|
|
|
|
// LPhoto is a plain TStream descendant, so it can be rendered as usual
|
|
|
|
|
Render(LPhoto, True);
|
|
|
|
|
end;
|
|
|
|
|
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end.
|