blob: 3320a86c7b615ab948829eda4713148a65fb3c9f (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Configuration;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
using Tango.Core.Helpers;
using Tango.BL.Entities;
using Tango.Logging;
using Tango.MachineStudio.Common.Update;
using Tango.BL;
using Tango.BL.Enumerations;
namespace Tango.MachineStudio.UpdateService
{
public class MachineStudioUpdateService : IMachineStudioUpdateService
{
private LogManager LogManager = LogManager.Default;
private class PendingUpload
{
public String Token { get; set; }
public String Version { get; set; }
public String UserGuid { get; set; }
public String Comments { get; set; }
public bool ForcedUpdate { get; set; }
public String FilePath { get; set; }
}
private static List<PendingUpload> _pendingUploads;
static MachineStudioUpdateService()
{
_pendingUploads = new List<PendingUpload>();
}
public CheckForUpdatesResponse CheckForUpdates(CheckForUpdatesRequest request)
{
LogManager.Log("Request received...");
try
{
CheckForUpdatesResponse response = new CheckForUpdatesResponse();
using (ObservablesContext db = ObservablesContext.CreateDefault(GetServerAddress()))
{
db.Configuration.LazyLoadingEnabled = false;
//Load relation first...
db.Roles.ToList();
db.Permissions.ToList();
db.UsersRoles.ToList();
db.RolesPermissions.ToList();
var user = db.Users.SingleOrDefault(x => x.Email.ToLower() == request.Email.ToLower() && x.Password == request.Password);
if (user != null && user.HasPermission(Permissions.RunMachineStudio) || (request.Email == "ForceUpdate"))
{
var latestVersion = db.MachineStudioVersions.ToList().OrderByDescending(x => Version.Parse(x.Version)).FirstOrDefault();
Version currentVersion = Version.Parse(request.Version);
bool isForcedUpdate = db.MachineStudioVersions.ToList().Exists(x => x.ForceUpdate && Version.Parse(x.Version) > currentVersion);
if (latestVersion != null && Version.Parse(latestVersion.Version) > currentVersion)
{
response.IsUpdateAvailable = true;
response.FtpHost = ConfigurationManager.AppSettings["FtpHost"].ToString();
response.UserName = ConfigurationManager.AppSettings["UserName"].ToString();
response.Password = ConfigurationManager.AppSettings["Password"].ToString();
response.FilePath = latestVersion.FtpFilePath;
response.Version = latestVersion.Version;
response.ForcedUpdate = isForcedUpdate;
}
}
else
{
throw new FaultException("Invalid user credentials.");
}
}
return response;
}
catch (Exception ex)
{
LogManager.Log(ex);
throw new FaultException(ex.ToString());
}
}
public UploadVersionResponse UploadVersion(UploadVersionRequest request)
{
try
{
UploadVersionResponse response = new UploadVersionResponse();
using (ObservablesContext db = ObservablesContext.CreateDefault(GetServerAddress()))
{
db.Configuration.LazyLoadingEnabled = false;
//Load relation first...
db.Roles.ToList();
db.Permissions.ToList();
db.UsersRoles.ToList();
db.RolesPermissions.ToList();
var user = db.Users.SingleOrDefault(x => x.Email.ToLower() == request.Email.ToLower() && x.Password == request.Password);
if (user != null && user.HasPermission(Permissions.PublishMachineStudioVersion))
{
var latestVersion = db.MachineStudioVersions.ToList().OrderByDescending(x => Version.Parse(x.Version)).FirstOrDefault();
Version currentVersion = Version.Parse(request.Version);
String newVersionFileName = Path.GetRandomFileName() + ".zip";
String newVersionFilePath = "/machine studio versions/" + newVersionFileName;
if (currentVersion > Version.Parse(latestVersion.Version))
{
response.FtpHost = ConfigurationManager.AppSettings["FtpHost"].ToString();
response.UserName = ConfigurationManager.AppSettings["UserName"].ToString();
response.Password = ConfigurationManager.AppSettings["Password"].ToString();
response.FilePath = newVersionFilePath;
response.FileName = newVersionFileName;
response.Token = Guid.NewGuid().ToString();
_pendingUploads.Add(new PendingUpload()
{
UserGuid = user.Guid,
Comments = request.Comments,
ForcedUpdate = request.ForcedUpdate,
Token = response.Token,
Version = request.Version,
FilePath = response.FilePath,
});
}
else
{
throw new FaultException("New version must be greater than latest version.");
}
}
else
{
throw new FaultException("Invalid user credentials.");
}
}
return response;
}
catch (Exception ex)
{
LogManager.Log(ex);
throw new FaultException(ex.ToString());
}
}
public void NotifyUploadCompleted(UploadCompletedRequest request)
{
try
{
PendingUpload upload = _pendingUploads.FirstOrDefault(x => x.Token == request.Token);
if (upload != null)
{
_pendingUploads.RemoveAll(x => x.Token == upload.Token);
using (ObservablesContext db = ObservablesContext.CreateDefault(GetServerAddress()))
{
db.Configuration.LazyLoadingEnabled = false;
db.MachineStudioVersions.Add(new MachineStudioVersion()
{
Comments = upload.Comments,
FtpFilePath = upload.FilePath,
UserGuid = upload.UserGuid,
Version = upload.Version,
ForceUpdate = upload.ForcedUpdate,
});
db.SaveChanges();
}
}
else
{
throw new FaultException("Invalid Token.");
}
}
catch (Exception ex)
{
LogManager.Log(ex);
throw new FaultException(ex.ToString());
}
}
public string GetLatestVersion()
{
try
{
using (ObservablesContext db = ObservablesContext.CreateDefault(GetServerAddress()))
{
return db.MachineStudioVersions.ToList().OrderByDescending(x => Version.Parse(x.Version)).FirstOrDefault().Version;
}
}
catch (Exception ex)
{
throw new FaultException(ex.ToString());
}
}
private String GetServerAddress()
{
return ConfigurationManager.AppSettings["ServerAddress"].ToString();
}
}
}
|