有什么方法可以查出 Quickblox 用户是否在线?我正在使用 Quickblox iOS SDK。
问问题
3521 次
2 回答
4
有2种方式:
于 2013-08-01T15:13:20.917 回答
1
斯威夫特 5:
为了获得对手用户的在线状态和准确的上次看到addUserToContactListRequest()
我们必须使用API将两个用户添加到彼此的联系人列表中。
用户 A发送与用户 B成为“朋友”的请求。用户 B 接受好友请求。现在用户 A 和 B 出现在彼此的名册中。
第1步:
检查对方用户是否已经添加到联系人中
let isAvailable = QBChat.instance.contactList?.contacts?.filter {(contacts) -> Bool in
// self.dialog.recipientID is an opponent user's ID
return contacts.userID == self.dialog.recipientID ? true : false
}
如果在联系人中可用,请检查在线状态,如果不可用,则发送请求以添加联系人。
if isAvailable!.count > 0 {
if isAvailable![0].isOnline {
//print("User Is Online")
} else {
//print("User Is Offline")
//Check Last Seen
self.fetchLastSeen(userId: self.dialog.recipientID)
}
} else {
QBChat.instance.addUser(toContactListRequest: UInt(self.dialog!.recipientID)) { (err) in
print("\(err)")
}
}
第2步 :
实施QBChatDelegate
方法。
添加联系人请求
// This method will get called whenever you will receive any new add contact request
func chatDidReceiveContactAddRequest(fromUser userID: UInt) {
//Confirm add to contact list request.
QBChat.instance.confirmAddContactRequest(userID) { (error) in
}
}
当用户的联系人列表在线状态发生变化时调用以下方法。
func chatDidReceiveContactItemActivity(_ userID: UInt, isOnline: Bool, status: String?) {
if userID == self.dialog.recipientID {
if isOnline {
print("User Is Online")
} else {
//print("User Is Offline")
//Check Last Seen
fetchLastSeen(userId: NSInteger(userID))
}
}
}
第 3 步:
使用此获取用户的最后一次看到lastActivityForUser()
func fetchLastSeen(userId: NSInteger){
QBChat.instance.lastActivityForUser(withID: UInt(userId)) { (timeStamp, err) in
print(timeStamp)
// here we get total seconds, since how long user was inactive
// minus the seconds from current time
if err == nil {
let updatedTime = Calendar.current.date(byAdding: .second, value: -Int(timeStamp), to: Date())
guard let dateSent = updatedTime else {
return
}
var lastSeenStr = ""
if (Calendar.current.isDateInToday(updatedTime!)){
lastSeenStr = "Today"
} else if (Calendar.current.isDateInYesterday(updatedTime!)){
lastSeenStr = "Yesterday"
} else {
let dateFormat = DateFormatter()
dateFormat.dateFormat = "d-MMM"
lastSeenStr = dateFormat.string(from: updatedTime!)
}
let text = messageTimeDateFormatter.string(from: dateSent)
print("\(lastSeenStr + " " + text)") // e.g. 11-Sep 11:44 AM
}
}
}
于 2019-10-04T11:03:43.660 回答