-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxtSendMail.pas
413 lines (320 loc) · 10.4 KB
/
xtSendMail.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
unit xtSendMail;
interface
uses system.SysUtils, system.Classes, xtCommonTypes, xtConnection,
uxtCommonComponent, xtServiceAddress, xtDatasetEntity;
type
TxtSendMail = class(TxtBaseComponent)
private
FonBeforeSend: TNotifyEvent;
FonAfterSend: TNotifyEvent;
procedure SetonAfterSend(const Value: TNotifyEvent);
procedure SetonBeforeSend(const Value: TNotifyEvent);
function getSystemTemplateFromSystemPath(template_name: string) : TMAIL_BATCH;
protected
procedure doBeforeActivate; override;
public
constructor Create(AOwner: TComponent); override;
function enqueMailMessage(msg : TMAIL_BATCH) : Int64;
procedure SaveToFile(msg : TMAIL_BATCH; FileName : TFileName);
class function LoadFromFile(FileName : TFileName) : TMAIL_BATCH;
function LoadFromStream(AStream : TStream) : TMAIL_BATCH;
function SaveAsSystemTemplate(msg : TMAIL_BATCH; template_name : String) : Int64;
function getTemplate(template_name : String) : TMAIL_BATCH;
function saveAsTemplateAttachment(msg : TMAIL_BATCH; template_name : String) : Int64;
function LoadTemplateAttachment(pk_attachment : Int64) : TMAIL_BATCH;
class procedure ParamReplacer(var contentHtml: String; mail_params: String);
class function ParamsToUrlParams(mail_params: String) : String;
published
property xtConnection;
property onBeforeSend : TNotifyEvent read FonBeforeSend write SetonBeforeSend;
property onAfterSend : TNotifyEvent read FonAfterSend write SetonAfterSend;
end;
procedure Register;
implementation
{ TxtStore }
uses System.Net.URLClient, System.Net.HttpClient,
System.Net.HttpClientComponent, system.IOUtils,
System.Net.Mime,system.JSON, xtJSON, uProviderHTTP, uXtDriveCommands;
procedure Register;
begin
RegisterComponents('xTumble', [TxtSendMail]);
end;
{ TxtSendMail }
constructor TxtSendMail.Create(AOwner: TComponent);
begin
inherited;
end;
procedure TxtSendMail.doBeforeActivate;
begin
inherited;
end;
function TxtSendMail.enqueMailMessage(msg: TMAIL_BATCH): Int64;
var
Ljobj: TJSONOBject;
MS : TStream;
b: TBytes;
respo: IHTTPResponse;
MSS : TMemoryStream;
FS : TFileStream;
begin
if xtConnection = nil then
raise Exception.Create('xtConnection not defined');
Ljobj := TJSONOBject(xtJSON.TJSONPersistence.ToJSON<TMAIL_BATCH>(msg));
MS := TJSONHelper.JSONToStream(LJOBJ);
respo := HTTPprov.doPost(xtConnection.ConnectionParams,
xtServiceAddress.TxtServices.mailout,'',MS);
if (respo.StatusCode >199) and (respo.StatusCode < 300) then
Begin
result := respo.ContentAsString.ToInt64;
End
Else
Begin
raise Exception.Create('[TxtSendMail.enqueMailMessage] Error: (HTTP:' + respo.StatusCode.ToString + ')' + respo.ContentAsString);
End;
end;
function TxtSendMail.getTemplate(template_name: String): TMAIL_BATCH;
var
jobj : TJSONObject;
xtDs: TxtDatasetEntity;
pk_allegato_template: Int64;
begin
xtDs := TxtDatasetEntity.Create(self);
xtDS.xtConnection := Self.xtConnection;
xtDS.xtApplyUpdateAfterPost := True;
xtDS.CachedUpdates := True;
xtDS.xtLiveRecordInsert := True;
if ExtractFileExt(template_name) = '' then
template_name := template_name + '.mailxt';
xtDS.xtEntityName := 'mail_templates';
xtDS.xtParams.Text := 'tname=' + template_name;
xtDS.Open;
if xtDS.Bof and xtDs.Eof then
Begin
Result := getSystemTemplateFromSystemPath(template_name);
xtDS.Insert;
xtDS.FieldByName('template_name').AsString := template_name;
xtDS.Post;
End
Else if xtDS.FieldByName('system_template').AsString = 'S' then
Begin
Result := getSystemTemplateFromSystemPath(template_name);
End
Else if xtDS.FieldByName('fk_allegato_template').AsLargeInt > 0 then
Begin
Result := LoadTemplateAttachment(xtDS.FieldByName('fk_allegato_template').AsLargeInt);
End
Else
Begin
// raise Exception.Create('[TxtSendMail.getTemplate] HTTP Error : Template' + template_name + ' not found ');
End;
pk_allegato_template := xtDS.FieldByName('pk_id').AsLargeInt;
xtDS.Close;
FreeAndNil(xtDS);
end;
class function TxtSendMail.LoadFromFile(FileName: TFileName): TMAIL_BATCH;
var
Ljobj: TJSONObject;
MS : TStringStream;
begin
Ljobj := TJSONObject.Create;
MS := TStringStream.Create;
MS.LoadFromFile(FileName);
MS.Position := 0;
Ljobj := TJSONObject(TJSONObject.ParseJSONValue(MS.DataString));
result := xtJSON.TJSONPersistence.FromJSON<TMAIL_BATCH>(Ljobj);
Ljobj.Free;
MS.Free;
end;
function TxtSendMail.LoadFromStream(AStream: TStream): TMAIL_BATCH;
var
Ljobj: TJSONObject;
MS : TStringStream;
begin
Ljobj := TJSONObject.Create;
AStream.Position := 0;
MS := TStringStream.Create;
MS.LoadFromStream(AStream);
MS.Position := 0;
Ljobj := TJSONObject(TJSONObject.ParseJSONValue(MS.DataString));
result := xtJSON.TJSONPersistence.FromJSON<TMAIL_BATCH>(Ljobj);
Ljobj.Free;
MS.Free;
end;
function TxtSendMail.LoadTemplateAttachment(pk_attachment: Int64): TMAIL_BATCH;
var
LDRV: TxtDriveCommands;
LAttRec: TRecAllegatoProp;
begin
LDRV := uXtDriveCommands.TxtDriveCommands.Create(Self);
try
LDRV.xtConnection := Self.xtConnection;
LAttRec := LDRV.dloadFile(pk_attachment);
// if not LAttRec.Downloaded then
// raise Exception.Create('Error during loading template attachments:' + LAttRec.Error);
if LAttRec.MS = nil then
raise Exception.Create('Error during loading template attachments:' + LAttRec.Error);
LAttRec.MS.Position := 0;
result := TJSONPersistence.FromJSON<TMAIL_BATCH>(LAttRec.MS);
finally
try
if LAttRec.MS <> NIL then
FreeAndNil(LAttRec.MS);
FreeAndNil(LDRV);
except
end;
end;
end;
class procedure TxtSendMail.ParamReplacer(var contentHtml: String;
mail_params: String);
Var
TS : TStringList;
I: Integer;
S : String;
Name,Value : String;
begin
TS := TStringList.Create;
try
TS.CommaText := mail_params;
for I := 0 to TS.Count-1 do
Begin
Name := '';
Value := '';
if (TS[I].indexof('=') >= 0)and(TS[I].indexof('#') = 0) then
Begin
Name := TS[I].substring(1,TS[I].indexof('='));
Value := TS[I].substring(TS[I].indexof('='));
End
Else
Value := TS[I];
// TEncoding.UTF8.de
contentHtml := contentHtml.Replace('{*' + I.ToString + '*}', UTF8Decode(Value) );
if Name <> '' then
begin
contentHtml := contentHtml.Replace('{*' + Name.toUpper + '*}', UTF8Decode(Value) );
end;
End;
// contentHtml := UTF8Decode(contentHtml);
finally
TS.Free;
end;
end;
class function TxtSendMail.ParamsToUrlParams(mail_params: String): String;
Var
TS : TStringList;
I: Integer;
S : String;
Name,Value : String;
begin
Result := '';
TS := TStringList.Create;
try
TS.CommaText := mail_params;
for I := 0 to TS.Count-1 do
Begin
if TS[I].indexof('=') > 0 then
Begin
if Result = '' then
Result := TS[I]
Else
Result := Result + '&' + TS[I]
End;
End;
finally
TS.Free;
end;
end;
function TxtSendMail.getSystemTemplateFromSystemPath(template_name: string) : TMAIL_BATCH;
var
respo: IHTTPResponse;
begin
respo := HTTPprov.doGet(xtConnection.ConnectionParams, xtServiceAddress.TxtServices.downloadtemplate, 'reportname=' + template_name);
if (respo.StatusCode <> 200)or(respo.ContentStream = nil) then
raise Exception.Create('[TxtSendMail.getTemplate] HTTP Error (' + respo.StatusCode.ToString + '): ' + respo.ContentAsString);
respo.ContentStream.Position := 0;
result := TJSONPersistence.FromJSON<TMAIL_BATCH>(respo.ContentStream);
end;
function TxtSendMail.SaveAsSystemTemplate(msg : TMAIL_BATCH; template_name : String) : Int64;
var
xtDs : TxtDatasetEntity;
respo: IHTTPResponse;
MS: TMemoryStream;
Ljobj: TJSONObject;
begin
try
xtDs := TxtDatasetEntity.Create(self);
xtDS.xtConnection := Self.xtConnection;
xtDS.xtApplyUpdateAfterPost := True;
xtDS.CachedUpdates := True;
xtDS.xtLiveRecordInsert := True;
template_name := template_name.ToLower;
if ExtractFileExt(template_name) = '' then
template_name := template_name + '.mailxt';
xtDS.xtEntityName := 'mail_templates';
xtDS.xtParams.Text := 'tname=' + template_name;
xtDS.Open;
if xtDS.Bof and xtDs.Eof then
Begin
xtDS.Insert;
xtDS.FieldByName('template_name').AsString := template_name;
xtDS.FieldByName('SYSTEM_TEMPLATE').AsString := 'S';
xtDS.Post;
End
Else
Begin
xtDS.Edit;
xtDS.FieldByName('SYSTEM_TEMPLATE').AsString := 'S';
xtDS.Post;
End;
result := xtDS.FieldByName('pk_id').AsLargeInt;
xtDS.Close;
Ljobj := TJSONOBject(xtJSON.TJSONPersistence.ToJSON<TMAIL_BATCH>(msg));
MS := TJSONHelper.JSONToStream(LJOBJ);
ms.Position := 0;
respo := HTTPprov.doPost(xtConnection.ConnectionParams,
xtServiceAddress.TxtServices.uploadrawtemplate,'template_name=' + template_name,MS);
if respo.StatusCode <> 200 then
raise Exception.Create(respo.ContentAsString());
finally
FreeAndNil(MS);
FreeAndNil(xtDS);
Ljobj.Free;
end;
end;
function TxtSendMail.saveAsTemplateAttachment(msg: TMAIL_BATCH;
template_name: String): Int64;
var
Ljobj: TJSONObject;
MS: TStringStream;
LDRV: TxtDriveCommands;
begin
Ljobj := TJSONOBject(xtJSON.TJSONPersistence.ToJSON<TMAIL_BATCH>(msg));
MS := TJSONHelper.JSONToStream(LJOBJ);
ms.Position := 0;
LDRV := uXtDriveCommands.TxtDriveCommands.Create(Self);
try
LDRV.xtConnection := Self.xtConnection;
result := LDRV.uploadFile(MS,template_name,1);
finally
MS.Free;
LDRV.Free;
end;
end;
procedure TxtSendMail.SaveToFile(msg: TMAIL_BATCH; FileName: TFileName);
var
Ljobj: TJSONObject;
MS: TStringStream;
begin
Ljobj := TJSONOBject(xtJSON.TJSONPersistence.ToJSON<TMAIL_BATCH>(msg));
MS := TJSONHelper.JSONToStream(LJOBJ);
MS.SaveToFile(FileName);
MS.Free;
end;
procedure TxtSendMail.SetonAfterSend(const Value: TNotifyEvent);
begin
FonAfterSend := Value;
end;
procedure TxtSendMail.SetonBeforeSend(const Value: TNotifyEvent);
begin
FonBeforeSend := Value;
end;
end.