-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTogglSession.cs
156 lines (146 loc) · 5.8 KB
/
TogglSession.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Runtime.Serialization.Json;
using System.Text;
using System.Threading.Tasks;
namespace TogglAPI
{
public static class TogglSession
{
private const string TogglAuthUrl = "https://www.toggl.com/api/v8/me";
private const string AuthenticationType = "Basic";
public static TogglSessionInfo TogglSessionInfo(string ApiToken, string Password = "api_token")
{
TogglSessionInfo tsi = default(TogglSessionInfo);
using (var client = new HttpClient())
{
try
{
var request = new HttpRequestMessage(HttpMethod.Get, TogglAuthUrl);
//request.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
request.Headers.Authorization = new AuthenticationHeaderValue(
AuthenticationType,
Convert.ToBase64String(Encoding.UTF8.GetBytes(
string.Format("{0}:{1}", ApiToken, Password))));
var response = client.SendAsync(request).Result;
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(TogglSessionInfo));
using (MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(response.Content.ReadAsStringAsync().Result)))
{
tsi = ser.ReadObject(ms) as TogglSessionInfo;
}
}
catch (Exception ex)
{
throw;
}
return tsi;
}
}
public static string Json<T>(T obj)
{
string rslt = string.Empty;
try
{
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(T));
using (MemoryStream ms = new MemoryStream())
{
ser.WriteObject(ms, obj);
ms.Seek(0, SeekOrigin.Begin);
using (StreamReader rdr = new StreamReader(ms))
{
rslt = rdr.ReadToEnd();
}
}
}
catch (Exception ex)
{
throw ex;
}
return rslt;
}
public static TogglDataObj unJson(string json)
{
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(TogglDataObj));
using (MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(json)))
{
return ser.ReadObject(ms) as TogglDataObj;
}
}
public static TogglDataObj PostDetails<T>(string ApiToken, T obj, string Password = "api_token", string RequestUrl = null)
{
if (RequestUrl == null)
return default(TogglDataObj);
TogglDataObj result = default(TogglDataObj);
using (var client = new HttpClient())
{
try
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(
AuthenticationType,
Convert.ToBase64String(Encoding.UTF8.GetBytes(
string.Format("{0}:{1}", ApiToken, Password))));
string str = Json<T>(obj);
#if debug
Console.WriteLine(str);
#endif
StringContent content = new StringContent(str, Encoding.UTF8, "application/json");
var response = client.PostAsync(RequestUrl, content).Result;
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
result = unJson(response.Content.ReadAsStringAsync().Result);
}
else
{
string rslt = response.Content.ReadAsStringAsync().Result;
throw new Exception(rslt);
}
}
catch (Exception ex)
{
throw ex;
}
}
return result;
}
public static TogglDataObj PutDetails<T>(string ApiToken, T obj, string Password = "api_token", string RequestUrl = null)
{
if (RequestUrl == null)
return default(TogglDataObj);
TogglDataObj result = default(TogglDataObj);
using (var client = new HttpClient())
{
try
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(
AuthenticationType,
Convert.ToBase64String(Encoding.UTF8.GetBytes(
string.Format("{0}:{1}", ApiToken, Password))));
string str = Json<T>(obj);
#if debug
Console.WriteLine(str);
#endif
StringContent content = new StringContent(str, Encoding.UTF8, "application/json");
var response = client.PutAsync(RequestUrl, content).Result;
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
result = unJson(response.Content.ReadAsStringAsync().Result);
}
else
{
string rslt = response.Content.ReadAsStringAsync().Result;
throw new Exception(rslt);
}
}
catch (Exception ex)
{
throw ex;
}
}
return result;
}
}
}