-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathMain.pas
331 lines (303 loc) · 14.1 KB
/
Main.pas
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
unit Main;
interface
uses
System.SysUtils,
system.AnsiStrings,
System.Types,
System.UITypes,
System.Classes,
System.Variants,
system.Messaging,
FMX.Types,
FMX.Controls,
FMX.Forms,
FMX.Graphics,
FMX.DialogService,
FMX.Dialogs,
FMX.ScrollBox,
FMX.Memo,
FMX.Controls.Presentation,
FMX.StdCtrls,
FMX.Memo.Types,
Alcinoe.FMX.ErrorReporting,
Alcinoe.FMX.Common,
Alcinoe.FMX.GeoPosition.Sensor,
Alcinoe.FMX.Objects,
Alcinoe.Common,
Alcinoe.StringUtils,
Alcinoe.StringList;
type
TForm1 = class(TForm)
Memo1: TMemo;
Button1: TButton;
Button4: TButton;
Button5: TButton;
Button6: TButton;
Button7: TButton;
Button2: TButton;
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button5Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
procedure Button6Click(Sender: TObject);
procedure Button7Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
FGeoPositionSensor: TALGeoPositionSensor;
procedure OnGeoPositionSensorGeoPositionUpdate(
const Sender: TObject;
const ALatitude: Double;
const ALongitude: Double;
const AAltitude: Double;
const AAccuracy: Double;
Const ADateTime: TdateTime);
procedure OnGeoPositionSensorActivateGpsAndGrantGeoPositionAccessResult(Sender: TObject);
Procedure OnGeoPositionSensorShowRequestPermissionRationale(
const Sender: TObject;
const AToActivateGPS: Boolean;
const AToRequestCoarseGeoPositionPermission: Boolean;
const AToRequestPreciseGeoPositionPermission: Boolean;
const AToRequestAlwaysAuthorization: Boolean;
const AIsForced: Boolean; // when true it's mean that the user denied the previous permission request with checking "Never ask again option"
const ACanRequestPermissionProc: TProc; // the procedure to launch when the user response positivelly to the rationale
const ACanNotRequestPermissionProc: TProc); // the procedure to launch when the user response negativelly to the rationale
public
end;
var
Form1: TForm1;
implementation
{$IF defined(IOS)}
uses
FMX.Helpers.iOS,
iOSapi.UserNotifications;
{$ENDIF}
{$R *.fmx}
{*******************************************}
procedure TForm1.FormCreate(Sender: TObject);
begin
TALErrorReporting.Instance;
FGeoPositionSensor := TALGeoPositionSensor.Create(true{AUseGooglePlayServicesIfAvailable});
FGeoPositionSensor.OnGeoPositionUpdate := OnGeoPositionSensorGeoPositionUpdate;
FGeoPositionSensor.OnAuthorizationStatus := OnGeoPositionSensorActivateGpsAndGrantGeoPositionAccessResult;
FGeoPositionSensor.OnShowRequestPermissionRationale := OnGeoPositionSensorShowRequestPermissionRationale;
{$REGION ' IOS'}
{$IF defined(IOS)}
//stupidely on IOS to see the app in the settings app i must do stuff like this :(
//https://stackoverflow.com/questions/75964728/my-app-is-not-appearing-in-the-settings-app-after-i-deploy-it-in-my-iphone
var LOptions := UNAuthorizationOptionSound or
UNAuthorizationOptionAlert or
UNAuthorizationOptionBadge;
TUNUserNotificationCenter.OCClass.currentNotificationCenter.requestAuthorizationWithOptions(LOptions{options}, nil{completionHandler});
SharedApplication.registerForRemoteNotifications;
{$ENDIF}
{$ENDREGION}
end;
{********************************************}
procedure TForm1.FormDestroy(Sender: TObject);
begin
ALFreeAndNil(FGeoPositionSensor);
end;
{*********************************************}
procedure TForm1.Button1Click(Sender: TObject);
begin
FGeoPositionSensor.ActivateGpsAndGrantGeoPositionAccess(
true, // const ACoarseGeoPosition: boolean = True;
false, // const APreciseGeoPosition: boolean = True;
false); // const AAlwaysAuthorization: boolean = False)
end;
{*********************************************}
procedure TForm1.Button2Click(Sender: TObject);
begin
FGeoPositionSensor.StopGeoPositionUpdates;
end;
{*********************************************}
procedure TForm1.Button4Click(Sender: TObject);
begin
FGeoPositionSensor.ActivateGpsAndGrantGeoPositionAccess(
true, // const ACoarseGeoPosition: boolean = True;
true, // const APreciseGeoPosition: boolean = True;
true); // const AAlwaysAuthorization: boolean = False)
end;
{*********************************************}
procedure TForm1.Button5Click(Sender: TObject);
begin
FGeoPositionSensor.ActivateGpsAndGrantGeoPositionAccess(
false, // const ACoarseGeoPosition: boolean = True;
true, // const APreciseGeoPosition: boolean = True;
false); // const AAlwaysAuthorization: boolean = False)
end;
{*********************************************}
procedure TForm1.Button6Click(Sender: TObject);
begin
FGeoPositionSensor.StartGeoPositionUpdates(1{aMinDistance});
end;
{*********************************************}
procedure TForm1.Button7Click(Sender: TObject);
begin
var LRestricted: boolean;
var LCoarseGeoPositionGranted: Boolean;
var LPreciseGeoPositionGranted: boolean;
var LAuthorizedAlways: Boolean;
FGeoPositionSensor.GetPermissionsGranted(
LRestricted,
LCoarseGeoPositionGranted,
LPreciseGeoPositionGranted,
LAuthorizedAlways);
Memo1.Lines.add('PermissionsGranted');
Memo1.Lines.add(' GpsEnabled: ' + ALBoolToStrW(FGeoPositionSensor.IsGpsEnabled));
Memo1.Lines.add(' Restricted: ' + ALBoolToStrW(LRestricted));
Memo1.Lines.add(' CoarseGeoPositionGranted: ' + ALBoolToStrW(LCoarseGeoPositionGranted));
Memo1.Lines.add(' PreciseGeoPositionGranted: ' + ALBoolToStrW(LPreciseGeoPositionGranted));
Memo1.Lines.add(' AuthorizedAlways: ' + ALBoolToStrW(LAuthorizedAlways));
Memo1.Lines.add('');
Memo1.Lines.add('************');
Memo1.Lines.add('');
Memo1.SelStart := Length(Memo1.Text);
Memo1.SelLength := 0;
end;
{**********************************************************************************************}
procedure TForm1.OnGeoPositionSensorActivateGpsAndGrantGeoPositionAccessResult(Sender: TObject);
begin
var LRestricted: boolean;
var LCoarseGeoPositionGranted: Boolean;
var LPreciseGeoPositionGranted: boolean;
var LAuthorizedAlways: Boolean;
FGeoPositionSensor.GetPermissionsGranted(
LRestricted,
LCoarseGeoPositionGranted,
LPreciseGeoPositionGranted,
LAuthorizedAlways);
Memo1.Lines.add('OnAuthorizationStatus');
Memo1.Lines.add(' GpsEnabled: ' + ALBoolToStrW(FGeoPositionSensor.IsGpsEnabled));
Memo1.Lines.add(' Restricted: ' + ALBoolToStrW(LRestricted));
Memo1.Lines.add(' CoarseGeoPositionGranted: ' + ALBoolToStrW(LCoarseGeoPositionGranted));
Memo1.Lines.add(' PreciseGeoPositionGranted: ' + ALBoolToStrW(LPreciseGeoPositionGranted));
Memo1.Lines.add(' AuthorizedAlways: ' + ALBoolToStrW(LAuthorizedAlways));
Memo1.Lines.add('');
Memo1.Lines.add('************');
Memo1.Lines.add('');
Memo1.SelStart := Length(Memo1.Text);
Memo1.SelLength := 0;
end;
{****************************************************}
procedure TForm1.OnGeoPositionSensorGeoPositionUpdate(
const Sender: TObject;
const ALatitude: Double;
const ALongitude: Double;
const AAltitude: Double;
const AAccuracy: Double;
Const ADateTime: TdateTime);
begin
Memo1.Lines.add('OnGeoPositionUpdate');
Memo1.Lines.add(' Latitude: ' + ALFloatToStrW(ALatitude, ALDefaultFormatSettingsW));
Memo1.Lines.add(' Longitude: ' + ALFloatToStrW(ALongitude, ALDefaultFormatSettingsW));
Memo1.Lines.add(' Altitude: ' + ALFloatToStrW(AAltitude, ALDefaultFormatSettingsW));
Memo1.Lines.add(' Accuracy: ' + ALFloatToStrW(AAccuracy, ALDefaultFormatSettingsW));
Memo1.Lines.add(' DateTime: ' + ALDateTimeToStrW(ADateTime, ALDefaultFormatSettingsW));
Memo1.Lines.add('');
Memo1.Lines.add('************');
Memo1.Lines.add('');
Memo1.SelStart := Length(Memo1.Text);
Memo1.SelLength := 0;
end;
{*****************************************************************}
procedure TForm1.OnGeoPositionSensorShowRequestPermissionRationale(
const Sender: TObject;
const AToActivateGPS: Boolean;
const AToRequestCoarseGeoPositionPermission: Boolean;
const AToRequestPreciseGeoPositionPermission: Boolean;
const AToRequestAlwaysAuthorization: Boolean;
const AIsForced: Boolean; // when true it's mean that the user denied the previous permission request with checking "Never ask again option"
const ACanRequestPermissionProc: TProc; // the procedure to launch when the user response positivelly to the rationale
const ACanNotRequestPermissionProc: TProc); // the procedure to launch when the user response negativelly to the rationale
begin
var LMessage: String := '';
if AToActivateGPS then begin
LMessage :=
'Hi there! Our app uses GPS to provide location-based services. To use '+
'these features, we need your permission to access your device''s GPS '+
'sensor. Please make sure that your GPS sensor is enabled in your '+
'device''s settings. Don''t worry, we respect your privacy and will '+
'only use your location information for the intended purpose. Once '+
'you''ve granted us access, you''ll be able to enjoy all the benefits '+
'of our app''s location-based features. Thank you!'
end
else if AToRequestCoarseGeoPositionPermission then begin
if AIsForced then LMessage :=
'Hi there! Our app uses your location to provide you with personalized '+
'content and services. To enable this feature, please go to the '+
'settings of our app and grant us access to your device''s location. '+
'Don''t worry, we respect your privacy and will only use your location '+
'information for the intended purpose. Once you''ve granted us access, '+
'you''ll be able to enjoy all the benefits of our app''s '+
'location-based features. Thank you!'
else LMessage :=
'Hi there! Our app uses your location to provide you with personalized '+
'content and services. To enable this feature, we need your permission '+
'to access your device''s location. Don''t worry, we respect your '+
'privacy and will only use your location information for the intended '+
'purpose. Would you like to authorize our app to access your location?';
end
else if AToRequestPreciseGeoPositionPermission then begin
if AIsForced then LMessage :=
'Hello! Our app relies on your precise location to provide you with '+
'personalized content and services. To enable this feature, please go '+
'to our app''s settings and grant us access to your device''s precise '+
'location. We understand the importance of privacy and assure you that '+
'we will only use your location information for its intended purpose. '+
'Once you''ve granted us access, you''ll be able to fully experience '+
'and benefit from our app''s location-based features. Thank you for '+
'choosing our app!'
else LMessage :=
'Hello! Our app requires your device''s precise location to provide you '+
'with personalized content and services. In order to use this feature, '+
'we kindly ask for your permission to access your device''s precise '+
'location. We understand that privacy is important, and we want to '+
'assure you that we will only use your location information for its '+
'intended purpose. Would you like to authorize our app to access your '+
'precise location? Once you grant us permission, you''ll be able to '+
'fully experience and benefit from our app''s location-based features. '+
'Thank you for considering our request!';
end
else if AToRequestAlwaysAuthorization then begin
if AIsForced then LMessage :=
'Hello! Our app requires access to your device''s location in the '+
'background to provide you with personalized content and services. To '+
'enable this feature, please go to the settings of our app and grant '+
'us permission to access your device''s location in the background. '+
'We want to assure you that we respect your privacy and will only use '+
'your location information for its intended purpose. Once you grant us '+
'permission, you''ll be able to fully enjoy all the benefits of our '+
'app''s location-based features. Thank you for considering our request!'
else LMessage :=
'Hello! Our app requires access to your device''s location in the '+
'background to provide you with personalized content and services. In '+
'order to use this feature, we kindly ask for your permission to access '+
'your device''s background location. We respect your privacy and will '+
'only use your location information for its intended purpose. Would '+
'you like to authorize our app to access your device''s background '+
'location? Once you grant us permission, you''ll be able to fully '+
'enjoy all the benefits of our app''s location-based features. '+
'Thank you for considering our request!';
end
else
raise Exception.Create('Error 13359DD4-3BB0-4DF7-ACC7-F5D501151B58');
TDialogService.MessageDialog(
LMessage, // const AMessage: string;
TMsgDlgType.mtConfirmation, // const ADialogType: TMsgDlgType;
[TMsgDlgBtn.mbCancel, TMsgDlgBtn.mbOK], // const AButtons: TMsgDlgButtons;
TMsgDlgBtn.mbCancel, // const ADefaultButton: TMsgDlgBtn;
0, // const AHelpContext: THelpContext;
procedure(const AResult: TModalResult)
begin
if AResult = mrOk then ACanRequestPermissionProc
else ACanNotRequestPermissionProc;
end); // const ACloseDialogProc: TInputCloseDialogProc);
end;
initialization
{$IFDEF DEBUG}
ReportMemoryleaksOnSHutdown := True;
{$ENDIF}
SetMultiByteConversionCodePage(CP_UTF8);
end.