BMC: Change msgSent datetime value in GetNotifications Method
This commit is contained in:
parent
7617b41df0
commit
3682a17d53
@ -58,7 +58,7 @@ namespace BCS.BMC.Web.Controllers
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public async Task<IActionResult> GetNotifications([FromBody]NotificationModel notification)
|
||||
public async Task<IActionResult> GetNotifications([FromBody] NotificationModel notification)
|
||||
{
|
||||
string path = AppDomain.CurrentDomain.BaseDirectory + @"firechat-57601-firebase-adminsdk-anscp-e04366c4d4.json";
|
||||
Environment.SetEnvironmentVariable("GOOGLE_APPLICATION_CREDENTIALS", path);
|
||||
@ -71,23 +71,35 @@ namespace BCS.BMC.Web.Controllers
|
||||
data.FcmToken = notification.FcmToken;
|
||||
// data.Id = notification.Id;
|
||||
data.Message = notification.Message;
|
||||
//data.MessageSentDateTime = notification.MessageSentDateTime;
|
||||
data.MessageSentDateTime = DateTime.UtcNow;
|
||||
data.MessageSentDateTime = notification.MessageSentDateTime;
|
||||
//data.MessageSentDateTime = DateTime.UtcNow;
|
||||
data.SenderImageurl = notification.SenderImageurl;
|
||||
data.SenderName = notification.SenderName;
|
||||
data.Status= notification.Status;
|
||||
data.Status = notification.Status;
|
||||
data.UserId = notification.UserId;
|
||||
|
||||
foreach (var item in notification.UserId)
|
||||
{
|
||||
int userId = Convert.ToInt32(item);
|
||||
var getTokenDetails = _firebaseToken.GetAllList().Where(x => x.UserId == userId).FirstOrDefault();
|
||||
List<string> tokenList = new List<string>();
|
||||
tokenList.Add(getTokenDetails.FcmToken.ToString());
|
||||
await db.Collection("BMC_Notification").Document().SetAsync(data);
|
||||
|
||||
if (getTokenDetails != null)
|
||||
int userId = 0;
|
||||
List<string> tokenList = new List<string>();
|
||||
foreach (var item in notification.UserId)
|
||||
{
|
||||
userId = Convert.ToInt32(item);
|
||||
var getTokenDetails = _firebaseToken.GetAllList().Where(x => x.UserId == userId).FirstOrDefault();
|
||||
tokenList.Add(getTokenDetails.FcmToken.ToString());
|
||||
|
||||
var entity = new FirebaseCloudMessageDetails();
|
||||
entity.UserId = userId;
|
||||
entity.SenderImageurl = notification.SenderImageurl;
|
||||
entity.SenderName = notification.SenderName;
|
||||
entity.MessageSentDateTime = notification.MessageSentDateTime;
|
||||
entity.Status = notification.Status;
|
||||
entity.Message = notification.Message;
|
||||
|
||||
if (entity != null)
|
||||
{
|
||||
await _firebaseCloudMessageDetails.InsertAndGetIdAsync(entity);
|
||||
}
|
||||
}
|
||||
var title = notification.SenderName.ToJsonString();
|
||||
var body = notification.Message.ToJsonString();
|
||||
var sendNotificationInfo = new FireBaseResponseModel();
|
||||
@ -104,23 +116,7 @@ namespace BCS.BMC.Web.Controllers
|
||||
sendNotificationInfo.notification = notifications;
|
||||
await SendNotification(sendNotificationInfo);
|
||||
}
|
||||
var entity = new FirebaseCloudMessageDetails();
|
||||
entity.UserId = userId;
|
||||
entity.SenderImageurl = notification.SenderImageurl;
|
||||
entity.SenderName = notification.SenderName;
|
||||
entity.MessageSentDateTime = notification.MessageSentDateTime;
|
||||
entity.Status = notification.Status;
|
||||
entity.Message = notification.Message;
|
||||
|
||||
if (entity != null)
|
||||
{
|
||||
await _firebaseCloudMessageDetails.InsertAndGetIdAsync(entity);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
catch(Exception ex)
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user