Created
March 30, 2020 19:48
-
-
Save jamigibbs/af0f89f3190848a346d35c0b072ee680 to your computer and use it in GitHub Desktop.
Chat Controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public with sharing class ChatController { | |
@AuraEnabled(cacheable=true) | |
public static List<Chat_Message__c> getTodayMessages() { | |
List<Chat_Message__c> messageList; | |
try { | |
messageList = [ | |
SELECT Id, Content__c, CreatedDate, User__r.Name, User__r.MediumPhotoUrl | |
FROM Chat_Message__c | |
WHERE CreatedDate = today | |
ORDER BY CreatedDate DESC | |
]; | |
} catch(Exception e) { | |
System.debug(e.getMessage()); | |
return null; | |
} | |
return messageList; | |
} | |
@AuraEnabled(cacheable=true) | |
public static List<User> getActiveChatUsers() { | |
List<User> userList; | |
try { | |
userList = [ | |
SELECT Id, CreatedDate, Name, MediumPhotoUrl | |
FROM User | |
WHERE Chat_Active__c = true | |
]; | |
} catch(Exception e) { | |
System.debug(e.getMessage()); | |
return null; | |
} | |
return userList; | |
} | |
@AuraEnabled | |
public static User setUserChatActive() { | |
User userToUpdate; | |
try { | |
userToUpdate = [ | |
SELECT Id | |
FROM User | |
WHERE Id = :UserInfo.getUserId() | |
]; | |
userToUpdate.Chat_Active__c = true; | |
update userToUpdate; | |
} catch(DmlException e) { | |
System.debug('An unexpected error has occurred: ' + e.getMessage()); | |
} | |
return userToUpdate; | |
} | |
@AuraEnabled | |
public static User setUserChatInactive() { | |
User userToUpdate; | |
try { | |
userToUpdate = [ | |
SELECT Id | |
FROM User | |
WHERE Id = :UserInfo.getUserId() | |
]; | |
userToUpdate.Chat_Active__c = false; | |
update userToUpdate; | |
} catch(DmlException e) { | |
System.debug('An unexpected error has occurred: ' + e.getMessage()); | |
} | |
return userToUpdate; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment