restemplate/URestemplateApp.pas

429 lines
10 KiB
Plaintext

{
This file is part of restemplate.
Copyright (C) 2015 Andreas Schneider
restemplate is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
restemplate is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with restemplate. If not, see <http://www.gnu.org/licenses/>.
}
unit URestemplateApp;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, CustApp,
IniFiles, fphttpclient, jsonparser, JTemplate,
UFilter;
type
{ TRestemplateApplication }
TRestemplateApplication = class(TCustomApplication)
protected
FConfigDir: String;
FTemplateDir: String;
FSessionIni: TIniFile;
FTemplateName: String;
FParser: TJTemplateParser;
FHttp: TFPHTTPClient;
FContent: TStringList;
FFilters: TFilterList;
FBeautify: Boolean;
FURL: String;
FMethod: String;
//Main
procedure DoRun; override;
//Command processing
function ProcessCommand(ALine: String): Boolean;
procedure CmdAskUser(AName: String);
procedure CmdHeader(AHeader: String);
procedure CmdBasicAuth(AData: String);
procedure CmdHighlight(AData: String);
procedure ProcessCall(AURL: String);
//Helper
procedure ListProfiles;
procedure WriteContent;
public
constructor Create; overload;
destructor Destroy; override;
end;
implementation
uses
strutils, crt, UCRTHelper, fpjson, DOM, XMLRead, XMLWrite;
type
TContentType = (ctOther, ctJSON, ctXML);
function IdentifyContentType(AString: String; out ContentType: TContentType): Boolean;
begin
if Pos('application/json', AString) > 0 then
ContentType := ctJSON
else if Pos('application/xml', AString) > 0 then
ContentType := ctXML
else
ContentType := ctOther;
Result := (ContentType <> ctOther);
end;
{ TRestemplateApplication }
procedure TRestemplateApplication.DoRun;
var
templateFile: String;
line: String;
data: TextFile;
commandMode: Boolean;
begin
templateFile := FTemplateDir + ParamStr(1) + '.rest';
if ParamCount <> 1 then
begin
Writeln('Usage: ', ExtractFileName(ParamStr(0)), ' <profile or file>');
Writeln;
ListProfiles;
Halt(0);
end;
if FileExists(ParamStr(1)) then
begin
AssignFile(data, ParamStr(1));
FTemplateName := ExtractFileName(ParamStr(1));
if AnsiEndsStr('.rest', FTemplateName) then
FTemplateName := Copy(FTemplateName, 1, Length(FTemplateName) - 5);
end else
if FileExists(templateFile) then
begin
AssignFile(data, templateFile);
FTemplateName := ParamStr(1);
end else
begin
writeln('Template not found!');
Halt(1);
end;
Reset(data);
FBeautify := False; //By default, we don't want to manipulate output.
commandMode := True;
try
while not EOF(data) do
begin
ReadLn(data, line);
if commandMode and (line <> '') and (line[1] <> '#') and
not ProcessCommand(line) then
begin
commandMode := False;
end;
if not commandMode then
FContent.Add(line);
end;
if FURL <> '' then
ProcessCall(FURL);
finally
CloseFile(data);
end;
Terminate;
end;
function TRestemplateApplication.ProcessCommand(ALine: String): Boolean;
begin
Result := False;
if AnsiStartsStr('Ask ', ALine) then
begin
Result := True;
CmdAskUser(Copy(ALine, 5, Length(ALine)));
end else
if AnsiStartsStr('Header ', ALine) then
begin
Result := True;
CmdHeader(Copy(ALine, 8, Length(ALine)));
end else
if AnsiStartsStr('Method ', ALine) then
begin
Result := True;
FMethod := Copy(ALine, 8, Length(ALine));
end else
// We don't include the space here, since we also interpret this following
// char as separator for username and password! (In case the username itself
// contains a space.)
if AnsiStartsStr('BasicAuth', ALine) then
begin
Result := True;
CmdBasicAuth(Copy(ALine, 10, Length(ALine)));
end else
if ALine = 'Beautify' then
begin
Result := True;
FBeautify := True;
end else
if AnsiStartsStr('Highlight ', ALine) then
begin
Result := True;
CmdHighlight(Copy(ALine, 11, Length(ALine)));
end else
if AnsiStartsStr('Call ', ALine) then
begin
Result := True;
FURL := Copy(ALine, 6, Length(ALine));
end;
end;
procedure TRestemplateApplication.CmdAskUser(AName: String);
var
value, default: String;
begin
default := FSessionIni.ReadString(FTemplateName, AName, '');
value := Prompt(AName, default);
if value = '' then
Halt(3); //Cancelled
FParser.Fields.Add(AName, value);
FSessionIni.WriteString(FTemplateName, AName, value);
end;
procedure TRestemplateApplication.CmdHeader(AHeader: String);
var
i: Integer;
varName, varValue: String;
begin
FParser.Content := AHeader;
FParser.Replace;
AHeader := FParser.Content;
i := 1;
while (i < Length(AHeader)) and (AHeader[i] <> ':') do
Inc(i);
varName := Trim(Copy(AHeader, 1, i - 1));
varValue := Trim(Copy(AHeader, i + 1, Length(AHeader)));
FHttp.AddHeader(varName, varValue);
end;
procedure TRestemplateApplication.CmdBasicAuth(AData: String);
var
separator: Char;
i: Integer;
begin
separator := AData[1];
i := 2;
while (i < Length(AData)) and (AData[i] <> separator) do
Inc(i);
FHttp.UserName := Copy(AData, 2, i - 2);
FHttp.Password := Copy(AData, i + 1, Length(AData));
end;
procedure TRestemplateApplication.CmdHighlight(AData: String);
begin
FFilters.Add(THighlightFilter.Create(AData))
end;
procedure TRestemplateApplication.ProcessCall(AURL: String);
var
s: String;
request, response: TStream;
jsonParser: TJSONParser;
jsonData: TJSONData;
contentType: TContentType;
xmlDoc: TXMLDocument;
begin
FParser.Content := AURL;
FParser.Replace;
AURL := FParser.Content;
writeln('Calling ', AURL);
response := TMemoryStream.Create;
request := nil;
if FContent.Count > 0 then
begin
request := TMemoryStream.Create;
// Variable replacement
FParser.Content := FContent.Text;
FParser.Replace;
FContent.Text := FParser.Content;
FContent.SaveToStream(request);
request.Position := 0;
FHttp.RequestBody := request;
end;
try
FHttp.HTTPMethod(FMethod, AURL, response, []);
except
on E: Exception do
begin
writeln;
writeln('Failed! ', E.Message);
Halt(1);
end;
end;
writeln;
writeln('Status: ', FHttp.ResponseStatusCode, ' (', FHttp.ResponseStatusText, ')');
writeln;
writeln('Headers:');
for s in FHttp.ResponseHeaders do
writeln(' ', s);
writeln;
response.Position := 0;
if FBeautify and IdentifyContentType(FHttp.GetHeader(FHttp.ResponseHeaders, 'Content-Type'), contentType) then
begin
case contentType of
ctJSON:
begin
jsonParser := TJSONParser.Create(response);
jsonData := jsonParser.Parse;
FContent.Text := jsonData.FormatJSON;
jsonData.Free;
jsonParser.Free;
WriteContent;
end;
ctXML:
begin
ReadXMLFile(xmlDoc, response);
response.Size := 0;
WriteXMLFile(xmlDoc, response);
response.Position := 0;
FContent.LoadFromStream(response);
WriteContent;
end;
end;
end else
begin
FContent.LoadFromStream(response);
WriteContent;
end;
response.Free;
request.Free;
end;
procedure TRestemplateApplication.ListProfiles;
var
sr: TSearchRec;
begin
Writeln('Known profiles:');
if FindFirst(FTemplateDir + '*.rest', faAnyFile, sr) = 0 then
begin
repeat
writeln(' ', Copy(sr.Name, 1, Length(sr.Name) - 5));
until FindNext(sr) <> 0;
end;
end;
procedure TRestemplateApplication.WriteContent;
var
i: Integer;
matchPos, offset, lastPos: Integer;
data: String;
highlights: THighlights;
highlight: THighlight;
begin
highlights := THighlights.Create;
data := FContent.Text;
offset := 0;
lastPos := 1;
for i := 0 to FFilters.Count - 1 do
begin
if FFilters[i].Expression.Exec(data) then
begin
repeat
highlight.Start := FFilters[i].Expression.MatchPos[0];
highlight.Length := FFilters[i].Expression.MatchLen[0];
highlight.FGColor := FFilters[i].FGColor;
highlight.BGColor := FFilters[i].BGColor;
highlights.Add(highlight);
until not FFilters[i].Expression.ExecNext;
end;
end;
highlights.Sort(@CompareHighlights);
// Sanitize highlights
for i := 0 to highlights.Count - 2 do
begin
if (highlights[i].Start + highlights[i].Length) > highlights[i+1].Start then
begin
highlight := highlights[i];
highlight.Length := highlights[i+1].Start - highlights[i].Start;
highlights[i] := highlight;
end;
end;
for highlight in highlights do
begin
matchPos := highlight.Start;
offset := highlight.Length;
write(Copy(data, lastPos, matchPos - lastPos));
if highlight.FGColor < $FF then
TextColor(highlight.FGColor);
if highlight.BGColor < $FF then
TextBackground(highlight.BGColor);
write(Copy(data, matchPos, offset));
NormVideo;
lastPos := matchPos + offset;
end;
writeln(Copy(data, lastPos, Length(data)));
highlights.Free;
end;
constructor TRestemplateApplication.Create;
begin
inherited Create(nil);
StopOnException := True;
FConfigDir := GetAppConfigDir(False);
FTemplateDir := FConfigDir + 'templates' + PathDelim;
FSessionIni := TIniFile.Create(FConfigDir + 'session.ini');
FContent := TStringList.Create;
FHttp := TFPHTTPClient.Create(Self);
FFilters := TFilterList.Create;
FParser := TJTemplateParser.Create;
end;
destructor TRestemplateApplication.Destroy;
begin
FSessionIni.Free;
FContent.Free;
FHttp.Free;
FFilters.Free;
FParser.Free;
inherited Destroy;
end;
end.