getSettings('im.cs'); Gateway::$registerAddress = $this->getRegisterAddress(); if (!empty($csInfo['user1_id'])) { $csUserIds[] = $csInfo['user1_id']; if (Gateway::isUidOnline($csInfo['user1_id'])) { $onlineUserIds[] = $csInfo['user1_id']; } } if (!empty($csInfo['user2_id'])) { $csUserIds[] = $csInfo['user2_id']; if (Gateway::isUidOnline($csInfo['user2_id'])) { $onlineUserIds[] = $csInfo['user2_id']; } } if (!empty($csInfo['user3_id'])) { $csUserIds[] = $csInfo['user3_id']; if (Gateway::isUidOnline($csInfo['user3_id'])) { $onlineUserIds[] = $csInfo['user3_id']; } } if (count($onlineUserIds) > 0) { $key = array_rand($onlineUserIds); $userId = $onlineUserIds[$key]; } else { $key = array_rand($csUserIds); $userId = $csUserIds[$key]; } return $this->getImUser($userId); } }