This commit is contained in:
@@ -50,6 +50,7 @@ IMMEDIATE ITEMS:
|
|||||||
- Delete children in User object: I don't like it this way, the children would all be common to another biz object so instead I would like to see it call the other object, not directly issue sql changes
|
- Delete children in User object: I don't like it this way, the children would all be common to another biz object so instead I would like to see it call the other object, not directly issue sql changes
|
||||||
(right now the user deletes the tag maps directly, this is just wrong)
|
(right now the user deletes the tag maps directly, this is just wrong)
|
||||||
- NAMING is it dbObj, o, inObj? Go through and consistivize
|
- NAMING is it dbObj, o, inObj? Go through and consistivize
|
||||||
|
- Widgetcontroller and UserController POST, move check for authorized rights into biz object
|
||||||
|
|
||||||
- Auto visible id number assigning code
|
- Auto visible id number assigning code
|
||||||
- Give widgets a visible ID number scheme and add to tests
|
- Give widgets a visible ID number scheme and add to tests
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, o.Id, AyaType.Locale, AyaEvent.Created), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, o.Id, AyaType.Locale, AyaEvent.Created), ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
return CreatedAtAction("GetLocale", new { id = o.Id }, new ApiCreatedResponse(o));
|
return CreatedAtAction("GetLocale", new { id = o.Id }, new ApiCreatedResponse(o));
|
||||||
@@ -247,7 +247,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, oDbParent.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, oDbParent.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -317,7 +317,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, oFromDb.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, oFromDb.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -387,7 +387,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(biz.Errors));
|
return BadRequest(new ApiErrorResponse(biz.Errors));
|
||||||
}
|
}
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.DeleteObject(biz.userId, AyaType.Locale, dbObj.Id, dbObj.Name, ct);
|
EventLogProcessor.DeleteObject(biz.UserId, AyaType.Locale, dbObj.Id, dbObj.Name, ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
//Delete children / attached objects
|
//Delete children / attached objects
|
||||||
|
|||||||
@@ -141,8 +141,11 @@ namespace AyaNova.Api.Controllers
|
|||||||
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Instantiate the business object handler
|
||||||
|
TagBiz biz = new TagBiz(ct, UserIdFromContext.Id(HttpContext.Items), UserRolesFromContext.Roles(HttpContext.Items));
|
||||||
|
|
||||||
//If a user has change roles, or editOwnRoles then they can create, true is passed for isOwner since they are creating so by definition the owner
|
//If a user has change roles, or editOwnRoles then they can create, true is passed for isOwner since they are creating so by definition the owner
|
||||||
if (!Authorized.IsAuthorizedToCreate(HttpContext.Items, AyaType.Tag))
|
if (!Authorized.IsAuthorizedToCreate(HttpContext.Items, TagBiz.BizType))
|
||||||
{
|
{
|
||||||
return StatusCode(401, new ApiNotAuthorizedResponse());
|
return StatusCode(401, new ApiNotAuthorizedResponse());
|
||||||
}
|
}
|
||||||
@@ -152,8 +155,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(ModelState));
|
return BadRequest(new ApiErrorResponse(ModelState));
|
||||||
}
|
}
|
||||||
|
|
||||||
//Instantiate the business object handler
|
|
||||||
TagBiz biz = new TagBiz(ct, UserIdFromContext.Id(HttpContext.Items), UserRolesFromContext.Roles(HttpContext.Items));
|
|
||||||
|
|
||||||
//Create and validate
|
//Create and validate
|
||||||
Tag o = await biz.CreateAsync(inObj.Name);
|
Tag o = await biz.CreateAsync(inObj.Name);
|
||||||
@@ -169,7 +171,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, o.Id, AyaType.Tag, AyaEvent.Created), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, o.Id, AyaType.Tag, AyaEvent.Created), ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
return CreatedAtAction("GetTag", new { id = o.Id }, new ApiCreatedResponse(o));
|
return CreatedAtAction("GetTag", new { id = o.Id }, new ApiCreatedResponse(o));
|
||||||
@@ -222,7 +224,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, oFromDb.Id, AyaType.Tag, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, oFromDb.Id, AyaType.Tag, AyaEvent.Modified), ct);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -294,7 +296,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, oFromDb.Id, AyaType.Tag, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, oFromDb.Id, AyaType.Tag, AyaEvent.Modified), ct);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -407,7 +409,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(biz.Errors));
|
return BadRequest(new ApiErrorResponse(biz.Errors));
|
||||||
}
|
}
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.DeleteObject(biz.userId, AyaType.Tag, dbObj.Id, dbObj.Name, ct);
|
EventLogProcessor.DeleteObject(biz.UserId, AyaType.Tag, dbObj.Id, dbObj.Name, ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -204,7 +204,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, o.Id, AyaType.TagGroup, AyaEvent.Created), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, o.Id, AyaType.TagGroup, AyaEvent.Created), ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
return CreatedAtAction("GetTagGroup", new { id = o.Id }, new ApiCreatedResponse(o));
|
return CreatedAtAction("GetTagGroup", new { id = o.Id }, new ApiCreatedResponse(o));
|
||||||
@@ -257,7 +257,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, oFromDb.Id, AyaType.TagGroup, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, oFromDb.Id, AyaType.TagGroup, AyaEvent.Modified), ct);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -329,7 +329,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, oFromDb.Id, AyaType.TagGroup, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, oFromDb.Id, AyaType.TagGroup, AyaEvent.Modified), ct);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -391,7 +391,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(biz.Errors));
|
return BadRequest(new ApiErrorResponse(biz.Errors));
|
||||||
}
|
}
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.DeleteObject(biz.userId, AyaType.TagGroup, dbObj.Id, dbObj.Name, ct);
|
EventLogProcessor.DeleteObject(biz.UserId, AyaType.TagGroup, dbObj.Id, dbObj.Name, ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -297,6 +297,9 @@ namespace AyaNova.Api.Controllers
|
|||||||
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Instantiate the business object handler
|
||||||
|
UserBiz biz = UserBiz.GetBiz(ct, HttpContext);
|
||||||
|
|
||||||
//If a user has change roles, or editOwnRoles then they can create, true is passed for isOwner since they are creating so by definition the owner
|
//If a user has change roles, or editOwnRoles then they can create, true is passed for isOwner since they are creating so by definition the owner
|
||||||
if (!Authorized.IsAuthorizedToCreate(HttpContext.Items, UserBiz.BizType))
|
if (!Authorized.IsAuthorizedToCreate(HttpContext.Items, UserBiz.BizType))
|
||||||
{
|
{
|
||||||
@@ -308,8 +311,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(ModelState));
|
return BadRequest(new ApiErrorResponse(ModelState));
|
||||||
}
|
}
|
||||||
|
|
||||||
//Instantiate the business object handler
|
|
||||||
UserBiz biz = UserBiz.GetBiz(ct, HttpContext);
|
|
||||||
|
|
||||||
//Create and validate
|
//Create and validate
|
||||||
User o = await biz.CreateAsync(inObj);
|
User o = await biz.CreateAsync(inObj);
|
||||||
@@ -354,6 +356,9 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(ModelState));
|
return BadRequest(new ApiErrorResponse(ModelState));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Instantiate the business object handler
|
||||||
|
UserBiz biz = UserBiz.GetBiz(ct, HttpContext);
|
||||||
|
|
||||||
var dbObj = await ct.User.SingleOrDefaultAsync(m => m.Id == id);
|
var dbObj = await ct.User.SingleOrDefaultAsync(m => m.Id == id);
|
||||||
if (dbObj == null)
|
if (dbObj == null)
|
||||||
{
|
{
|
||||||
@@ -365,8 +370,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
return StatusCode(401, new ApiNotAuthorizedResponse());
|
return StatusCode(401, new ApiNotAuthorizedResponse());
|
||||||
}
|
}
|
||||||
|
|
||||||
//Instantiate the business object handler
|
|
||||||
UserBiz biz = UserBiz.GetBiz(ct, HttpContext);
|
|
||||||
if (!biz.Delete(dbObj))
|
if (!biz.Delete(dbObj))
|
||||||
{
|
{
|
||||||
return BadRequest(new ApiErrorResponse(biz.Errors));
|
return BadRequest(new ApiErrorResponse(biz.Errors));
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, o.Id, AyaType.UserOptions, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, o.Id, AyaType.UserOptions, AyaEvent.Modified), ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
}
|
}
|
||||||
catch (DbUpdateConcurrencyException)
|
catch (DbUpdateConcurrencyException)
|
||||||
@@ -207,7 +207,7 @@ namespace AyaNova.Api.Controllers
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
//Log
|
//Log
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.userId, o.Id, AyaType.UserOptions, AyaEvent.Modified), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(biz.UserId, o.Id, AyaType.UserOptions, AyaEvent.Modified), ct);
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
}
|
}
|
||||||
catch (DbUpdateConcurrencyException)
|
catch (DbUpdateConcurrencyException)
|
||||||
|
|||||||
@@ -297,6 +297,9 @@ namespace AyaNova.Api.Controllers
|
|||||||
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Instantiate the business object handler
|
||||||
|
WidgetBiz biz = WidgetBiz.GetBiz(ct, HttpContext);
|
||||||
|
|
||||||
//If a user has change roles, or editOwnRoles then they can create, true is passed for isOwner since they are creating so by definition the owner
|
//If a user has change roles, or editOwnRoles then they can create, true is passed for isOwner since they are creating so by definition the owner
|
||||||
if (!Authorized.IsAuthorizedToCreate(HttpContext.Items, WidgetBiz.BizType))
|
if (!Authorized.IsAuthorizedToCreate(HttpContext.Items, WidgetBiz.BizType))
|
||||||
{
|
{
|
||||||
@@ -308,9 +311,6 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(ModelState));
|
return BadRequest(new ApiErrorResponse(ModelState));
|
||||||
}
|
}
|
||||||
|
|
||||||
//Instantiate the business object handler
|
|
||||||
WidgetBiz biz = WidgetBiz.GetBiz(ct, HttpContext);
|
|
||||||
|
|
||||||
//Create and validate
|
//Create and validate
|
||||||
Widget o = await biz.CreateAsync(inObj);
|
Widget o = await biz.CreateAsync(inObj);
|
||||||
|
|
||||||
@@ -352,6 +352,9 @@ namespace AyaNova.Api.Controllers
|
|||||||
return BadRequest(new ApiErrorResponse(ModelState));
|
return BadRequest(new ApiErrorResponse(ModelState));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Instantiate the business object handler
|
||||||
|
WidgetBiz biz = WidgetBiz.GetBiz(ct, HttpContext);
|
||||||
|
|
||||||
var dbObj = await ct.Widget.SingleOrDefaultAsync(m => m.Id == id);
|
var dbObj = await ct.Widget.SingleOrDefaultAsync(m => m.Id == id);
|
||||||
if (dbObj == null)
|
if (dbObj == null)
|
||||||
{
|
{
|
||||||
@@ -363,9 +366,6 @@ namespace AyaNova.Api.Controllers
|
|||||||
return StatusCode(401, new ApiNotAuthorizedResponse());
|
return StatusCode(401, new ApiNotAuthorizedResponse());
|
||||||
}
|
}
|
||||||
|
|
||||||
//Instantiate the business object handler
|
|
||||||
WidgetBiz biz = WidgetBiz.GetBiz(ct, HttpContext);
|
|
||||||
|
|
||||||
if (!biz.Delete(dbObj))
|
if (!biz.Delete(dbObj))
|
||||||
{
|
{
|
||||||
return BadRequest(new ApiErrorResponse(biz.Errors));
|
return BadRequest(new ApiErrorResponse(biz.Errors));
|
||||||
|
|||||||
@@ -19,12 +19,21 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Roles
|
|
||||||
|
|
||||||
public AuthorizationRoles CurrentUserRoles { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
#endregion roles
|
|
||||||
|
|
||||||
|
#region common props
|
||||||
|
|
||||||
|
internal static AyaType BizType { get; set; }
|
||||||
|
internal AyaNova.Models.AyContext ct { get; set; }
|
||||||
|
internal long UserId { get; set; }
|
||||||
|
internal long UserLocaleId { get; set; }
|
||||||
|
internal AuthorizationRoles CurrentUserRoles { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region Error handling
|
#region Error handling
|
||||||
private readonly List<ValidationError> _errors = new List<ValidationError>();
|
private readonly List<ValidationError> _errors = new List<ValidationError>();
|
||||||
@@ -63,9 +72,10 @@ namespace AyaNova.Biz
|
|||||||
sb.AppendLine("Validation errors:");
|
sb.AppendLine("Validation errors:");
|
||||||
foreach (ValidationError e in _errors)
|
foreach (ValidationError e in _errors)
|
||||||
{
|
{
|
||||||
var msg=e.Message;
|
var msg = e.Message;
|
||||||
if(string.IsNullOrWhiteSpace(msg)){
|
if (string.IsNullOrWhiteSpace(msg))
|
||||||
msg=e.ErrorType.ToString();
|
{
|
||||||
|
msg = e.ErrorType.ToString();
|
||||||
}
|
}
|
||||||
sb.AppendLine($"Target: {e.Target} error: {msg}");
|
sb.AppendLine($"Target: {e.Target} error: {msg}");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,14 +14,6 @@ namespace AyaNova.Biz
|
|||||||
//https://stackoverflow.com/questions/36330981/is-the-validationresult-class-suitable-when-validating-the-state-of-an-object
|
//https://stackoverflow.com/questions/36330981/is-the-validationresult-class-suitable-when-validating-the-state-of-an-object
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Roles of current user
|
|
||||||
/// </summary>
|
|
||||||
/// <returns></returns>
|
|
||||||
AuthorizationRoles CurrentUserRoles { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains list of errors
|
/// Contains list of errors
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -47,7 +39,7 @@ namespace AyaNova.Biz
|
|||||||
/// <param name="errorType"></param>
|
/// <param name="errorType"></param>
|
||||||
/// <param name="errorMessage"></param>
|
/// <param name="errorMessage"></param>
|
||||||
/// <param name="propertyName"></param>
|
/// <param name="propertyName"></param>
|
||||||
void AddError(ValidationErrorType errorType, string propertyName=null, string errorMessage=null);
|
void AddError(ValidationErrorType errorType, string propertyName = null, string errorMessage = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -18,16 +18,17 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class ImportAyaNova7Biz : BizObject, IJobObject
|
internal class ImportAyaNova7Biz : BizObject, IJobObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
// private readonly AyContext ct;
|
||||||
public readonly long userId;
|
// public readonly long userId;
|
||||||
private readonly AuthorizationRoles userRoles;
|
// private readonly AuthorizationRoles userRoles;
|
||||||
|
|
||||||
|
|
||||||
internal ImportAyaNova7Biz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
internal ImportAyaNova7Biz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType = AyaType.AyaNova7Import;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -18,16 +18,13 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class JobOperationsBiz : BizObject
|
internal class JobOperationsBiz : BizObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
|
|
||||||
|
internal JobOperationsBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
internal JobOperationsBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType=AyaType.JobOperations;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -18,16 +18,14 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class LocaleBiz : BizObject, IImportAyaNova7Object
|
internal class LocaleBiz : BizObject, IImportAyaNova7Object
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
public bool SeedOrImportRelaxedRulesMode { get; set; }
|
public bool SeedOrImportRelaxedRulesMode { get; set; }
|
||||||
|
|
||||||
internal LocaleBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
internal LocaleBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType = AyaType.Locale;
|
||||||
SeedOrImportRelaxedRulesMode = false;//default
|
SeedOrImportRelaxedRulesMode = false;//default
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -55,9 +53,9 @@ namespace AyaNova.Biz
|
|||||||
//replicate the source to a new dest and save
|
//replicate the source to a new dest and save
|
||||||
Locale NewLocale = new Locale();
|
Locale NewLocale = new Locale();
|
||||||
NewLocale.Name = inObj.Name;
|
NewLocale.Name = inObj.Name;
|
||||||
NewLocale.OwnerId = this.userId;
|
NewLocale.OwnerId = UserId;
|
||||||
NewLocale.Stock = false;
|
NewLocale.Stock = false;
|
||||||
NewLocale.CjkIndex=false;
|
NewLocale.CjkIndex = false;
|
||||||
foreach (LocaleItem i in SourceLocale.LocaleItems)
|
foreach (LocaleItem i in SourceLocale.LocaleItems)
|
||||||
{
|
{
|
||||||
NewLocale.LocaleItems.Add(new LocaleItem() { Key = i.Key, Display = i.Display });
|
NewLocale.LocaleItems.Add(new LocaleItem() { Key = i.Key, Display = i.Display });
|
||||||
@@ -164,12 +162,12 @@ namespace AyaNova.Biz
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//Get the CJKIndex value for the locale specified
|
//Get the CJKIndex value for the locale specified
|
||||||
internal static async Task<bool> GetCJKIndex(long localeId, AyContext ct=null)
|
internal static async Task<bool> GetCJKIndex(long localeId, AyContext ct = null)
|
||||||
{
|
{
|
||||||
if(ct==null)
|
if (ct == null)
|
||||||
ct = ServiceProviderProvider.DBContext;
|
ct = ServiceProviderProvider.DBContext;
|
||||||
var ret = await ct.Locale.Where(x => x.Id == localeId).Select(m=>m.CjkIndex).SingleOrDefaultAsync();
|
var ret = await ct.Locale.Where(x => x.Id == localeId).Select(m => m.CjkIndex).SingleOrDefaultAsync();
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -539,7 +537,7 @@ namespace AyaNova.Biz
|
|||||||
ct.SaveChanges();
|
ct.SaveChanges();
|
||||||
|
|
||||||
//Log now that we have the Id, note that there is no source created / modified for this so just attributing to current userId
|
//Log now that we have the Id, note that there is no source created / modified for this so just attributing to current userId
|
||||||
EventLogProcessor.AddEntryToContextNoSave(new Event(userId, l.Id, AyaType.Locale, AyaEvent.Created), ct);
|
EventLogProcessor.AddEntryToContextNoSave(new Event(UserId, l.Id, AyaType.Locale, AyaEvent.Created), ct);
|
||||||
ct.SaveChanges();
|
ct.SaveChanges();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,17 +17,15 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class TagBiz : BizObject, IImportAyaNova7Object
|
internal class TagBiz : BizObject, IImportAyaNova7Object
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
|
|
||||||
public bool SeedOrImportRelaxedRulesMode { get; set; }
|
public bool SeedOrImportRelaxedRulesMode { get; set; }
|
||||||
|
|
||||||
internal TagBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
internal TagBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType = AyaType.Tag;
|
||||||
SeedOrImportRelaxedRulesMode = false;//default
|
SeedOrImportRelaxedRulesMode = false;//default
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,7 +46,7 @@ namespace AyaNova.Biz
|
|||||||
Tag outObj = new Tag()
|
Tag outObj = new Tag()
|
||||||
{
|
{
|
||||||
Name = inObj,
|
Name = inObj,
|
||||||
OwnerId = userId
|
OwnerId = UserId
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,17 +17,18 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class TagGroupBiz : BizObject
|
internal class TagGroupBiz : BizObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
// private readonly AyContext ct;
|
||||||
public readonly long userId;
|
// public readonly long userId;
|
||||||
private readonly AuthorizationRoles userRoles;
|
// private readonly AuthorizationRoles userRoles;
|
||||||
|
|
||||||
public bool V7ValidationImportMode { get; set; }
|
public bool V7ValidationImportMode { get; set; }
|
||||||
|
|
||||||
internal TagGroupBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
internal TagGroupBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType=AyaType.TagGroup;
|
||||||
V7ValidationImportMode = false;//default
|
V7ValidationImportMode = false;//default
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,7 +49,7 @@ namespace AyaNova.Biz
|
|||||||
TagGroup outObj = new TagGroup()
|
TagGroup outObj = new TagGroup()
|
||||||
{
|
{
|
||||||
Name = inObj,
|
Name = inObj,
|
||||||
OwnerId = userId
|
OwnerId = UserId
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -229,10 +230,10 @@ namespace AyaNova.Biz
|
|||||||
if (TagGroupTags.Count == 0) return ReturnObject;
|
if (TagGroupTags.Count == 0) return ReturnObject;
|
||||||
|
|
||||||
//Tag each one separately via TagMap which handles cases where object is already tagged with that tag etc
|
//Tag each one separately via TagMap which handles cases where object is already tagged with that tag etc
|
||||||
var MapBiz = new TagMapBiz(ct, userId, userRoles);
|
var MapBiz = new TagMapBiz(ct, UserId, CurrentUserRoles);
|
||||||
foreach (NameIdItem TagInGroup in TagGroupTags)
|
foreach (NameIdItem TagInGroup in TagGroupTags)
|
||||||
{
|
{
|
||||||
var TagMapItem = await MapBiz.CreateAsync(new TagMapInfo { TagId = TagInGroup.Id, TagToObjectId=inObj.TagToObjectId, TagToObjectType=inObj.TagToObjectType });
|
var TagMapItem = await MapBiz.CreateAsync(new TagMapInfo { TagId = TagInGroup.Id, TagToObjectId = inObj.TagToObjectId, TagToObjectType = inObj.TagToObjectType });
|
||||||
ReturnObject.Add(TagInGroup);
|
ReturnObject.Add(TagInGroup);
|
||||||
}
|
}
|
||||||
await ct.SaveChangesAsync();
|
await ct.SaveChangesAsync();
|
||||||
|
|||||||
@@ -17,16 +17,14 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class TagGroupMapBiz : BizObject
|
internal class TagGroupMapBiz : BizObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
|
|
||||||
|
|
||||||
internal TagGroupMapBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
internal TagGroupMapBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType = AyaType.TagGroupMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -55,7 +53,7 @@ namespace AyaNova.Biz
|
|||||||
{
|
{
|
||||||
TagId = inObj.TagId,
|
TagId = inObj.TagId,
|
||||||
TagGroupId = inObj.TagGroupId,
|
TagGroupId = inObj.TagGroupId,
|
||||||
OwnerId = userId
|
OwnerId = UserId
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,16 +17,13 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class TagMapBiz : BizObject
|
internal class TagMapBiz : BizObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
|
|
||||||
|
internal TagMapBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
internal TagMapBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType = AyaType.TagMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -54,7 +51,7 @@ namespace AyaNova.Biz
|
|||||||
TagId = inObj.TagId,
|
TagId = inObj.TagId,
|
||||||
TagToObjectId = inObj.TagToObjectId,
|
TagToObjectId = inObj.TagToObjectId,
|
||||||
TagToObjectType = inObj.TagToObjectType,
|
TagToObjectType = inObj.TagToObjectType,
|
||||||
OwnerId = userId
|
OwnerId = UserId
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -21,17 +21,12 @@ namespace AyaNova.Biz
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
internal class TrialBiz : BizObject, IJobObject
|
internal class TrialBiz : BizObject, IJobObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
internal TrialBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
// private readonly ApiServerState serverState;
|
|
||||||
|
|
||||||
internal TrialBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
//serverState = apiServerState;, ApiServerState apiServerState
|
BizType=AyaType.TrialSeeder;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -18,19 +18,15 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class UserBiz : BizObject, IJobObject, IImportAyaNova7Object
|
internal class UserBiz : BizObject, IJobObject, IImportAyaNova7Object
|
||||||
{
|
{
|
||||||
public static AyaType BizType = AyaType.User;
|
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long UserId;
|
|
||||||
public readonly long UserLocaleId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
public bool SeedOrImportRelaxedRulesMode { get; set; }
|
public bool SeedOrImportRelaxedRulesMode { get; set; }
|
||||||
|
|
||||||
internal UserBiz(AyContext dbcontext, long currentUserId, long userLocaleId, AuthorizationRoles UserRoles)
|
internal UserBiz(AyContext dbcontext, long currentUserId, long userLocaleId, AuthorizationRoles userRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
UserId = currentUserId;
|
UserId = currentUserId;
|
||||||
UserLocaleId = userLocaleId;
|
CurrentUserRoles = userRoles;
|
||||||
userRoles = UserRoles;
|
BizType = AyaType.User;
|
||||||
SeedOrImportRelaxedRulesMode = false;//default
|
SeedOrImportRelaxedRulesMode = false;//default
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,16 +16,13 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class UserOptionsBiz : BizObject
|
internal class UserOptionsBiz : BizObject
|
||||||
{
|
{
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long userId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
|
|
||||||
|
internal UserOptionsBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles userRoles)
|
||||||
internal UserOptionsBiz(AyContext dbcontext, long currentUserId, AuthorizationRoles UserRoles)
|
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
userId = currentUserId;
|
UserId = currentUserId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = userRoles;
|
||||||
|
BizType = AyaType.UserOptions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -95,7 +92,7 @@ namespace AyaNova.Biz
|
|||||||
if (inObj.OwnerId == 0)
|
if (inObj.OwnerId == 0)
|
||||||
AddError(ValidationErrorType.RequiredPropertyEmpty, "OwnerId");
|
AddError(ValidationErrorType.RequiredPropertyEmpty, "OwnerId");
|
||||||
|
|
||||||
//OwnerId required
|
//OwnerId required
|
||||||
if (inObj.UserId == 0)
|
if (inObj.UserId == 0)
|
||||||
AddError(ValidationErrorType.RequiredPropertyEmpty, "UserId");
|
AddError(ValidationErrorType.RequiredPropertyEmpty, "UserId");
|
||||||
|
|
||||||
|
|||||||
@@ -16,19 +16,14 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
internal class WidgetBiz : BizObject, IJobObject
|
internal class WidgetBiz : BizObject, IJobObject
|
||||||
{
|
{
|
||||||
public static AyaType BizType = AyaType.Widget;
|
|
||||||
private readonly AyContext ct;
|
|
||||||
public readonly long UserId;
|
|
||||||
public readonly long UserLocaleId;
|
|
||||||
private readonly AuthorizationRoles userRoles;
|
|
||||||
|
|
||||||
|
|
||||||
internal WidgetBiz(AyContext dbcontext, long currentUserId, long userLocaleId, AuthorizationRoles UserRoles)
|
internal WidgetBiz(AyContext dbcontext, long currentUserId, long userLocaleId, AuthorizationRoles UserRoles)
|
||||||
{
|
{
|
||||||
ct = dbcontext;
|
ct = dbcontext;
|
||||||
UserId = currentUserId;
|
UserId = currentUserId;
|
||||||
UserLocaleId = userLocaleId;
|
UserLocaleId = userLocaleId;
|
||||||
userRoles = UserRoles;
|
CurrentUserRoles = UserRoles;
|
||||||
|
BizType = AyaType.Widget;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static WidgetBiz GetBiz(AyContext ct, Microsoft.AspNetCore.Http.HttpContext httpContext)
|
internal static WidgetBiz GetBiz(AyContext ct, Microsoft.AspNetCore.Http.HttpContext httpContext)
|
||||||
|
|||||||
Reference in New Issue
Block a user