-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDbClientServices.cs
More file actions
299 lines (279 loc) · 11.2 KB
/
DbClientServices.cs
File metadata and controls
299 lines (279 loc) · 11.2 KB
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
using ExpressBase.Common;
using ExpressBase.Common.Connections;
using ExpressBase.Common.Data;
using ExpressBase.Common.ServiceClients;
using ExpressBase.Objects.ServiceStack_Artifacts;
using ServiceStack;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ExpressBase.ServiceStack.Services
{
public class DbClientServices : EbBaseService
{
public DbClientServices(IEbConnectionFactory _dbf, IEbMqClient _mq) : base(_dbf, _mq) { }
EbDbExplorerTablesDict Table = new EbDbExplorerTablesDict();
List<object> Row = new List<object>();
List<string> solutions = new List<string>();
[Authenticate]
public GetDbTablesResponse Get(GetDbTablesRequest request)
{
string DB_Name = "";
int TableCount = 0;
string FuntionQuery = @"select n.nspname as function_schema, p.proname as function_name, pg_get_functiondef(p.oid) as Functions
from pg_proc p left
join pg_namespace n on p.pronamespace = n.oid
where n.nspname not in ('pg_catalog', 'information_schema')
order by function_schema, function_name; ";
try
{
string sql = this.EbConnectionFactory.DataDB.EB_GETDBCLIENTTTABLES;
sql = sql + FuntionQuery;
if (request.IsAdminOwn || request.SupportLogin)
{
if (request.IsAdminOwn)
{
string sql1 = "SELECT isolution_id FROM eb_solutions WHERE eb_del ='F';";
EbDataTable solutionTable = this.InfraConnectionFactory.DataDB.DoQuery(sql1);
foreach (var Row in solutionTable.Rows)
{
solutions.Add(Row[0].ToString());
}
}
sql = string.Format(sql, "");
}
else
sql = string.Format(sql, "eb_%");
EbDataSet dt = this.EbConnectionFactory.DataDB.DoQueries(sql);
var Data = dt.Tables[0];
foreach (var Row in Data.Rows)
{
if (Table.TableCollection.ContainsKey(Row[0].ToString()))
{
// dataItems.Clear();
//tab.Index.Add(dataReader[2].ToString());
Table.TableCollection[Row[0].ToString()].Index.Add(Row[2].ToString());
//continue;
}
else
{
//if(Row[0].ToString().IndexOf("eb_ ", StringComparison.OrdinalIgnoreCase) == 0)
{
EbDbExplorerTable tab = new EbDbExplorerTable()
{
Name = Row[0].ToString(),
Schema = Row[1].ToString()
};
Table.TableCollection.Add(Row[0].ToString(), tab);
Table.TableCollection[Row[0].ToString()].Index.Add(Row[2].ToString());
TableCount++;
}
}
}
Data = dt.Tables[1];
foreach (var Row in Data.Rows)
{
EbDbExplorerColumn col = new EbDbExplorerColumn()
{
ColumnName = Row[1].ToString(),
ColumnType = Row[2].ToString()
};
if (Table.TableCollection.ContainsKey(Row[0].ToString()))
Table.TableCollection[Row[0].ToString()].Columns.Add(col);
}
Data = dt.Tables[2];
foreach (var Row in Data.Rows)
{
ArrayList column;
if (this.EbConnectionFactory.DataDB.Vendor == DatabaseVendors.MYSQL)
{
string s = Row[3].ToString();
column = new ArrayList { s.Split(',') };
}
else
{
column = new ArrayList { Row[3] };
}
var t = Row[3];
var col = column[0];
var x = (col as string[])[0];
string constName = Row[0].ToString();
string[] st = constName.Split("_");
string _name = st[st.Length - 1];
if (_name.Equals("pkey"))
{
foreach (EbDbExplorerColumn obj in Table.TableCollection[Row[2].ToString()].Columns)
{
if (obj.ColumnName.Equals(x))
{
obj.ColumnKey = "Primary key";
}
}
}
if (_name.Equals("fkey"))
{
foreach (EbDbExplorerColumn obj in Table.TableCollection[Row[2].ToString()].Columns)
{
if (obj.ColumnName.Equals(x))
{
obj.ColumnKey = "Foreign key";
string definition = Row[4].ToString();
string[] df = definition.Split("REFERENCES ");
df[1] = ":: " + df[1];
obj.ColumnTable = df[df.Length - 1];
}
}
}
if (_name.Equals("uniquekey"))
{
foreach (EbDbExplorerColumn obj in Table.TableCollection[Row[2].ToString()].Columns)
{
if (obj.ColumnName.Equals(x))
{
obj.ColumnKey = "Unique key";
}
}
}
}
Data = dt.Tables[3];
foreach (var Row in Data.Rows)
{
EbDbExplorerFunctions Fun = new EbDbExplorerFunctions()
{
FunctionName = Row[1].ToString(),
FunctionQuery = Row[2].ToString()
};
Table.FunctionCollection.Add(Fun);
}
DB_Name = this.EbConnectionFactory.ObjectsDB.DBName;
}
catch (Exception e)
{
Console.WriteLine(e.Message + e.StackTrace);
return new GetDbTablesResponse
{
Message = e.Message
};
}
return new GetDbTablesResponse
{
Tables = Table,
DB_Name = DB_Name,
TableCount = TableCount,
SolutionCollection = solutions
};
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientSelectRequest request)
{
EbDataSet _dataset = null;
string mess = "SUCCESS";
try
{
_dataset = this.EbConnectionFactory.DataDB.DoQueries(request.Query, new System.Data.Common.DbParameter[0]);
}
catch (Exception e)
{
mess = e.Message;
}
return new DbClientQueryResponse { Dataset = _dataset, Message = mess };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientInsertRequest request)
{
int res = 0;
string mess = "SUCCESS";
try
{
res = this.EbConnectionFactory.DataDB.InsertTable(request.Query, new System.Data.Common.DbParameter[0]);
}
catch (Exception e)
{
mess = e.Message;
}
return new DbClientQueryResponse { Result = res, Type = DBOperations.INSERT, Message = mess };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientDeleteRequest request)
{
int res = 0;
string mess = "SUCCESS";
try
{
res = this.EbConnectionFactory.DataDB.DeleteTable(request.Query, new System.Data.Common.DbParameter[0]);
}
catch (Exception e)
{
mess = e.Message;
}
return new DbClientQueryResponse { Result = res, Type = DBOperations.DELETE, Message = mess };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientDropRequest request)
{
var _dataset = this.EbConnectionFactory.DataDB.DoQueries(request.Query, new System.Data.Common.DbParameter[0]);
return new DbClientQueryResponse { Dataset = _dataset };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientTruncateRequest request)
{
var _dataset = this.EbConnectionFactory.DataDB.DoQueries(request.Query, new System.Data.Common.DbParameter[0]);
return new DbClientQueryResponse { Dataset = _dataset };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientUpdateRequest request)
{
int res = 0;
string mess = "SUCCESS";
try
{
res = this.EbConnectionFactory.DataDB.UpdateTable(request.Query, new System.Data.Common.DbParameter[0]);
}
catch (Exception e)
{
mess = e.Message;
}
return new DbClientQueryResponse { Result = res, Type = DBOperations.UPDATE, Message = mess };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientAlterRequest request)
{
int res = 0;
string mess = "SUCCESS";
try
{
res = this.EbConnectionFactory.DataDB.AlterTable(request.Query, new System.Data.Common.DbParameter[0]);
}
catch (Exception e)
{
mess = e.Message;
}
return new DbClientQueryResponse { Result = res, Type = DBOperations.UPDATE, Message = mess };
}
[CompressResponse]
[Authenticate]
public DbClientQueryResponse Post(DbClientCreateRequest request)
{
int res = 0;
string mess = "SUCCESS";
try
{
res = this.EbConnectionFactory.DataDB.CreateTable(request.Query);
}
catch (Exception e)
{
mess = e.Message;
}
return new DbClientQueryResponse { Result = res, Type = DBOperations.CREATE, Message = mess };
}
}
}