|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- import 'dart:async';
- import 'dart:io';
-
- import 'package:flutter/material.dart';
- import 'package:flutter/services.dart';
- import 'package:flutter_alibc/albc_tools.dart';
- import 'package:flutter_alibc/alibc_const_key.dart';
- import 'package:flutter_alibc/alibc_model.dart';
-
- class FlutterAlibc {
- // static StreamController<String> _responseTaoKeLoginController = new StreamController.broadcast();
- // static Stream<String> get responseFromShare =>
- // _responseTaoKeLoginController.stream;
-
- // static Future<dynamic> _handler(MethodCall methodCall) {
- // if ("taoKeLogin" == methodCall.method) {
- // _responseTaoKeLoginController.sink.add(methodCall.arguments);
- // }
- // return Future.value(true);
- // }
-
- // 通信的桥接类
- static final MethodChannel _channel = const MethodChannel("flutter_alibc");
-
- // ..setMethodCallHandler(_handler);
-
- static Future<String> get platformVersion async {
- final String version = await _channel.invokeMethod('getPlatformVersion');
- return version;
- }
-
- ///初始化
- ///version:当前app版本
- ///appName:当前app名称
- ///result:{
- /// errorCode, //0为初始化成功,其他为失败
- /// errorMessage, //message
- ///}
- static Future<InitModel> initAlibc({String version, String appName}) async {
- Map result = await _channel.invokeMethod("initAlibc", {"version": version, "appName": appName});
- return InitModel(result[AlibcConstKey.errorCode], result[AlibcConstKey.errorMessage]);
- }
-
- ///
- /// @description: 登录淘宝
- ///
- /// @return: 成功则返回的data为用户信息,失败则没有data
- ///
- static Future<LoginModel> loginTaoBao() async {
- Map result = await _channel.invokeMethod("loginTaoBao");
- // 判断成功还是失败
- if (result[AlibcConstKey.errorCode] != "0") {
- return LoginModel(
- result[AlibcConstKey.errorCode],
- result[AlibcConstKey.errorMessage],
- );
- }
- return LoginModel(result[AlibcConstKey.errorCode], result[AlibcConstKey.errorMessage],
- data: UserModel(result[AlibcConstKey.data]["nick"], result[AlibcConstKey.data]["avatarUrl"], result[AlibcConstKey.data]["openId"], result[AlibcConstKey.data]["openSid"],
- result[AlibcConstKey.data]["topAccessToken"], result[AlibcConstKey.data]["topAuthCode"]));
- }
-
- ///
- /// @description: 退出淘宝登录
- /// @param {type}
- /// @return:
- ///
- static loginOut() {
- _channel.invokeMethod("loginOut");
- }
-
- ///
- /// @description: 渠道授权,获取access_token
- /// @param {type}
- /// @return:
- /// Map<String,String>
- static Future<Map<dynamic, dynamic>> taoKeLogin({
- @required String url,
- AlibcOpenType openType = AlibcOpenType.AlibcOpenTypeAuto,
- bool isNeedCustomNativeFailMode = false,
- AlibcNativeFailMode nativeFailMode = AlibcNativeFailMode.AlibcNativeFailModeNone,
- AlibcSchemeType schemeType = AlibcSchemeType.AlibcSchemeTaoBao,
- TaokeParams taokeParams,
- String backUrl,
- }) async {
- Map taoKe = AlibcTools.getTaokeMap(taokeParams);
- Map result = await _channel.invokeMethod("taoKeLogin", {
- "url": url,
- "openType": openType.index,
- "isNeedCustomNativeFailMode": isNeedCustomNativeFailMode,
- "nativeFailMode": nativeFailMode.index,
- "schemeType": schemeType.index,
- "taokeParams": taoKe,
- "backUrl": backUrl
- });
-
- return result;
- }
-
- ///
- /// @description: 渠道授权,获取access_token
- /// name app名字
- /// alibcAppKey 百川Key
- /// Map<String,String>
- static Future<Map<dynamic, dynamic>> taoKeLoginNew(String name, String alibcAppKey) async {
- Map result = await _channel.invokeMethod("taoKeLoginNew", {
- "name": name,
- "alibcAppKey": alibcAppKey,
- });
-
- return result;
- }
-
- ///
- /// @description: 渠道授权,获取access_token
- /// @param {type}
- /// @return:
- /// Map<String,String>
- static Future<Map<dynamic, dynamic>> taoKeLoginNewIOS(String name, String alibcAppKey) async {
- Map result = await _channel.invokeMethod("taoKeLogin", {
- "name": name,
- "alibcAppKey": alibcAppKey,
- });
- return result;
- }
-
- ///
- /// @description: 通过url打开,包括h5,唤起手淘等
- /// @param
- /// url:目标url
- /// openType:打开类型
- /// isNeedCustomNativeFailMode:是否需要设置唤端失败策略
- /// nativeFailMode:唤端失败策略
- /// schemeType:唤起哪个端
- /// taokeParams:淘客数据
- /// backUrl: 跳转回来的url
- /// @return:
- ///
- static Future<TradeResult> openByUrl(
- {@required String url,
- AlibcOpenType openType = AlibcOpenType.AlibcOpenTypeAuto,
- bool isNeedCustomNativeFailMode = false,
- AlibcNativeFailMode nativeFailMode = AlibcNativeFailMode.AlibcNativeFailModeNone,
- AlibcSchemeType schemeType = AlibcSchemeType.AlibcSchemeTmall,
- TaokeParams taokeParams,
- String backUrl,
- bool isAuth = false}) async {
- Map taoKe = AlibcTools.getTaokeMap(taokeParams);
- var result = await _channel.invokeMethod("openByUrl", {
- "url": url,
- "openType": openType.index,
- "isNeedCustomNativeFailMode": isNeedCustomNativeFailMode,
- "nativeFailMode": nativeFailMode.index,
- "schemeType": schemeType.index,
- "taokeParams": taoKe,
- "backUrl": backUrl,
- "auth": isAuth
- });
- if (isAuth && Platform.isAndroid) {
- TradeResult tradeResult = TradeResult("-1", "");
-
- if (result != null && result) {
- ///授权成功
- tradeResult.errorCode = "0";
- return tradeResult;
- } else {
- ///授权失败
- tradeResult.errorCode = "-1";
- return tradeResult;
- }
- }
- TradeResult tradeResult = AlibcTools.getTradeResult(result);
- return tradeResult;
- }
-
- ///
- /// @description: 打开商品详情
- /// @param
- /// 同上
- /// itemID 商品id,可以是真实的也可以是混淆的
- /// isNeedPush iOS独占
- /// @return:
- ///
- static Future<TradeResult> openItemDetail({
- @required String itemID,
- // iOS独占
- // bool isNeedPush = false,
- AlibcOpenType openType = AlibcOpenType.AlibcOpenTypeAuto,
- bool isNeedCustomNativeFailMode = false,
- AlibcNativeFailMode nativeFailMode = AlibcNativeFailMode.AlibcNativeFailModeNone,
- AlibcSchemeType schemeType = AlibcSchemeType.AlibcSchemeTmall,
- TaokeParams taokeParams,
- // 额外需要追踪的业务数据
- Map trackParam,
- String backUrl,
- }) async {
- Map taoKe = AlibcTools.getTaokeMap(taokeParams);
- Map result = await _channel.invokeMethod("openItemDetail", {
- "itemID": itemID,
- // "isNeedPush": isNeedPush,
- "openType": openType.index,
- "isNeedCustomNativeFailMode": isNeedCustomNativeFailMode,
- "nativeFailMode": nativeFailMode.index,
- "schemeType": schemeType.index,
- "taokeParams": taoKe,
- "trackParam": trackParam,
- "backUrl": backUrl
- });
- TradeResult tradeResult = AlibcTools.getTradeResult(result);
- return tradeResult;
- }
-
- ///
- /// @description: 打开店铺
- /// @param {type}
- /// shopId 店铺id
- /// @return:
- ///
- static Future<TradeResult> openShop({
- @required String shopId,
- // iOS独占
- // bool isNeedPush = false,
- AlibcOpenType openType = AlibcOpenType.AlibcOpenTypeAuto,
- bool isNeedCustomNativeFailMode = false,
- AlibcNativeFailMode nativeFailMode = AlibcNativeFailMode.AlibcNativeFailModeNone,
- AlibcSchemeType schemeType = AlibcSchemeType.AlibcSchemeTmall,
- TaokeParams taokeParams,
- // 额外需要追踪的业务数据
- Map trackParam,
- String backUrl,
- }) async {
- Map taoKe = AlibcTools.getTaokeMap(taokeParams);
-
- Map result = await _channel.invokeMethod("openShop", {
- "shopId": shopId,
- // "isNeedPush": isNeedPush,
- "openType": openType.index,
- "isNeedCustomNativeFailMode": isNeedCustomNativeFailMode,
- "nativeFailMode": nativeFailMode.index,
- "schemeType": schemeType.index,
- "taokeParams": taoKe,
- "trackParam": trackParam,
- "backUrl": backUrl
- });
- TradeResult tradeResult = AlibcTools.getTradeResult(result);
- return tradeResult;
- }
-
- ///
- /// @description: 打开购物车
- /// @param {type}
- /// @return:
- ///
- static Future<TradeResult> openCart({
- // iOS独占
- // bool isNeedPush = false,
- AlibcOpenType openType = AlibcOpenType.AlibcOpenTypeAuto,
- bool isNeedCustomNativeFailMode = false,
- AlibcNativeFailMode nativeFailMode = AlibcNativeFailMode.AlibcNativeFailModeNone,
- AlibcSchemeType schemeType = AlibcSchemeType.AlibcSchemeTmall,
- TaokeParams taokeParams,
- // 额外需要追踪的业务数据
- Map trackParam,
- String backUrl,
- }) async {
- Map taoKe = AlibcTools.getTaokeMap(taokeParams);
-
- Map result = await _channel.invokeMethod("openCart", {
- // "isNeedPush": isNeedPush,
- "openType": openType.index,
- "isNeedCustomNativeFailMode": isNeedCustomNativeFailMode,
- "nativeFailMode": nativeFailMode.index,
- "schemeType": schemeType.index,
- "taokeParams": taoKe,
- "trackParam": trackParam,
- "backUrl": backUrl
- });
- TradeResult tradeResult = AlibcTools.getTradeResult(result);
- return tradeResult;
- }
-
- // 是否需要设置打点
- static syncForTaoke(bool isSync) {
- _channel.invokeMethod("syncForTaoke", {"isSync": isSync});
- }
-
- // 是否需要 Native AliPay 接口
- static useAlipayNative(bool isNeed) {
- _channel.invokeMethod("useAlipayNative", {"isNeed": isNeed});
- }
-
- static Future<String> getUdid() async {
- var map = await _channel.invokeMethod("getUdid");
- print(map);
- return map['udid'];
- }
- }
|