This commit is contained in:
@@ -44,7 +44,7 @@ namespace AyaNova.Biz
|
||||
/// Get the event log for a specified object
|
||||
/// Presentation is the client's responsibility (localization internationalization etc)
|
||||
/// </summary>
|
||||
internal static async Task<AyaNova.Api.Controllers.EventLogController.ObjectEventLogItem[]> GetLogForObject(AyaNova.Api.Controllers.EventLogController.EventLogOptions opt, AyContext ct)
|
||||
internal static async Task<AyaNova.Api.Controllers.EventLogController.ObjectEventLogItem[]> GetLogForObjectAsync(AyaNova.Api.Controllers.EventLogController.EventLogOptions opt, AyContext ct)
|
||||
{
|
||||
//This is also an example of conditional where statements
|
||||
|
||||
@@ -82,7 +82,7 @@ namespace AyaNova.Biz
|
||||
/// Get the event log for a specified User
|
||||
/// Presentation is the client's responsibility (localization internationalization etc)
|
||||
/// </summary>
|
||||
internal static async Task<AyaNova.Api.Controllers.EventLogController.UserEventLogItem[]> GetLogForUser(AyaNova.Api.Controllers.EventLogController.EventLogOptions opt, AyContext ct)
|
||||
internal static async Task<AyaNova.Api.Controllers.EventLogController.UserEventLogItem[]> GetLogForUserAsync(AyaNova.Api.Controllers.EventLogController.EventLogOptions opt, AyContext ct)
|
||||
{
|
||||
//Set up the query
|
||||
var q = ct.Event.Select(m => m);
|
||||
|
||||
@@ -149,16 +149,16 @@ namespace AyaNova.Biz
|
||||
//
|
||||
|
||||
//USERS
|
||||
await DoImport("GZTW.AyaNova.BLL.User", "main", AyaType.User, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
await DoImportAsync("GZTW.AyaNova.BLL.User", "main", AyaType.User, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
//Now can do event log entries
|
||||
await DoImport("GZTW.AyaNova.BLL.User", "eventlog", AyaType.User, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
await DoImportAsync("GZTW.AyaNova.BLL.User", "eventlog", AyaType.User, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
|
||||
|
||||
|
||||
//IMPORT LOCALES
|
||||
await DoImport("GZTW.AyaNova.BLL.Locale", "main", AyaType.Locale, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
await DoImportAsync("GZTW.AyaNova.BLL.Locale", "main", AyaType.Locale, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
//Now can do user locale settings properly
|
||||
await DoImport("GZTW.AyaNova.BLL.User", "locale", AyaType.User, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
await DoImportAsync("GZTW.AyaNova.BLL.User", "locale", AyaType.User, job.GId, importMap, importFileName, zipEntries, TagLists);
|
||||
|
||||
//TODO: CLIENT
|
||||
//do import for client here
|
||||
@@ -194,7 +194,7 @@ namespace AyaNova.Biz
|
||||
/// <param name="zipEntries"></param>
|
||||
/// <param name="tagLists"></param>
|
||||
/// <returns></returns>
|
||||
private async Task DoImport(string entryStartsWith, string importTask, AyaType importerType, Guid jobId,
|
||||
private async Task DoImportAsync(string entryStartsWith, string importTask, AyaType importerType, Guid jobId,
|
||||
List<ImportAyaNova7MapItem> importMap, string importFileName, List<string> zipEntries, Dictionary<string, Dictionary<Guid, string>> tagLists)
|
||||
{
|
||||
var zipObjectList = zipEntries.Where(m => m.StartsWith(entryStartsWith)).ToList();
|
||||
|
||||
@@ -154,7 +154,7 @@ namespace AyaNova.Biz
|
||||
#endif
|
||||
|
||||
//Get the keys for a list of keys provided
|
||||
internal async Task<List<KeyValuePair<string, string>>> GetSubset(List<string> param)
|
||||
internal async Task<List<KeyValuePair<string, string>>> GetSubsetAsync(List<string> param)
|
||||
{
|
||||
|
||||
#if (DEBUG)
|
||||
@@ -165,7 +165,7 @@ namespace AyaNova.Biz
|
||||
}
|
||||
|
||||
//Get the keys for a list of keys provided, static format for calling from other internal classes
|
||||
internal static async Task<Dictionary<string, string>> GetSubsetStatic(List<string> param, long localeId)
|
||||
internal static async Task<Dictionary<string, string>> GetSubsetStaticAsync(List<string> param, long localeId)
|
||||
{
|
||||
#if (DEBUG)
|
||||
TrackRequestedKey(param);
|
||||
@@ -179,7 +179,7 @@ namespace AyaNova.Biz
|
||||
|
||||
|
||||
//Get the CJKIndex value for the locale specified
|
||||
internal static async Task<bool> GetCJKIndex(long localeId, AyContext ct = null)
|
||||
internal static async Task<bool> GetCJKIndexAsync(long localeId, AyContext ct = null)
|
||||
{
|
||||
if (ct == null)
|
||||
ct = ServiceProviderProvider.DBContext;
|
||||
@@ -193,7 +193,7 @@ namespace AyaNova.Biz
|
||||
/// </summary>
|
||||
/// <param name="key"></param>
|
||||
/// <returns></returns>
|
||||
internal static async Task<string> GetDefaultLocalizedText(string key)
|
||||
internal static async Task<string> GetDefaultLocalizedTextAsync(string key)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(key))
|
||||
return "ERROR: GetDefaultLocalizedText NO KEY VALUE SPECIFIED";
|
||||
@@ -217,7 +217,7 @@ namespace AyaNova.Biz
|
||||
//
|
||||
|
||||
|
||||
internal bool PutLocaleItemDisplayText(LocaleItem dbObj, NewTextIdConcurrencyTokenItem inObj, Locale dbParent)
|
||||
internal async Task<bool> PutLocaleItemDisplayTextAsync(LocaleItem dbObj, NewTextIdConcurrencyTokenItem inObj, Locale dbParent)
|
||||
{
|
||||
|
||||
if (dbParent.Stock == true)
|
||||
@@ -239,16 +239,16 @@ namespace AyaNova.Biz
|
||||
|
||||
if (HasErrors)
|
||||
return false;
|
||||
ct.SaveChanges();
|
||||
await ct.SaveChangesAsync();
|
||||
|
||||
//Log
|
||||
EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, dbParent.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
||||
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, dbParent.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
internal bool PutLocaleName(Locale dbObj, NewTextIdConcurrencyTokenItem inObj)
|
||||
internal async Task<bool> PutLocaleNameAsync(Locale dbObj, NewTextIdConcurrencyTokenItem inObj)
|
||||
{
|
||||
if (dbObj.Stock == true)
|
||||
{
|
||||
@@ -267,9 +267,9 @@ namespace AyaNova.Biz
|
||||
if (HasErrors)
|
||||
return false;
|
||||
|
||||
ct.SaveChanges();
|
||||
await ct.SaveChangesAsync();
|
||||
//Log
|
||||
EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, dbObj.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
||||
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, dbObj.Id, AyaType.Locale, AyaEvent.Modified), ct);
|
||||
|
||||
return true;
|
||||
}
|
||||
@@ -587,7 +587,7 @@ namespace AyaNova.Biz
|
||||
{
|
||||
if (!NewLocaleDict.ContainsKey(s))
|
||||
{
|
||||
NewLocaleDict.Add(s, GetDefaultLocalizedText(s).Result);
|
||||
NewLocaleDict.Add(s, GetDefaultLocalizedTextAsync(s).Result);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -722,7 +722,7 @@ cache or provide directly the locale to save time repeatedly fetching it when do
|
||||
Param.Add("StopWords5");
|
||||
Param.Add("StopWords6");
|
||||
Param.Add("StopWords7");
|
||||
var Stops = LocaleBiz.GetSubsetStatic(Param, localeId).Result;
|
||||
var Stops = LocaleBiz.GetSubsetStaticAsync(Param, localeId).Result;
|
||||
|
||||
foreach (KeyValuePair<string, string> kvp in Stops)
|
||||
{
|
||||
@@ -733,7 +733,7 @@ cache or provide directly the locale to save time repeatedly fetching it when do
|
||||
}
|
||||
}
|
||||
|
||||
LSD.CJKIndex = LocaleBiz.GetCJKIndex(localeId, ct).Result;
|
||||
LSD.CJKIndex = LocaleBiz.GetCJKIndexAsync(localeId, ct).Result;
|
||||
return LSD;
|
||||
}
|
||||
|
||||
|
||||
@@ -86,7 +86,7 @@ namespace AyaNova.Biz
|
||||
await ct.SaveChangesAsync();
|
||||
//Handle child and associated items:
|
||||
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, outObj.Id, BizType, AyaEvent.Created), ct);
|
||||
await SearchIndex(outObj, true);
|
||||
await SearchIndexAsync(outObj, true);
|
||||
await TagUtil.ProcessUpdateTagsInRepositoryAsync(ct, outObj.Tags, null);
|
||||
|
||||
return outObj;
|
||||
@@ -117,7 +117,7 @@ namespace AyaNova.Biz
|
||||
|
||||
//Handle child and associated items:
|
||||
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, outObj.Id, BizType, AyaEvent.Created), ct);
|
||||
await SearchIndex(outObj, true);
|
||||
await SearchIndexAsync(outObj, true);
|
||||
await TagUtil.ProcessUpdateTagsInRepositoryAsync(ct, outObj.Tags, null);
|
||||
return outObj;
|
||||
|
||||
@@ -152,7 +152,7 @@ namespace AyaNova.Biz
|
||||
|
||||
//Log event and save context
|
||||
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, dbObj.Id, BizType, AyaEvent.Modified), ct);
|
||||
await SearchIndex(dbObj, false);
|
||||
await SearchIndexAsync(dbObj, false);
|
||||
await TagUtil.ProcessUpdateTagsInRepositoryAsync(ct, dbObj.Tags, SnapshotOfOriginalDBObj.Tags);
|
||||
|
||||
return true;
|
||||
@@ -182,7 +182,7 @@ namespace AyaNova.Biz
|
||||
|
||||
//Log event and save context
|
||||
await EventLogProcessor.LogEventToDatabaseAsync(new Event(UserId, dbObj.Id, BizType, AyaEvent.Modified), ct);
|
||||
await SearchIndex(dbObj, false);
|
||||
await SearchIndexAsync(dbObj, false);
|
||||
|
||||
await TagUtil.ProcessUpdateTagsInRepositoryAsync(ct, dbObj.Tags, SnapshotOfOriginalDBObj.Tags);
|
||||
|
||||
@@ -190,7 +190,7 @@ namespace AyaNova.Biz
|
||||
}
|
||||
|
||||
|
||||
private async Task SearchIndex(Widget obj, bool isNew)
|
||||
private async Task SearchIndexAsync(Widget obj, bool isNew)
|
||||
{
|
||||
//SEARCH INDEXING
|
||||
var SearchParams = new Search.SearchIndexProcessObjectParameters(UserLocaleId, obj.Id, BizType, obj.Name);
|
||||
|
||||
Reference in New Issue
Block a user