AuthScopeQueryHelper.cs
14.9 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
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
414
415
416
417
418
419
420
421
422
using FoodLabeling.Application.Contracts.Dtos.AuthScope;
using FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
using FoodLabeling.Application.Services.DbModels;
using FoodLabeling.Domain.Entities;
using SqlSugar;
using Volo.Abp;
using Volo.Abp.Caching;
using Volo.Abp.Users;
using Yi.Framework.SqlSugarCore.Abstractions;
namespace FoodLabeling.Application.Helpers;
/// <summary>
/// Company → Region → Location 级联选店查询(Web <c>auth-scope</c> 与 App <c>us-app-auth</c> 共用)。
/// </summary>
public static class AuthScopeQueryHelper
{
public static void EnsureLoggedIn(ICurrentUser currentUser)
{
if (!currentUser.Id.HasValue)
{
throw new UserFriendlyException("用户未登录");
}
}
public static async Task<List<AuthScopeCompanyOptionDto>> GetCompaniesAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext)
{
EnsureLoggedIn(currentUser);
var scope = await PartnerScopeHelper.ResolvePartnerScopeAsync(currentUser, dbContext);
var query = dbContext.SqlSugarClient.Queryable<FlPartnerDbEntity>()
.Where(x => !x.IsDeleted);
query = PartnerScopeHelper.ApplyPartnerScope(query, scope);
return await query
.OrderBy(x => x.PartnerName)
.Select(x => new AuthScopeCompanyOptionDto
{
Id = x.Id,
PartnerName = x.PartnerName ?? string.Empty,
State = x.State
})
.ToListAsync();
}
public static async Task<List<AuthScopeRegionOptionDto>> GetRegionsAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
string partnerId)
{
EnsureLoggedIn(currentUser);
var pid = RequireNonEmpty(partnerId, "公司标识不能为空");
await EnsurePartnerAccessibleAsync(currentUser, dbContext, pid);
var groupScope = await PartnerScopeHelper.ResolveGroupScopeAsync(currentUser, dbContext);
var query = dbContext.SqlSugarClient.Queryable<FlGroupDbEntity>()
.Where(g => !g.IsDeleted && g.PartnerId == pid);
if (!groupScope.IsUnrestricted)
{
var allowed = groupScope.AllowedGroupIds;
query = allowed.Count == 0
? query.Where(_ => false)
: query.Where(g => allowed.Contains(g.Id));
}
return await query
.OrderBy(g => g.GroupName)
.Select(g => new AuthScopeRegionOptionDto
{
Id = g.Id,
GroupName = g.GroupName ?? string.Empty,
PartnerId = g.PartnerId ?? string.Empty,
State = g.State
})
.ToListAsync();
}
public static async Task<List<AuthScopeLocationOptionDto>> GetLocationsAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
string partnerId,
string groupId)
{
EnsureLoggedIn(currentUser);
var pid = RequireNonEmpty(partnerId, "公司标识不能为空");
var gid = RequireNonEmpty(groupId, "区域标识不能为空");
await EnsurePartnerAccessibleAsync(currentUser, dbContext, pid);
var group = await dbContext.SqlSugarClient.Queryable<FlGroupDbEntity>()
.FirstAsync(g => !g.IsDeleted && g.Id == gid && g.PartnerId == pid);
if (group is null)
{
throw new UserFriendlyException("区域不存在或不属于所选公司");
}
var groupScope = await PartnerScopeHelper.ResolveGroupScopeAsync(currentUser, dbContext);
if (!groupScope.IsUnrestricted && !groupScope.AllowedGroupIds.Contains(gid))
{
throw new UserFriendlyException("无权查看该区域下的门店");
}
var partner = await dbContext.SqlSugarClient.Queryable<FlPartnerDbEntity>()
.FirstAsync(p => !p.IsDeleted && p.Id == pid);
if (partner is null)
{
throw new UserFriendlyException("公司不存在");
}
var partnerKeys = new List<string> { partner.Id, partner.PartnerName ?? string.Empty }
.Where(x => !string.IsNullOrWhiteSpace(x))
.Distinct(StringComparer.Ordinal)
.ToList();
var groupName = (group.GroupName ?? string.Empty).Trim();
var locQuery = dbContext.SqlSugarClient.Queryable<LocationAggregateRoot>()
.Where(x => !x.IsDeleted)
.Where(x => x.GroupName == groupName)
.Where(x => partnerKeys.Contains(x.Partner!));
var listScope = await LocationRegionScopeHelper.ResolveLocationListScopeAsync(currentUser, dbContext);
locQuery = LocationRegionScopeHelper.ApplyLocationListScope(locQuery, listScope);
var locations = (await locQuery.ToListAsync())
.OrderBy(x => x.OrderNum)
.ThenBy(x => x.LocationName)
.ToList();
return locations.Select(loc => new AuthScopeLocationOptionDto
{
Id = loc.Id.ToString(),
LocationCode = loc.LocationCode ?? string.Empty,
LocationName = loc.LocationName ?? string.Empty,
FullAddress = BuildFullAddress(loc),
State = loc.State,
PartnerId = pid,
GroupId = gid,
GroupName = groupName
}).ToList();
}
public static async Task<AuthScopeSelectLocationOutputDto> SelectLocationAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
IDistributedCache<AdminWorkingScopeCacheItem, AdminWorkingScopeCacheKey> workingScopeCache,
AuthScopeSelectLocationInputVo input)
{
EnsureLoggedIn(currentUser);
var userId = currentUser.Id!.Value;
var result = await ResolveAndValidateSelectionAsync(currentUser, dbContext, input);
await EnsureUserMaySelectLocationAsync(currentUser, dbContext, result.Location.Id);
await AdminWorkingScopeCacheHelper.SetAsync(
workingScopeCache,
userId,
new AdminWorkingScopeCacheItem
{
LocationId = result.Location.Id,
PartnerId = result.PartnerId,
GroupId = result.GroupId
});
return result;
}
public static async Task<AuthScopeSelectLocationOutputDto?> GetCurrentScopeAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
IDistributedCache<AdminWorkingScopeCacheItem, AdminWorkingScopeCacheKey> workingScopeCache)
{
if (!currentUser.Id.HasValue)
{
return null;
}
var cached = await AdminWorkingScopeCacheHelper.GetAsync(workingScopeCache, currentUser.Id.Value);
if (cached is null || string.IsNullOrWhiteSpace(cached.LocationId))
{
return null;
}
try
{
return await BuildOutputFromLocationIdAsync(
dbContext,
cached.LocationId,
cached.PartnerId,
cached.GroupId);
}
catch (UserFriendlyException)
{
return null;
}
}
public static string BuildFullAddress(LocationAggregateRoot loc)
{
var street = loc.Street?.Trim();
var city = loc.City?.Trim();
var state = loc.StateCode?.Trim();
var zip = loc.ZipCode?.Trim();
var line2Parts = new List<string>();
if (!string.IsNullOrEmpty(city))
{
line2Parts.Add(city);
}
if (!string.IsNullOrEmpty(state))
{
line2Parts.Add(state);
}
var line2 = line2Parts.Count > 0 ? string.Join(", ", line2Parts) : string.Empty;
if (!string.IsNullOrEmpty(zip))
{
line2 = string.IsNullOrEmpty(line2) ? zip : $"{line2} {zip}";
}
var segments = new List<string>();
if (!string.IsNullOrEmpty(street))
{
segments.Add(street);
}
if (!string.IsNullOrEmpty(line2))
{
segments.Add(line2);
}
return segments.Count == 0 ? "无" : string.Join(", ", segments);
}
private static string RequireNonEmpty(string? value, string message)
{
var v = (value ?? string.Empty).Trim();
if (string.IsNullOrEmpty(v))
{
throw new UserFriendlyException(message);
}
return v;
}
private static async Task EnsurePartnerAccessibleAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
string partnerId)
{
var scope = await PartnerScopeHelper.ResolvePartnerScopeAsync(currentUser, dbContext);
if (scope.IsUnrestricted)
{
return;
}
if (!scope.AllowedPartnerIds.Contains(partnerId))
{
throw new UserFriendlyException("无权查看该公司");
}
}
private static async Task EnsureUserMaySelectLocationAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
string locationId)
{
if (ReportsRoleHelper.IsAdminRole(currentUser))
{
return;
}
var lid = locationId.Trim();
var userIdStr = currentUser.Id!.Value.ToString();
var bound = await dbContext.SqlSugarClient.Queryable<UserLocationDbEntity>()
.AnyAsync(x => !x.IsDeleted && x.UserId == userIdStr && x.LocationId == lid);
if (!bound)
{
throw new UserFriendlyException("当前账号未绑定该门店,无法选择");
}
}
private static async Task<AuthScopeSelectLocationOutputDto> ResolveAndValidateSelectionAsync(
ICurrentUser currentUser,
ISqlSugarDbContext dbContext,
AuthScopeSelectLocationInputVo input)
{
var pid = RequireNonEmpty(input.PartnerId, "请选择公司");
var gid = RequireNonEmpty(input.GroupId, "请选择区域");
var lid = RequireNonEmpty(input.LocationId, "请选择门店");
if (!Guid.TryParse(lid, out var locationGuid))
{
throw new UserFriendlyException("无效的门店标识");
}
await EnsurePartnerAccessibleAsync(currentUser, dbContext, pid);
var group = await dbContext.SqlSugarClient.Queryable<FlGroupDbEntity>()
.FirstAsync(g => !g.IsDeleted && g.Id == gid && g.PartnerId == pid);
if (group is null)
{
throw new UserFriendlyException("区域不存在或不属于所选公司");
}
var partner = await dbContext.SqlSugarClient.Queryable<FlPartnerDbEntity>()
.FirstAsync(p => !p.IsDeleted && p.Id == pid);
if (partner is null)
{
throw new UserFriendlyException("公司不存在");
}
var loc = await dbContext.SqlSugarClient.Queryable<LocationAggregateRoot>()
.FirstAsync(x => !x.IsDeleted && x.Id == locationGuid);
if (loc is null)
{
throw new UserFriendlyException("门店不存在或已删除");
}
var partnerKeys = new List<string> { partner.Id, partner.PartnerName ?? string.Empty }
.Where(x => !string.IsNullOrWhiteSpace(x))
.Distinct(StringComparer.Ordinal)
.ToList();
var groupName = (group.GroupName ?? string.Empty).Trim();
var locPartner = (loc.Partner ?? string.Empty).Trim();
var locGroup = (loc.GroupName ?? string.Empty).Trim();
if (!partnerKeys.Contains(locPartner, StringComparer.Ordinal) ||
!string.Equals(locGroup, groupName, StringComparison.Ordinal))
{
throw new UserFriendlyException("门店与所选公司/区域不匹配");
}
return new AuthScopeSelectLocationOutputDto
{
PartnerId = pid,
PartnerName = partner.PartnerName ?? string.Empty,
GroupId = gid,
GroupName = groupName,
Location = new UsAppBoundLocationDto
{
Id = loc.Id.ToString(),
LocationCode = loc.LocationCode ?? string.Empty,
LocationName = loc.LocationName ?? string.Empty,
FullAddress = BuildFullAddress(loc),
State = loc.State
}
};
}
private static async Task<AuthScopeSelectLocationOutputDto> BuildOutputFromLocationIdAsync(
ISqlSugarDbContext dbContext,
string locationId,
string? partnerId,
string? groupId)
{
if (!Guid.TryParse(locationId.Trim(), out var locationGuid))
{
throw new UserFriendlyException("无效的门店标识");
}
var loc = await dbContext.SqlSugarClient.Queryable<LocationAggregateRoot>()
.FirstAsync(x => !x.IsDeleted && x.Id == locationGuid);
if (loc is null)
{
throw new UserFriendlyException("门店不存在或已删除");
}
var pid = (partnerId ?? string.Empty).Trim();
var gid = (groupId ?? string.Empty).Trim();
if (string.IsNullOrEmpty(pid) || string.IsNullOrEmpty(gid))
{
var partnerKeys = new List<string> { loc.Partner ?? string.Empty }
.Where(x => !string.IsNullOrWhiteSpace(x))
.ToList();
var partners = partnerKeys.Count == 0
? new List<FlPartnerDbEntity>()
: await dbContext.SqlSugarClient.Queryable<FlPartnerDbEntity>()
.Where(p => !p.IsDeleted)
.Where(p => partnerKeys.Contains(p.Id) || partnerKeys.Contains(p.PartnerName))
.ToListAsync();
var partner = partners.FirstOrDefault();
pid = partner?.Id ?? pid;
if (string.IsNullOrEmpty(gid) && partner is not null &&
!string.IsNullOrWhiteSpace(loc.GroupName))
{
var g = await dbContext.SqlSugarClient.Queryable<FlGroupDbEntity>()
.FirstAsync(x =>
!x.IsDeleted && x.PartnerId == partner.Id && x.GroupName == loc.GroupName);
gid = g?.Id ?? gid;
}
}
var partnerEntity = string.IsNullOrEmpty(pid)
? null
: await dbContext.SqlSugarClient.Queryable<FlPartnerDbEntity>()
.FirstAsync(p => !p.IsDeleted && p.Id == pid);
var groupEntity = string.IsNullOrEmpty(gid)
? null
: await dbContext.SqlSugarClient.Queryable<FlGroupDbEntity>()
.FirstAsync(g => !g.IsDeleted && g.Id == gid);
return new AuthScopeSelectLocationOutputDto
{
PartnerId = pid,
PartnerName = partnerEntity?.PartnerName ?? string.Empty,
GroupId = gid,
GroupName = groupEntity?.GroupName ?? loc.GroupName ?? string.Empty,
Location = new UsAppBoundLocationDto
{
Id = loc.Id.ToString(),
LocationCode = loc.LocationCode ?? string.Empty,
LocationName = loc.LocationName ?? string.Empty,
FullAddress = BuildFullAddress(loc),
State = loc.State
}
};
}
}