You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.2 KiB

3 years ago
import 'dart:convert';
import 'package:bytedesk_kefu/http/bytedesk_base_api.dart';
import 'package:bytedesk_kefu/model/helpArticle.dart';
import 'package:bytedesk_kefu/model/helpCategory.dart';
import 'package:bytedesk_kefu/util/bytedesk_constants.dart';
3 years ago
import 'package:bytedesk_kefu/util/bytedesk_utils.dart';
3 years ago
class BytedeskFaqHttpApi extends BytedeskBaseHttpApi {
//
// 常见问题分类
Future<List<HelpCategory>> getHelpSupportCategories(String? uid) async {
//
final categoriesUrl = Uri.http(BytedeskConstants.host,
'/visitor/api/category/support', {'uid': uid, 'client': client});
3 years ago
BytedeskUtils.printLog("categories Url $categoriesUrl");
3 years ago
final initResponse = await this.httpClient.get(categoriesUrl);
//
//解决json解析中的乱码问题
Utf8Decoder utf8decoder = Utf8Decoder(); // fix 中文乱码
//将string类型数据 转换为json类型的数据
final responseJson =
json.decode(utf8decoder.convert(initResponse.bodyBytes));
3 years ago
BytedeskUtils.printLog("responseJson $responseJson");
3 years ago
//
List<HelpCategory> categories = (responseJson['data'] as List<dynamic>)
.map((item) => HelpCategory.fromJson(item))
.toList();
return categories;
}
// 常见问题分类-所属文章
Future<List<HelpArticle>> getHelpSupportArticles(int? categoryId) async {
//
// final categoriesUrl =
// '$baseUrl/visitor/api/category/articles?categoryId=$categoryId&client=$client';
final categoriesUrl = Uri.http(
BytedeskConstants.host,
'/visitor/api/category/articles',
{'categoryId': categoryId, 'client': client});
3 years ago
BytedeskUtils.printLog("categories Url $categoriesUrl");
3 years ago
final initResponse = await this.httpClient.get(categoriesUrl);
//
//解决json解析中的乱码问题
Utf8Decoder utf8decoder = Utf8Decoder(); // fix 中文乱码
//将string类型数据 转换为json类型的数据
final responseJson =
json.decode(utf8decoder.convert(initResponse.bodyBytes));
3 years ago
BytedeskUtils.printLog("responseJson $responseJson");
3 years ago
//
List<HelpArticle> articles = (responseJson['data'] as List<dynamic>)
.map((item) => HelpArticle.fromJson(item))
.toList();
//
return articles;
}
}