1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
unit frmmain;
{$mode objfpc}{$H+}
// Define USESYNAPSE if you want to force use of synapse
{ $DEFINE USESYNAPSE}
// For version 2.6.4, synapse is the only option.
{$IFDEF VER2_6}
{$DEFINE USESYNAPSE}
{$ENDIF}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
synautil, IniFiles, googlebase, googleservice, googleclient, googlecalendar;
type
{ TMainForm }
TAccessTokenState = (acsWaiting,acsOK,acsCancel);
TMainForm = class(TForm)
BCancel: TButton;
BSetAccess: TButton;
BFetchCalendars: TButton;
BFetchEvents: TButton;
EAccessCode: TEdit;
GBAccess: TGroupBox;
LEvents: TLabel;
LEAccess: TLabel;
LBCalendars: TListBox;
LBEvents: TListBox;
procedure BCancelClick(Sender: TObject);
procedure BFetchEventsClick(Sender: TObject);
procedure BSetAccessClick(Sender: TObject);
procedure BFetchCalendarsClick(Sender: TObject);
Procedure DoUserConsent(Const AURL : String; Out AAuthCode : String) ;
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure LBCalendarsSelectionChange(Sender: TObject; User: boolean);
private
{ private declarations }
FAccessState : TAccessTokenState;
FClient : TGoogleClient;
FCalendarAPI: TCalendarAPI;
calendarList: TCalendarList;
FCurrentCalendar : TCalendarListEntry;
events : TEvents;
procedure LoadAuthConfig;
procedure SaveRefreshToken;
public
{ public declarations }
end;
var
MainForm: TMainForm;
implementation
uses
{$ifdef windows}windows,{$endif}
jsonparser, // needed
fpoauth2,
lclintf,
{$IFDEF USESYNAPSE}
ssl_openssl,
synapsewebclient
{$ELSE}
fphttpwebclient
{$ENDIF}
;
{$R *.lfm}
{ TMainForm }
procedure TMainForm.FormCreate(Sender: TObject);
begin
// Register calendar resources.
TCalendarAPI.RegisterAPIResources;
// Set up google client.
FClient:=TGoogleClient.Create(Self);
{$IFDEF USESYNAPSE}
FClient.WebClient:=TSynapseWebClient.Create(Self);
{$ELSE}
FClient.WebClient:=TFPHTTPWebClient.Create(Self);
{$ENDIF}
FClient.WebClient.RequestSigner:=FClient.AuthHandler;
FClient.WebClient.LogFile:='requests.log';
FClient.AuthHandler.WebClient:=FClient.WebClient;
FClient.AuthHandler.Config.AccessType:=atOffLine;
// We want to enter a code.
FClient.OnUserConsent:=@DoUserConsent;
// Create a calendar API and connect it to the client.
FCalendarAPI:=TCalendarAPI.Create(Self);
FCalendarAPI.GoogleClient:=FClient;
// Load configuration
LoadAuthConfig;
end;
procedure TMainForm.FormDestroy(Sender: TObject);
begin
FreeAndNil(CalendarList);
FreeAndNil(Events);
end;
procedure TMainForm.LBCalendarsSelectionChange(Sender: TObject; User: boolean);
begin
BFetchEvents.Enabled:=User and (LBCalendars.ItemIndex<>-1);
if BFetchEvents.Enabled then
begin
FCurrentCalendar:=LBCalendars.Items.Objects[LBCalendars.ItemIndex] as TCalendarListEntry;
if (FCurrentCalendar.Summary<>'') then
LEvents.Caption:='Events for calendar : '+FCurrentCalendar.Summary
else
LEvents.Caption:='Events for calendar : '+FCurrentCalendar.ID;
end
else
begin
LEvents.Caption:='Events for calendar : <select a calendar>';
LBEvents.Items.Clear;
FCurrentCalendar:=Nil;
end;
end;
procedure TMainForm.LoadAuthConfig;
Var
ini:TIniFile;
begin
ini:=TIniFile.Create('google.ini');
try
With FClient.AuthHandler.Config,Ini do
begin
// Registered application needs calendar scope
ClientID:=ReadString('Credentials','ClientID','');
ClientSecret:=ReadString('Credentials','ClientSecret','');
AuthScope:=ReadString('Credentials','Scope',
'https://www.googleapis.com/auth/calendar');
// We are offline.
RedirectUri:='urn:ietf:wg:oauth:2.0:oob';
end;
With FClient.AuthHandler.Session,Ini do
begin
// Session data
RefreshToken:=ReadString('Session','RefreshToken','');
AccessToken:=ReadString('Session','AccesToken','');
AuthTokenType:=ReadString('Session','TokenType','');
AuthExpires:=ReadDateTime('Session','AuthExpires',0);
AuthExpiryPeriod:=ReadInteger('Session','AuthPeriod',0);
end;
finally
Ini.Free;
end;
end;
procedure TMainForm.SaveRefreshToken;
Var
ini:TIniFile;
begin
// We save the refresh token for later use.
With FClient.AuthHandler.Session do
if RefreshToken<>'' then
begin
ini:=TIniFile.Create('google.ini');
try
With ini do
begin
WriteString('Session','RefreshToken',RefreshToken);
WriteString('Session','AccessToken',AccessToken);
WriteString('Session','TokenType',AuthTokenType);
WriteDateTime('Session','AuthExpires',AuthExpires);
WriteInteger('Session','AuthPeriod',AuthExpiryPeriod);
end;
finally
Ini.Free;
end;
end;
end;
procedure TMainForm.BFetchCalendarsClick(Sender: TObject);
var
Entry: TCalendarListEntry;
Resource : TCalendarListResource;
EN : String;
i:integer;
begin
LBCalendars.Items.Clear;
FreeAndNil(CalendarList);
Resource:=Nil;
try
Resource:=FCalendarAPI.CreateCalendarListResource;
CalendarList:=Resource.list('');
SaveRefreshToken;
I:=0;
if assigned(calendarList) then
for Entry in calendarList.items do
begin
Inc(i);
EN:=Entry.Summary;
if EN='' then
EN:=Entry.id+' ('+Entry.description+')';
LBCalendars.Items.AddObject(IntToStr(i)+': '+EN,Entry);
end;
BFetchEvents.Enabled:=LBCalendars.Items.Count>0;
finally
FreeAndNil(Resource);
end;
end;
procedure TMainForm.BSetAccessClick(Sender: TObject);
begin
FAccessState:=acsOK;
GBAccess.Visible:=False;
end;
procedure TMainForm.BCancelClick(Sender: TObject);
begin
FAccessState:=acsCancel;
GBAccess.Visible:=False;
end;
procedure TMainForm.BFetchEventsClick(Sender: TObject);
var
Entry: TEvent;
EN : String;
i:integer;
begin
if LBCalendars.ItemIndex<0 then
Exit;
LBEvents.Items.Clear;
FreeAndNil(Events);
Events:=FCalendarAPI.EventsResource.list(FCurrentCalendar.id,'');
SaveRefreshToken;
I:=0;
if assigned(Events) then
for Entry in Events.items do
begin
Inc(i);
EN:=Entry.Summary;
if EN='' then
EN:=Entry.id+' ('+Entry.description+')';
if Assigned(Entry.Start) then
if Entry.start.date<>0 then
EN:=DateToStr(Entry.start.date)+' : '+EN
else if Entry.start.dateTime<>0 then
EN:=DateTimeToStr(Entry.start.datetime)+' : '+EN
else
EN:='(unspecified time) '+EN;
LBEvents.Items.AddObject(IntToStr(i)+': '+EN,Entry);
end;
end;
Procedure TMainForm.DoUserConsent(Const AURL: String; Out AAuthCode: String);
begin
GBAccess.Visible:=True;
EAccessCode.Text:='<enter code here>';
FAccessState:=acsWaiting;
OpenUrl(AURL);
While (FAccessState=acsWaiting) do
Application.ProcessMessages;
if FAccessState=acsOK then
AAuthCode:=EAccessCode.Text;
GBAccess.Visible:=False;
end;
end.
|