2019-04-27 12:40:27 +00:00
|
|
|
import 'package:comunic/helpers/users_helper.dart';
|
|
|
|
import 'package:comunic/lists/users_list.dart';
|
|
|
|
import 'package:comunic/models/api_request.dart';
|
2020-04-16 13:14:27 +00:00
|
|
|
import 'package:comunic/utils/api_utils.dart';
|
2019-04-27 12:40:27 +00:00
|
|
|
|
|
|
|
/// Search helper
|
|
|
|
///
|
|
|
|
/// @author Pierre HUBERT
|
|
|
|
|
|
|
|
class SearchHelper {
|
|
|
|
/// Search for user. This method returns information about the target users
|
|
|
|
///
|
|
|
|
/// Returns information about the target users or null if an error occurred
|
|
|
|
Future<UsersList> searchUser(String query) async {
|
|
|
|
// Execute the query on the server
|
|
|
|
final response = await APIRequest(
|
2020-04-16 13:14:27 +00:00
|
|
|
uri: "user/search", needLogin: true, args: {"query": query}).exec();
|
2019-04-27 12:40:27 +00:00
|
|
|
|
|
|
|
if (response.code != 200) return null;
|
|
|
|
|
2020-04-16 13:14:27 +00:00
|
|
|
return await UsersHelper()
|
|
|
|
.getUsersInfo(response.getArray().map((f) => cast<int>(f)).toList());
|
2019-04-27 12:40:27 +00:00
|
|
|
}
|
2020-04-16 13:14:27 +00:00
|
|
|
}
|