-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyGiftCardService.svc.cs
410 lines (377 loc) · 19 KB
/
MyGiftCardService.svc.cs
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
using MyGIftCard;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.Security.Cryptography;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Web;
using System.Text;
using System.Web.Script.Serialization;
using System.Xml;
using System.Xml.Serialization;
namespace MyGiftCard
{
static class SafeBase64UrlEncoder
{
private const string Plus = "+";
private const string Minus = "-";
private const string Slash = "/";
private const string Underscore = "_";
private const string EqualSign = "=";
private const string Pipe = "|";
private static readonly IDictionary<string, string> _mapper;
static SafeBase64UrlEncoder()
{
_mapper = new Dictionary<string, string> { { Plus, Minus }, { Slash, Underscore }, { EqualSign, Pipe } };
}
/// <summary>
/// Encode the base64 to safeUrl64
/// </summary>
/// <param name="base64Str"></param>
/// <returns></returns>
public static string EncodeBase64Url(string base64Str)
{
if (string.IsNullOrEmpty(base64Str))
return base64Str;
foreach (var pair in _mapper)
{
base64Str = base64Str.Replace(pair.Key, pair.Value);
}
return base64Str;
}
/// <summary>
/// Decode the Url back to original base64
/// </summary>
/// <param name="safe64Url"></param>
/// <returns></returns>
public static string DecodeBase64Url(string safe64Url)
{
if (string.IsNullOrEmpty(safe64Url))
return safe64Url;
foreach (var pair in _mapper)
{
safe64Url = safe64Url.Replace(pair.Value, pair.Key);
}
return safe64Url;
}
}
public class MyGiftCardService : IMyGiftCardService
{
private readonly IMyGiftCardController giftCardController;
public MyGiftCardService(IMyGiftCardController controller)
{
this.giftCardController = controller;
}
public Stream GetSalonList()
{
var v = new List<CompanyModel>()
{
new CompanyModel() { CompanyName = "Name 1", CompanyAddress = new Address { AddressOne="address one", City="Knoxville", State="TN"}},
new CompanyModel() { CompanyName = "Name 2", CompanyAddress = new Address { AddressOne="some other address", City="Knoxville", State="TN"}},
new CompanyModel() { CompanyName = "Name 3", CompanyAddress = new Address { AddressOne="home address", City="Knoxville", State="TN"}},
new CompanyModel() { CompanyName = "Name 4", CompanyAddress = new Address { AddressOne="work address", City="Knoxville", State="TN"}}
};
v.AddRange(giftCardController.retrieveClients());
WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
MemoryStream stream1 = new MemoryStream();
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(List<CompanyModel>));
ser.WriteObject(stream1, v);
return stream1;
}
public string SalonLogin(string company_id, AuthModel model)
{
int id;
WebOperationContext ctx = WebOperationContext.Current;
if (!Int32.TryParse(company_id, out id))
{
ctx.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.Unauthorized;
return "Salon ID is not valid";
}
OperationContext context = OperationContext.Current;
MessageProperties prop = context.IncomingMessageProperties;
RemoteEndpointMessageProperty endpoint =
prop[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;
string ip = "1";
var result = giftCardController.authenticateLogin(new AuthModel()
{
CompanyID = id,
Password = model.Password,
Username = model.Username
}, (id + ":" + ip + ":" + DateTime.Now.ToString("yyyMMdd_HHmmss")));
String s = result.Replace("\\", "");
return SafeBase64UrlEncoder.EncodeBase64Url(s);
}
public Stream ListOrders(string op, string urltoken, string startdate, string enddate, string customer_name)
{
if (op.ToLower().StartsWith("help"))
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("<tr><th>Order Name</th><th>Description</th></tr>");
buf.Append("</thead><tbody>");
buf.Append("<tr><td>ReportsByMonth</td><td>Look at the breakdown by month, default values is the past two months to today</td></tr>");
buf.Append("<tr><td>ReportsByMonthByCustomer</td><td>Look at the breakdown by month, looking at each customer individually, default values is the past two months to today</td></tr>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
return new MemoryStream(resultBytes);
}
string returnType = "html";
int indx = op.IndexOf(".");
if (indx > -1)
{
returnType = op.Substring(indx + 1);
op = op.Substring(0, indx);
}
string token = urltoken.Replace("-", "+").Replace("_", "/").Replace("|", "=");
WebOperationContext ctx = WebOperationContext.Current;
MemoryStream stream1 = new MemoryStream();
var s = giftCardController.verifyToken(token);
int client = 0;
var ss = s.Split(';');
if (ss.Length == 3)
{
WebOperationContext.Current.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.Accepted;
int.TryParse(ss[0], out client);
}
else
{
WebOperationContext.Current.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.Unauthorized;
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body>");
buf.Append("The token used was invalid, please login again.</body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
return new MemoryStream(resultBytes);
}
var ds = DateTime.ParseExact(startdate, "yyyyMMdd_hhmm", CultureInfo.InvariantCulture);
var de = DateTime.ParseExact(enddate, "yyyyMMdd_hhmm", CultureInfo.InvariantCulture);
DateTime start = DateTime.Now;
DateTime end = DateTime.Now;
if (startdate.Equals("empty"))
{
start = DateTime.Now.AddDays(-60);
}
if (enddate.Equals("empty"))
{
end = DateTime.Now;
}
if (op == "pending")
{
var list = customer_name.Equals("empty") ? giftCardController.retrieveOrdersByClient<PendingOrders>(Constants.PENDING_ORDER, client, start, end)
: giftCardController.retrieveOrdersByClient<PendingOrders>(Constants.PENDING_ORDER, client, start, end, customer_name);
if (returnType == "json")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(List<PendingOrders>));
ser.WriteObject(stream1, list);
}
else if (returnType == "xml")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/xml";
XmlSerializer ser = new XmlSerializer(typeof(List<PendingOrders>));
Console.WriteLine("Testing for type: {0}", typeof(List<PendingOrders>));
ser.Serialize(XmlWriter.Create(stream1), list);
stream1.Flush();
}
else
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("</thead><tbody>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
stream1 = new MemoryStream(resultBytes);
}
}
else if (op == "processed")
{
var list = customer_name.Equals("empty") ? giftCardController.retrieveOrdersByClient<ProcessedOrders>(Constants.PENDING_ORDER, client, start, end)
: giftCardController.retrieveOrdersByClient<ProcessedOrders>(Constants.PENDING_ORDER, client, start, end, customer_name);
if (returnType == "json")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(List<ProcessedOrders>));
ser.WriteObject(stream1, list);
}
else if (returnType == "xml")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/xml";
XmlSerializer ser = new XmlSerializer(typeof(List<ProcessedOrders>));
Console.WriteLine("Testing for type: {0}", typeof(List<ProcessedOrders>));
ser.Serialize(XmlWriter.Create(stream1), list);
stream1.Flush();
}
else
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("</thead><tbody>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
stream1 = new MemoryStream(resultBytes);
}
}
else if (op == "redeemed")
{
var list = customer_name.Equals("empty") ? giftCardController.retrieveOrdersByClient<RedeemeddOrders>(Constants.PENDING_ORDER, client, start, end)
: giftCardController.retrieveOrdersByClient<RedeemeddOrders>(Constants.PENDING_ORDER, client, start, end, customer_name);
if (returnType == "json")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(List<RedeemeddOrders>));
ser.WriteObject(stream1, list);
}
else if (returnType == "xml")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/xml";
XmlSerializer ser = new XmlSerializer(typeof(List<RedeemeddOrders>));
Console.WriteLine("Testing for type: {0}", typeof(List<RedeemeddOrders>));
ser.Serialize(XmlWriter.Create(stream1), list);
stream1.Flush();
}
else
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("</thead><tbody>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
stream1 = new MemoryStream(resultBytes);
}
}
return stream1;
}
public System.IO.Stream SalonImage(int salon, string image_type, string width_percentage)
{
int w;
int.TryParse(width_percentage, out w);
var bitmap = giftCardController.retrieveUploadedFile(salon, image_type, w);
MemoryStream ms = new MemoryStream();
bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
ms.Position = 0;
WebOperationContext.Current.OutgoingResponse.ContentType = "image/jpeg";
return ms;
}
public Stream ListCurrentSettings(string urltoken)
{
if (urltoken.ToLower().StartsWith("help"))
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("<tr><th>Order Name</th><th>Description</th></tr>");
buf.Append("</thead><tbody>");
buf.Append("<tr><td>ReportsByMonth</td><td>Look at the breakdown by month, default values is the past two months to today</td></tr>");
buf.Append("<tr><td>ReportsByMonthByCustomer</td><td>Look at the breakdown by month, looking at each customer individually, default values is the past two months to today</td></tr>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
return new MemoryStream(resultBytes);
}
string returnType = "html";
int indx = urltoken.IndexOf(".");
if (indx > -1)
{
returnType = urltoken.Substring(indx + 1);
urltoken = urltoken.Substring(0, indx);
}
string token = urltoken.Replace("-", "+").Replace("_", "/").Replace("|", "=");
WebOperationContext ctx = WebOperationContext.Current;
MemoryStream stream1 = new MemoryStream();
var s = giftCardController.verifyToken(token);
int client = 0;
var ss = s.Split(';');
if (ss.Length == 3)
{
WebOperationContext.Current.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.Accepted;
int.TryParse(ss[0], out client);
}
else
{
WebOperationContext.Current.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.Unauthorized;
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body>");
buf.Append("The token used was invalid, please login again.</body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
return new MemoryStream(resultBytes);
}
var t = giftCardController.RetrieveCurrentSettings(int.Parse(ss[0]));
if (returnType == "json")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(CurrentCompanyDisplaySettings));
ser.WriteObject(stream1, t);
}
else if (returnType == "xml")
{
WebOperationContext.Current.OutgoingResponse.ContentType = "application/xml";
XmlSerializer ser = new XmlSerializer(typeof(List<RedeemeddOrders>));
Console.WriteLine("Testing for type: {0}", typeof(CurrentCompanyDisplaySettings));
ser.Serialize(XmlWriter.Create(stream1), t);
stream1.Flush();
}
else
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("</thead><tbody>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/plain";
stream1 = new MemoryStream(resultBytes);
}
return stream1;
}
public string Upload(System.IO.Stream Uploading)
{
throw new NotImplementedException();
}
public string GiftCardOrder(OrderDetail order)
{
var orderNumber = "fake order number with message: " + order.Message;
return orderNumber;
}
Stream IMyGiftCardService.GetSalonList()
{
throw new NotImplementedException();
}
string IMyGiftCardService.SalonLogin(string salon_id, AuthModel model)
{
throw new NotImplementedException();
}
string IMyGiftCardService.GiftCardOrder(OrderDetail order)
{
throw new NotImplementedException();
}
Stream IMyGiftCardService.ListOrders(string op, string token, string startdate, string enddate, string customer_name)
{
throw new NotImplementedException();
}
Stream IMyGiftCardService.OrderReports(string op, string token, string enddate, string startdate, string custom1, string custom2)
{
if (op.ToLower().StartsWith("help"))
{
StringBuilder buf = new StringBuilder("<html><head><title></title></head><body><table><thead>");
buf.Append("<tr><th>Order Name</th><th>Description</th></tr>");
buf.Append("</thead><tbody>");
buf.Append("<tr><td>ReportsByMonth</td><td>Look at the breakdown by month, default values is the past two months to today</td></tr>");
buf.Append("<tr><td>ReportsByMonthByCustomer</td><td>Look at the breakdown by month, looking at each customer individually, default values is the past two months to today</td></tr>");
buf.Append("</tbody></table></body></html>");
byte[] resultBytes = Encoding.UTF8.GetBytes(buf.ToString());
WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
return new MemoryStream(resultBytes);
}
throw new NotImplementedException();
}
Stream IMyGiftCardService.SalonImage(string salon, string image_type, string width_percentage)
{
throw new NotImplementedException();
}
string IMyGiftCardService.Upload(Stream Uploading)
{
throw new NotImplementedException();
}
}
}