2014-07-04 17:52:17 +02:00
|
|
|
|
unit RenderSampleControllerU;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2014-05-14 15:55:41 +02:00
|
|
|
|
MVCFramework, MVCFramework.Commons, ObjectsMappers, System.JSON;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
|
|
[MVCPath('/')]
|
|
|
|
|
TRenderSampleController = class(TMVCController)
|
|
|
|
|
public
|
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/customers')]
|
|
|
|
|
[MVCProduces('application/json')]
|
2013-11-14 02:09:22 +01:00
|
|
|
|
procedure GetCustomers_AsDataSet(CTX: TWebContext);
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/people')]
|
|
|
|
|
[MVCProduces('application/json')]
|
|
|
|
|
procedure GetPeople_AsObjectList(CTX: TWebContext);
|
|
|
|
|
|
2014-05-30 11:29:58 +02:00
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/skilledpeople')]
|
|
|
|
|
// [MVCProduces('application/json')]
|
|
|
|
|
procedure GetProgrammersAndPhilosophersAsObjectList(CTX: TWebContext);
|
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/customers/($id).html')]
|
|
|
|
|
[MVCProduces('text/html', 'UTF-8')]
|
|
|
|
|
procedure GetPerson_AsHTML(CTX: TWebContext);
|
|
|
|
|
|
2014-07-04 17:52:17 +02:00
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/customers/unicode/($id).html')]
|
|
|
|
|
[MVCProduces('text/html', 'UTF-8')]
|
|
|
|
|
procedure GetUnicodeText_AsHTML(CTX: TWebContext);
|
|
|
|
|
|
2013-11-10 01:03:53 +01:00
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
2013-11-11 01:11:09 +01:00
|
|
|
|
[MVCPath('/customers/($id)')]
|
|
|
|
|
[MVCProduces('application/json')]
|
2013-11-14 02:09:22 +01:00
|
|
|
|
procedure GetCustomerByID_AsTObject(CTX: TWebContext);
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
2013-11-11 19:32: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')]
|
|
|
|
|
procedure GetPersonJSON(CTX: TWebContext);
|
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/files/customers.txt')]
|
|
|
|
|
[MVCProduces('text/plain')]
|
|
|
|
|
procedure GetPerson_AsText(CTX: TWebContext);
|
|
|
|
|
|
|
|
|
|
[MVCHTTPMethod([httpGet])]
|
|
|
|
|
[MVCPath('/files/customers.png')]
|
|
|
|
|
[MVCProduces('image/png')]
|
|
|
|
|
procedure GetPersonPhoto(CTX: TWebContext);
|
|
|
|
|
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
2014-04-01 00:02:31 +02:00
|
|
|
|
System.SysUtils, BusinessObjectsU, Data.DBXJSON, WebModuleU, Generics.Collections;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
|
|
|
|
|
{ TRoutingSampleController }
|
|
|
|
|
|
2014-07-04 17:52:17 +02:00
|
|
|
|
procedure TRenderSampleController.GetUnicodeText_AsHTML(CTX: TWebContext);
|
|
|
|
|
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;
|
|
|
|
|
|
2013-11-14 02:09:22 +01:00
|
|
|
|
procedure TRenderSampleController.GetCustomerByID_AsTObject(CTX: TWebContext);
|
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
|
2014-04-01 00:02:31 +02:00
|
|
|
|
if CTX.Request.ParamsAsInteger['id'] = 7 then // just a sample
|
2013-11-11 01:11:09 +01:00
|
|
|
|
Render(404, 'Customer Not Found')
|
|
|
|
|
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';
|
|
|
|
|
Render(Cust);
|
|
|
|
|
end;
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2013-11-14 02:09:22 +01:00
|
|
|
|
procedure TRenderSampleController.GetCustomers_AsDataSet(CTX: TWebContext);
|
2013-11-10 01:03:53 +01:00
|
|
|
|
var
|
|
|
|
|
wm: TWebModule1;
|
|
|
|
|
begin
|
|
|
|
|
wm := GetCurrentWebModule as TWebModule1;
|
|
|
|
|
wm.qryCustomers.Open;
|
|
|
|
|
Render(wm.qryCustomers);
|
|
|
|
|
end;
|
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
procedure TRenderSampleController.GetPerson_AsHTML(CTX: TWebContext);
|
2013-11-11 19:32:20 +01:00
|
|
|
|
begin
|
|
|
|
|
ResponseStream.
|
|
|
|
|
Append('<html><body><ul>').
|
|
|
|
|
Append('<li>FirstName: Daniele</li>').
|
|
|
|
|
Append('<li>LastName: Teti').
|
2014-04-01 19:36:05 +02:00
|
|
|
|
AppendFormat('<li>DOB: %s</li>',
|
|
|
|
|
[ISODateToString(EncodeDate(1975, 5, 2))]).
|
2013-11-11 19:32:20 +01:00
|
|
|
|
Append('<li>Married: yes</li>').
|
|
|
|
|
Append('</ul></body></html>');
|
|
|
|
|
Render;
|
|
|
|
|
end;
|
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
procedure TRenderSampleController.GetPerson_AsText(CTX: TWebContext);
|
|
|
|
|
begin
|
|
|
|
|
ResponseStream.
|
|
|
|
|
AppendLine('FirstName: Daniele').
|
|
|
|
|
AppendLine('LastName : Teti').
|
|
|
|
|
AppendLine('DOB : ' + ISODateToString(EncodeDate(1975, 5, 2))).
|
|
|
|
|
AppendLine('Married : yes');
|
|
|
|
|
Render;
|
|
|
|
|
end;
|
|
|
|
|
|
2014-05-30 11:29:58 +02:00
|
|
|
|
procedure TRenderSampleController.GetProgrammersAndPhilosophersAsObjectList(
|
|
|
|
|
CTX: TWebContext);
|
|
|
|
|
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;
|
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
procedure TRenderSampleController.GetPeople_AsObjectList(CTX: TWebContext);
|
|
|
|
|
var
|
2014-05-30 11:29:58 +02:00
|
|
|
|
p: TPerson;
|
2014-04-01 00:02:31 +02:00
|
|
|
|
People: TObjectList<TPerson>;
|
|
|
|
|
begin
|
|
|
|
|
People := TObjectList<TPerson>.Create(True);
|
|
|
|
|
|
|
|
|
|
{$REGION 'Fake data'}
|
2014-05-30 11:29:58 +02:00
|
|
|
|
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);
|
2014-04-01 00:02:31 +02:00
|
|
|
|
{$ENDREGION}
|
|
|
|
|
Render<TPerson>(People);
|
|
|
|
|
// or if you want to be more opne to future extension
|
|
|
|
|
// RenderListAsProperty<TPerson>('people', People);
|
|
|
|
|
end;
|
|
|
|
|
|
2013-11-11 19:32:20 +01:00
|
|
|
|
procedure TRenderSampleController.GetPersonJSON(CTX: TWebContext);
|
|
|
|
|
var
|
2014-05-30 11:29:58 +02:00
|
|
|
|
p: TJSONObject;
|
2013-11-11 19:32:20 +01:00
|
|
|
|
begin
|
2014-05-30 11:29:58 +02:00
|
|
|
|
p := TJSONObject.Create;
|
|
|
|
|
p.AddPair('FirstName', 'Daniele');
|
|
|
|
|
p.AddPair('LastName', 'Teti');
|
|
|
|
|
p.AddPair('DOB', ISODateToString(EncodeDate(1975, 5, 2)));
|
|
|
|
|
p.AddPair('Married', TJSONTrue.Create);
|
|
|
|
|
Render(p);
|
2013-11-11 19:32:20 +01:00
|
|
|
|
end;
|
|
|
|
|
|
2014-04-01 00:02:31 +02:00
|
|
|
|
procedure TRenderSampleController.GetPersonPhoto(CTX: TWebContext);
|
|
|
|
|
begin
|
2014-04-01 19:36:05 +02:00
|
|
|
|
// ContentType := 'image/jpeg';
|
2014-04-01 00:02:31 +02:00
|
|
|
|
SendFile('..\..\..\_\customer.png');
|
|
|
|
|
end;
|
|
|
|
|
|
2013-11-10 01:03:53 +01:00
|
|
|
|
end.
|