Commit 0011be9e975512b64e94470c5b15ebe78d0e949e
Merge branch 'master' of bj.gitlab.cnlive.com:cnlive-team/newModuleStrike
Showing
116 changed files
with
601 additions
and
243 deletions
.idea/misc.xml
| 1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project version="4"> | 2 | <project version="4"> |
| 3 | + <component name="NullableNotNullManager"> | ||
| 4 | + <option name="myDefaultNullable" value="org.jetbrains.annotations.Nullable" /> | ||
| 5 | + <option name="myDefaultNotNull" value="androidx.annotation.NonNull" /> | ||
| 6 | + <option name="myNullables"> | ||
| 7 | + <value> | ||
| 8 | + <list size="12"> | ||
| 9 | + <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" /> | ||
| 10 | + <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" /> | ||
| 11 | + <item index="2" class="java.lang.String" itemvalue="javax.annotation.CheckForNull" /> | ||
| 12 | + <item index="3" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" /> | ||
| 13 | + <item index="4" class="java.lang.String" itemvalue="android.support.annotation.Nullable" /> | ||
| 14 | + <item index="5" class="java.lang.String" itemvalue="androidx.annotation.Nullable" /> | ||
| 15 | + <item index="6" class="java.lang.String" itemvalue="android.annotation.Nullable" /> | ||
| 16 | + <item index="7" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNullable" /> | ||
| 17 | + <item index="8" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.qual.Nullable" /> | ||
| 18 | + <item index="9" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.compatqual.NullableDecl" /> | ||
| 19 | + <item index="10" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.compatqual.NullableType" /> | ||
| 20 | + <item index="11" class="java.lang.String" itemvalue="com.android.annotations.Nullable" /> | ||
| 21 | + </list> | ||
| 22 | + </value> | ||
| 23 | + </option> | ||
| 24 | + <option name="myNotNulls"> | ||
| 25 | + <value> | ||
| 26 | + <list size="11"> | ||
| 27 | + <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" /> | ||
| 28 | + <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" /> | ||
| 29 | + <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" /> | ||
| 30 | + <item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" /> | ||
| 31 | + <item index="4" class="java.lang.String" itemvalue="androidx.annotation.NonNull" /> | ||
| 32 | + <item index="5" class="java.lang.String" itemvalue="android.annotation.NonNull" /> | ||
| 33 | + <item index="6" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNonNull" /> | ||
| 34 | + <item index="7" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.qual.NonNull" /> | ||
| 35 | + <item index="8" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.compatqual.NonNullDecl" /> | ||
| 36 | + <item index="9" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.compatqual.NonNullType" /> | ||
| 37 | + <item index="10" class="java.lang.String" itemvalue="com.android.annotations.NonNull" /> | ||
| 38 | + </list> | ||
| 39 | + </value> | ||
| 40 | + </option> | ||
| 41 | + </component> | ||
| 3 | <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK"> | 42 | <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK"> |
| 4 | <output url="file://$PROJECT_DIR$/build/classes" /> | 43 | <output url="file://$PROJECT_DIR$/build/classes" /> |
| 5 | </component> | 44 | </component> |
cloud/share/.gitignore renamed to cloud/third_tool/.gitignore
cloud/share/build.gradle renamed to cloud/third_tool/build.gradle
cloud/share/libs/open_sdk_r6008_lite.jar renamed to cloud/third_tool/libs/open_sdk_r6008_lite.jar
No preview for this file type
cloud/share/proguard-rules.pro renamed to cloud/third_tool/proguard-rules.pro
cloud/share/src/debug/AndroidManifest.xml renamed to cloud/third_tool/src/debug/AndroidManifest.xml
cloud/share/src/debug/java/com/cnlive/cloud/debug/wxapi/WXEntryActivity.java renamed to cloud/third_tool/src/debug/java/com/cnlive/strike/debug/wxapi/WXEntryActivity.java
| 1 | -package com.cnlive.cloud.debug.wxapi; | 1 | +package com.cnlive.strike.debug.wxapi; |
| 2 | 2 | ||
| 3 | import android.app.Activity; | 3 | import android.app.Activity; |
| 4 | import android.content.Intent; | 4 | import android.content.Intent; |
| @@ -7,17 +7,17 @@ import android.os.Bundle; | @@ -7,17 +7,17 @@ import android.os.Bundle; | ||
| 7 | import android.text.TextUtils; | 7 | import android.text.TextUtils; |
| 8 | import android.widget.Toast; | 8 | import android.widget.Toast; |
| 9 | 9 | ||
| 10 | +import com.cnlive.cloud.user.auth.UserService; | ||
| 10 | import com.cnlive.core.libs.base.application.AppConfig; | 11 | import com.cnlive.core.libs.base.application.AppConfig; |
| 11 | import com.cnlive.core.libs.base.util.AlertUtil; | 12 | import com.cnlive.core.libs.base.util.AlertUtil; |
| 12 | import com.cnlive.share.BuildConfig; | 13 | import com.cnlive.share.BuildConfig; |
| 13 | import com.cnlive.share.arouter.ARouterUtil; | 14 | import com.cnlive.share.arouter.ARouterUtil; |
| 14 | import com.cnlive.share.data.ShareIntegralTypeInfo; | 15 | import com.cnlive.share.data.ShareIntegralTypeInfo; |
| 15 | import com.cnlive.share.data.WeChatInfo; | 16 | import com.cnlive.share.data.WeChatInfo; |
| 16 | -import com.cnlive.share.observable.WechatLoginObservable; | 17 | +import com.cnlive.login.observer.WechatLoginObservable; |
| 17 | import com.cnlive.share.observable.WechatShareObservable; | 18 | import com.cnlive.share.observable.WechatShareObservable; |
| 18 | import com.cnlive.share.util.DateTimeUtil; | 19 | import com.cnlive.share.util.DateTimeUtil; |
| 19 | import com.cnlive.share.util.OkHttpUtils; | 20 | import com.cnlive.share.util.OkHttpUtils; |
| 20 | -import com.cnlive.cloud.user.auth.UserService; | ||
| 21 | import com.google.gson.Gson; | 21 | import com.google.gson.Gson; |
| 22 | import com.tencent.mm.opensdk.modelbase.BaseReq; | 22 | import com.tencent.mm.opensdk.modelbase.BaseReq; |
| 23 | import com.tencent.mm.opensdk.modelbase.BaseResp; | 23 | import com.tencent.mm.opensdk.modelbase.BaseResp; |
cloud/share/src/main/AndroidManifest.xml renamed to cloud/third_tool/src/main/AndroidManifest.xml
cloud/third_tool/src/main/java/com/cnlive/login/action/UserThirdAction.java
0 → 100644
| 1 | +package com.cnlive.login.action; | ||
| 2 | + | ||
| 3 | +import android.accounts.Account; | ||
| 4 | +import android.content.Context; | ||
| 5 | +import android.text.TextUtils; | ||
| 6 | + | ||
| 7 | +import com.cnlive.cloud.user.auth.UserService; | ||
| 8 | +import com.cnlive.cloud.user.model.CNLiveUserInfo; | ||
| 9 | +import com.cnlive.core.network.HttpConn; | ||
| 10 | +import com.cnlive.core.network.NetCallBack; | ||
| 11 | +import com.cnlive.core.network.model.BaseResult; | ||
| 12 | +import com.cnlive.core.network.model.UserData; | ||
| 13 | + | ||
| 14 | +import io.reactivex.Observable; | ||
| 15 | + | ||
| 16 | +//import com.cnlive.strike.user.model.CNLiveUserInfo; | ||
| 17 | + | ||
| 18 | +/** | ||
| 19 | + * created by hanyayun | ||
| 20 | + * on 2019/12/4 | ||
| 21 | + */ | ||
| 22 | +public class UserThirdAction { | ||
| 23 | + | ||
| 24 | + | ||
| 25 | + private static final int MAX_USER_COUNT = 1; | ||
| 26 | + | ||
| 27 | + public static void otherLogin(Context context, String thirdPartyPlat, String thirdPartyId, CallBack callBack) { | ||
| 28 | + | ||
| 29 | + HttpConn.action(UserThirdUtilAction.otherLogin(context, thirdPartyPlat, thirdPartyId), new NetCallBack<BaseResult<UserData>>() { | ||
| 30 | + @Override | ||
| 31 | + public void onRequestState(int state) { | ||
| 32 | + if (null != callBack) { | ||
| 33 | + callBack.callback(state, "", null); | ||
| 34 | + } | ||
| 35 | + } | ||
| 36 | + | ||
| 37 | + @Override | ||
| 38 | + public void onSuccess(BaseResult<UserData> data) { | ||
| 39 | + loginAppAction(data, context, "", "", true, callBack); | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + @Override | ||
| 43 | + public void onFailure(String errCode, String errMsg, Exception e) { | ||
| 44 | + if (null != callBack) { | ||
| 45 | + callBack.callback(Integer.parseInt(errCode), errMsg, null); | ||
| 46 | + } | ||
| 47 | + } | ||
| 48 | + }); | ||
| 49 | + } | ||
| 50 | + | ||
| 51 | + | ||
| 52 | + public static void otherLoginBindMobile(Context context, String phone, String countryCode, String ems, | ||
| 53 | + String thirdPartyPlat, String thirdPartyId, String nickName, String gender, | ||
| 54 | + String location, String faceUrl, CallBack callBack) { | ||
| 55 | + | ||
| 56 | + HttpConn.action(UserThirdUtilAction.otherLoginBindMobile(context, phone, countryCode, ems, | ||
| 57 | + thirdPartyPlat, thirdPartyId, nickName, gender, location, faceUrl), new NetCallBack<BaseResult<UserData>>() { | ||
| 58 | + @Override | ||
| 59 | + public void onRequestState(int state) { | ||
| 60 | + if (null != callBack) { | ||
| 61 | + callBack.callback(state, "", null); | ||
| 62 | + } | ||
| 63 | + } | ||
| 64 | + | ||
| 65 | + @Override | ||
| 66 | + public void onSuccess(BaseResult<UserData> data) { | ||
| 67 | + loginAppAction(data,context, "", "", true, callBack); | ||
| 68 | + } | ||
| 69 | + | ||
| 70 | + @Override | ||
| 71 | + public void onFailure(String errCode, String errMsg, Exception e) { | ||
| 72 | + | ||
| 73 | + } | ||
| 74 | + }); | ||
| 75 | + } | ||
| 76 | + | ||
| 77 | + | ||
| 78 | + private static Observable<CNLiveUserInfo> loginAppAction(BaseResult<UserData> data, Context context, String userName, String userPassword, boolean otherLogin, CallBack callBack) { | ||
| 79 | + CNLiveUserInfo userinfo = null; | ||
| 80 | + if (null == data || null == data.getData()) { | ||
| 81 | + if (null != callBack) { | ||
| 82 | + callBack.callback(-5, "获取账户信息失败 请重试.", null); | ||
| 83 | + } | ||
| 84 | + } else if (TextUtils.isEmpty(data.getData().getMobile())) { | ||
| 85 | + callBack.callback(-5, "绑定手机号已失效..", null); | ||
| 86 | + } else { | ||
| 87 | + //更新登录用户信息 | ||
| 88 | + UserService userService = UserService.getInstance(context); | ||
| 89 | + userService.loginAppAccount( | ||
| 90 | + otherLogin ? data.getData().getMobile() : userName, | ||
| 91 | + otherLogin ? data.getData().getMobile() : userPassword, | ||
| 92 | + data.getData()); | ||
| 93 | + //保留近期登录用户 | ||
| 94 | + Account[] accounts = userService.getUserList(); | ||
| 95 | + userinfo = userService.getAppAccount(); | ||
| 96 | + if (accounts.length <= MAX_USER_COUNT) { | ||
| 97 | + callBack.callback(0, "", userinfo); | ||
| 98 | + } else { | ||
| 99 | + CNLiveUserInfo finalUserinfo = userinfo; | ||
| 100 | + userService.removeUser(accounts[0], future -> callBack.callback(0, "", finalUserinfo)); | ||
| 101 | + } | ||
| 102 | + } | ||
| 103 | + return Observable.just(userinfo); | ||
| 104 | + } | ||
| 105 | + | ||
| 106 | + | ||
| 107 | + public interface CallBack { | ||
| 108 | + void callback(int state, String msg, Object object); | ||
| 109 | + } | ||
| 110 | +} |
cloud/third_tool/src/main/java/com/cnlive/login/action/UserThirdUtilAction.java
0 → 100644
| 1 | +package com.cnlive.login.action; | ||
| 2 | + | ||
| 3 | +import android.content.Context; | ||
| 4 | + | ||
| 5 | +import com.cnlive.core.libs.base.application.AppConfig; | ||
| 6 | +import com.cnlive.core.network.api.ApiBaseServiceOpen; | ||
| 7 | +import com.cnlive.core.network.model.BaseResult; | ||
| 8 | +import com.cnlive.core.network.model.UserData; | ||
| 9 | +import com.cnlive.core.network.request.BaseRequest; | ||
| 10 | + | ||
| 11 | +import java.util.HashMap; | ||
| 12 | +import java.util.Map; | ||
| 13 | + | ||
| 14 | +import io.reactivex.Observable; | ||
| 15 | + | ||
| 16 | +/** | ||
| 17 | + * created by hanyayun | ||
| 18 | + * on 2019/12/4 | ||
| 19 | + */ | ||
| 20 | +public class UserThirdUtilAction { | ||
| 21 | + | ||
| 22 | + /** | ||
| 23 | + * 其他平台账户登录 | ||
| 24 | + * | ||
| 25 | + * @param context | ||
| 26 | + * @param thirdPartyPlat 平台类型 1:sina 2:qq 3:weixin 4:renren | ||
| 27 | + * @param thirdPartyId 第三方用户ID | ||
| 28 | + * [qq: 建议使用openid, wx: 建议使用unionid, sina: 建议使用idstr]; | ||
| 29 | + * 注意:同一用户在登录Sp下不同app时,thirdPartyId必须相同 | ||
| 30 | + */ | ||
| 31 | + public static Observable<BaseResult<UserData>> otherLogin(Context context, String thirdPartyPlat, String thirdPartyId) { | ||
| 32 | + | ||
| 33 | + Map<String, String> requestMap = new HashMap<>(); | ||
| 34 | + requestMap.put("appId", AppConfig.getAppId()); | ||
| 35 | + requestMap.put("thirdPartyPlat", thirdPartyPlat); | ||
| 36 | + requestMap.put("thirdPartyId", thirdPartyId); | ||
| 37 | + requestMap.put("frmId", AppConfig.getAppChannel()); | ||
| 38 | + requestMap.put("clientPlat", "a"); | ||
| 39 | + return BaseRequest.init().service(ApiBaseServiceOpen.class).loginIn3rdForWJJ(requestMap); | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + /** | ||
| 43 | + * 其他平台账户版定手机号并登录 | ||
| 44 | + * | ||
| 45 | + * @param context | ||
| 46 | + * @param thirdPartyPlat 平台类型 1:sina 2:qq 3:weixin 4:renren | ||
| 47 | + * @param thirdPartyId 第三方用户ID | ||
| 48 | + * [qq: 建议使用openid, wx: 建议使用unionid, sina: 建议使用idstr]; | ||
| 49 | + * 注意:同一用户在登录Sp下不同app时,thirdPartyId必须相同 | ||
| 50 | + */ | ||
| 51 | + | ||
| 52 | + | ||
| 53 | + public static Observable<BaseResult<UserData>> otherLoginBindMobile(Context context, | ||
| 54 | + String phone, | ||
| 55 | + String countryCode, | ||
| 56 | + String ems, | ||
| 57 | + String thirdPartyPlat, | ||
| 58 | + String thirdPartyId, | ||
| 59 | + String nickName, | ||
| 60 | + String gender, | ||
| 61 | + String location, | ||
| 62 | + String faceUrl) { | ||
| 63 | + Map<String, String> requestMap = new HashMap<>(); | ||
| 64 | + | ||
| 65 | + requestMap.put("frmId", AppConfig.getAppChannel()); | ||
| 66 | + requestMap.put("clientPlat", "a"); | ||
| 67 | + requestMap.put("uuid", AppConfig.getAppUUID()); | ||
| 68 | + | ||
| 69 | + requestMap.put("appId", AppConfig.getAppId()); | ||
| 70 | + requestMap.put("mobile", phone); | ||
| 71 | + requestMap.put("countryCode", countryCode); | ||
| 72 | + requestMap.put("verificationCode", ems); | ||
| 73 | + | ||
| 74 | + requestMap.put("thirdPartyPlat", thirdPartyPlat); | ||
| 75 | + requestMap.put("thirdPartyId", thirdPartyId); | ||
| 76 | + requestMap.put("nickName", nickName); | ||
| 77 | + requestMap.put("gender", gender); | ||
| 78 | + requestMap.put("location", location); | ||
| 79 | + requestMap.put("faceUrl", faceUrl); | ||
| 80 | + | ||
| 81 | + return BaseRequest.init().service(ApiBaseServiceOpen.class).loginIn3rdAndMobileForWJJ(requestMap); | ||
| 82 | + } | ||
| 83 | +} |
cloud/third_tool/src/main/java/com/cnlive/login/model/ThirdLoginInfo.java
0 → 100644
| 1 | +package com.cnlive.login.model; | ||
| 2 | + | ||
| 3 | + | ||
| 4 | +import com.cnlive.cloud.user.frame.data.OtherUserInfo; | ||
| 5 | + | ||
| 6 | +/** | ||
| 7 | + * 作者: 吴奎庆 | ||
| 8 | + * <p> | ||
| 9 | + * 时间: 2019/9/19 | ||
| 10 | + * <p> | ||
| 11 | + * 简介: | ||
| 12 | + */ | ||
| 13 | +public class ThirdLoginInfo { | ||
| 14 | + //类型 1 成功 2失败 | ||
| 15 | + private int type; | ||
| 16 | + //错误信息 | ||
| 17 | + private String message; | ||
| 18 | + //登陆信息 | ||
| 19 | + OtherUserInfo otherUserInfo; | ||
| 20 | + | ||
| 21 | + public ThirdLoginInfo() { | ||
| 22 | + } | ||
| 23 | + | ||
| 24 | + public ThirdLoginInfo(int type, String message, OtherUserInfo otherUserInfo) { | ||
| 25 | + this.type = type; | ||
| 26 | + this.message = message; | ||
| 27 | + this.otherUserInfo = otherUserInfo; | ||
| 28 | + } | ||
| 29 | + | ||
| 30 | + public int getType() { | ||
| 31 | + return type; | ||
| 32 | + } | ||
| 33 | + | ||
| 34 | + public void setType(int type) { | ||
| 35 | + this.type = type; | ||
| 36 | + } | ||
| 37 | + | ||
| 38 | + public String getMessage() { | ||
| 39 | + return message; | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + public void setMessage(String message) { | ||
| 43 | + this.message = message; | ||
| 44 | + } | ||
| 45 | + | ||
| 46 | + public OtherUserInfo getOtherUserInfo() { | ||
| 47 | + return otherUserInfo; | ||
| 48 | + } | ||
| 49 | + | ||
| 50 | + public void setOtherUserInfo(OtherUserInfo otherUserInfo) { | ||
| 51 | + this.otherUserInfo = otherUserInfo; | ||
| 52 | + } | ||
| 53 | +} |
cloud/third_tool/src/main/java/com/cnlive/login/observer/ThirdLoginObservable.java
0 → 100644
| 1 | +package com.cnlive.login.observer; | ||
| 2 | + | ||
| 3 | + | ||
| 4 | +import com.cnlive.login.model.ThirdLoginInfo; | ||
| 5 | + | ||
| 6 | +import java.util.Observable; | ||
| 7 | + | ||
| 8 | +/** | ||
| 9 | + * 作者: 吴奎庆 | ||
| 10 | + * <p> | ||
| 11 | + * 时间: 2019/9/19 | ||
| 12 | + * <p> | ||
| 13 | + * 简介: | ||
| 14 | + */ | ||
| 15 | +public class ThirdLoginObservable extends Observable { | ||
| 16 | + | ||
| 17 | + private static ThirdLoginObservable instance; | ||
| 18 | + | ||
| 19 | + public static ThirdLoginObservable getInstance() { | ||
| 20 | + synchronized (ThirdLoginObservable.class) { | ||
| 21 | + if (instance == null) { | ||
| 22 | + instance = new ThirdLoginObservable(); | ||
| 23 | + } | ||
| 24 | + } | ||
| 25 | + return instance; | ||
| 26 | + } | ||
| 27 | + | ||
| 28 | + public void update(ThirdLoginInfo userInfo){ | ||
| 29 | + setChanged(); | ||
| 30 | + notifyObservers(userInfo); | ||
| 31 | + } | ||
| 32 | +} |
cloud/share/src/main/java/com/cnlive/share/observable/WechatLoginObservable.java renamed to cloud/third_tool/src/main/java/com/cnlive/login/observer/WechatLoginObservable.java
cloud/third_tool/src/main/java/com/cnlive/login/utils/ThirdLoginUtil.java
0 → 100644
| 1 | +package com.cnlive.login.utils; | ||
| 2 | + | ||
| 3 | +import android.content.Context; | ||
| 4 | +import android.text.TextUtils; | ||
| 5 | + | ||
| 6 | +import com.cnlive.cloud.user.frame.data.OtherUserInfo; | ||
| 7 | +import com.cnlive.login.model.ThirdLoginInfo; | ||
| 8 | +import com.cnlive.login.observer.ThirdLoginObservable; | ||
| 9 | +import com.sina.weibo.sdk.auth.Oauth2AccessToken; | ||
| 10 | +import com.sina.weibo.sdk.net.HttpManager; | ||
| 11 | +import com.sina.weibo.sdk.net.WeiboParameters; | ||
| 12 | +import com.tencent.connect.UserInfo; | ||
| 13 | +import com.tencent.tauth.IUiListener; | ||
| 14 | +import com.tencent.tauth.Tencent; | ||
| 15 | +import com.tencent.tauth.UiError; | ||
| 16 | + | ||
| 17 | +import org.json.JSONException; | ||
| 18 | +import org.json.JSONObject; | ||
| 19 | + | ||
| 20 | +import io.reactivex.Observable; | ||
| 21 | +import io.reactivex.ObservableEmitter; | ||
| 22 | +import io.reactivex.ObservableOnSubscribe; | ||
| 23 | +import io.reactivex.Observer; | ||
| 24 | +import io.reactivex.android.schedulers.AndroidSchedulers; | ||
| 25 | +import io.reactivex.disposables.Disposable; | ||
| 26 | +import io.reactivex.schedulers.Schedulers; | ||
| 27 | + | ||
| 28 | +import static com.tencent.connect.common.Constants.PARAM_ACCESS_TOKEN; | ||
| 29 | +import static com.tencent.connect.common.Constants.PARAM_EXPIRES_IN; | ||
| 30 | +import static com.tencent.open.SocialConstants.PARAM_OPEN_ID; | ||
| 31 | + | ||
| 32 | +/** | ||
| 33 | + * 作者: 吴奎庆 | ||
| 34 | + * <p> | ||
| 35 | + * 时间: 2019/9/19 | ||
| 36 | + * <p> | ||
| 37 | + * 简介: 三方登陆的工具类 | ||
| 38 | + */ | ||
| 39 | +public class ThirdLoginUtil { | ||
| 40 | + /** | ||
| 41 | + * 获取微博信息 | ||
| 42 | + * | ||
| 43 | + * @param context | ||
| 44 | + * @param oauth2AccessToken | ||
| 45 | + */ | ||
| 46 | + public static void getWeiBoInfo(Context context, Oauth2AccessToken oauth2AccessToken) { | ||
| 47 | + | ||
| 48 | + Oauth2AccessToken mAccessToken = oauth2AccessToken; | ||
| 49 | + //从这里获取用户输入的 电话号码信息 | ||
| 50 | + if (mAccessToken.isSessionValid()) { | ||
| 51 | + // 显示 Token | ||
| 52 | + Observable.create(new ObservableOnSubscribe<String>() { | ||
| 53 | + @Override | ||
| 54 | + public void subscribe(ObservableEmitter<String> emitter) throws Exception { | ||
| 55 | + | ||
| 56 | + WeiboParameters parameters = new WeiboParameters("3884700821"); | ||
| 57 | + parameters.put("access_token", oauth2AccessToken.getToken()); | ||
| 58 | + parameters.put("uid", oauth2AccessToken.getUid()); | ||
| 59 | + String message = HttpManager.openUrl(context, "https://api.weibo.com/2/users/show.json", "GET", parameters); | ||
| 60 | + emitter.onNext(message); | ||
| 61 | + } | ||
| 62 | + }).subscribeOn(Schedulers.io()) | ||
| 63 | + .observeOn(AndroidSchedulers.mainThread()) | ||
| 64 | + .subscribe(new Observer<String>() { | ||
| 65 | + @Override | ||
| 66 | + public void onSubscribe(Disposable d) { | ||
| 67 | + | ||
| 68 | + } | ||
| 69 | + | ||
| 70 | + @Override | ||
| 71 | + public void onNext(String message) { | ||
| 72 | + try { | ||
| 73 | + | ||
| 74 | + JSONObject jsonObject = new JSONObject(message); | ||
| 75 | + if (jsonObject == null) return; | ||
| 76 | + String id = jsonObject.getString("idstr"); | ||
| 77 | + String name = jsonObject.getString("name"); | ||
| 78 | + String urlface = jsonObject.getString("avatar_large"); | ||
| 79 | + String location = jsonObject.getString("location"); | ||
| 80 | + String gender = jsonObject.getString("gender"); | ||
| 81 | + if (TextUtils.isEmpty(id)) return; | ||
| 82 | + | ||
| 83 | + OtherUserInfo userInfo = new OtherUserInfo(); | ||
| 84 | + userInfo.setFaceUrl(urlface); | ||
| 85 | + userInfo.setGender(gender); | ||
| 86 | + userInfo.setNickName(name); | ||
| 87 | + userInfo.setLocation(location); | ||
| 88 | + userInfo.setThirdPartyId(id); | ||
| 89 | + userInfo.setLoginType("1"); | ||
| 90 | + | ||
| 91 | + ThirdLoginInfo thirdLoginInfo = new ThirdLoginInfo(); | ||
| 92 | + thirdLoginInfo.setType(1); | ||
| 93 | + thirdLoginInfo.setOtherUserInfo(userInfo); | ||
| 94 | + ThirdLoginObservable.getInstance().update(thirdLoginInfo); | ||
| 95 | + | ||
| 96 | + } catch (Exception e) { | ||
| 97 | + ThirdLoginObservable.getInstance().update(new ThirdLoginInfo(2, "登陆失败", null)); | ||
| 98 | + } | ||
| 99 | + } | ||
| 100 | + | ||
| 101 | + @Override | ||
| 102 | + public void onError(Throwable e) { | ||
| 103 | + ThirdLoginObservable.getInstance().update(new ThirdLoginInfo(2, "登陆失败", null)); | ||
| 104 | + } | ||
| 105 | + | ||
| 106 | + @Override | ||
| 107 | + public void onComplete() { | ||
| 108 | + | ||
| 109 | + } | ||
| 110 | + }); | ||
| 111 | + } else { | ||
| 112 | + // 以下几种情况,您会收到 Code: | ||
| 113 | + // 1. 当您未在平台上注册的应用程序的包名与签名时; | ||
| 114 | + // 2. 当您注册的应用程序包名与签名不正确时; | ||
| 115 | + // 3. 当您在平台上注册的包名和签名与您当前测试的应用的包名和签名不匹配时。 | ||
| 116 | + String code = oauth2AccessToken.getBundle().getString("code"); | ||
| 117 | + String message = "null"; | ||
| 118 | + if (!TextUtils.isEmpty(code)) { | ||
| 119 | + message = message + "\nObtained the code: " + code; | ||
| 120 | + } | ||
| 121 | + ThirdLoginObservable.getInstance().update(new ThirdLoginInfo(2, "登陆失败", null)); | ||
| 122 | + } | ||
| 123 | + | ||
| 124 | + } | ||
| 125 | + | ||
| 126 | + | ||
| 127 | + public static void getQQInfo(Context context, Tencent mTencent, Object obj) { | ||
| 128 | + JSONObject jsonObject = (JSONObject) obj; | ||
| 129 | + if (jsonObject != null) { | ||
| 130 | + try { | ||
| 131 | + int ret = jsonObject.getInt("ret"); | ||
| 132 | + if (ret == 0) { | ||
| 133 | + //此处登录授权成功 | ||
| 134 | + String openId = jsonObject.getString(PARAM_OPEN_ID); | ||
| 135 | + String access_token = jsonObject.getString(PARAM_ACCESS_TOKEN); | ||
| 136 | + String expires = jsonObject.getString(PARAM_EXPIRES_IN); | ||
| 137 | + mTencent.setOpenId(openId); | ||
| 138 | + mTencent.setAccessToken(access_token, expires); | ||
| 139 | + //获取用户信息 | ||
| 140 | + getUserInfo(context, mTencent, openId); | ||
| 141 | + } else { | ||
| 142 | + ThirdLoginObservable.getInstance().update(new ThirdLoginInfo(2, "登陆失败", null)); | ||
| 143 | + } | ||
| 144 | + } catch (JSONException e) { | ||
| 145 | + e.printStackTrace(); | ||
| 146 | + } | ||
| 147 | + } | ||
| 148 | + } | ||
| 149 | + | ||
| 150 | + | ||
| 151 | + private static void getUserInfo(Context context, Tencent mTencent, String openId) { | ||
| 152 | + UserInfo info = new UserInfo(context, mTencent.getQQToken()); | ||
| 153 | + info.getUserInfo(new IUiListener() { | ||
| 154 | + @Override | ||
| 155 | + public void onComplete(Object value) { | ||
| 156 | + JSONObject jsonObject = (JSONObject) value; | ||
| 157 | + if (jsonObject == null) return; | ||
| 158 | + | ||
| 159 | + try { | ||
| 160 | + String name = jsonObject.getString("nickname"); | ||
| 161 | + String urlface = jsonObject.getString("figureurl_qq"); | ||
| 162 | + String gender = jsonObject.getString("gender"); | ||
| 163 | + String province = jsonObject.getString("province"); | ||
| 164 | + String city = jsonObject.getString("city"); | ||
| 165 | + | ||
| 166 | + if (TextUtils.isEmpty(openId)) return; | ||
| 167 | + | ||
| 168 | + OtherUserInfo otherUserInfo = new OtherUserInfo(); | ||
| 169 | + otherUserInfo.setFaceUrl(urlface); | ||
| 170 | + | ||
| 171 | + otherUserInfo.setNickName(name); | ||
| 172 | + if (TextUtils.isEmpty(city)) { | ||
| 173 | + otherUserInfo.setLocation(province); | ||
| 174 | + } else { | ||
| 175 | + otherUserInfo.setLocation(city); | ||
| 176 | + } | ||
| 177 | + | ||
| 178 | + if ("男".equals(gender)) { | ||
| 179 | + otherUserInfo.setGender("m"); | ||
| 180 | + } else if ("女".equals(gender)) { | ||
| 181 | + otherUserInfo.setGender("f"); | ||
| 182 | + } else { | ||
| 183 | + otherUserInfo.setGender("n"); | ||
| 184 | + } | ||
| 185 | + | ||
| 186 | + otherUserInfo.setThirdPartyId(openId); | ||
| 187 | + otherUserInfo.setLoginType("2"); | ||
| 188 | + ThirdLoginInfo thirdLoginInfo = new ThirdLoginInfo(); | ||
| 189 | + thirdLoginInfo.setType(1); | ||
| 190 | + thirdLoginInfo.setOtherUserInfo(otherUserInfo); | ||
| 191 | + ThirdLoginObservable.getInstance().update(thirdLoginInfo); | ||
| 192 | + | ||
| 193 | + } catch (JSONException e) { | ||
| 194 | + ThirdLoginObservable.getInstance().update(new ThirdLoginInfo(2, "登陆失败", null)); | ||
| 195 | + } | ||
| 196 | + } | ||
| 197 | + | ||
| 198 | + @Override | ||
| 199 | + public void onError(UiError uiError) { | ||
| 200 | + ThirdLoginObservable.getInstance().update(new ThirdLoginInfo(2, "登陆失败", null)); | ||
| 201 | + } | ||
| 202 | + | ||
| 203 | + @Override | ||
| 204 | + public void onCancel() { | ||
| 205 | + } | ||
| 206 | + }); | ||
| 207 | + } | ||
| 208 | + | ||
| 209 | +} |
cloud/share/src/main/java/com/cnlive/share/QQListener.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/QQListener.java
cloud/share/src/main/java/com/cnlive/share/adapter/DataBindingAdapter.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/adapter/DataBindingAdapter.java
cloud/share/src/main/java/com/cnlive/share/api/ApiShareService.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/api/ApiShareService.java
cloud/share/src/main/java/com/cnlive/share/arouter/ARouterUtil.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/arouter/ARouterUtil.java
cloud/share/src/main/java/com/cnlive/share/data/FullVideoShareItemData.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/data/FullVideoShareItemData.java
cloud/share/src/main/java/com/cnlive/share/data/IconInfo.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/data/IconInfo.java
cloud/share/src/main/java/com/cnlive/share/data/ShareInfo.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/data/ShareInfo.java
cloud/share/src/main/java/com/cnlive/share/data/ShareIntegralTypeInfo.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/data/ShareIntegralTypeInfo.java
cloud/share/src/main/java/com/cnlive/share/data/WeChatInfo.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/data/WeChatInfo.java
cloud/share/src/main/java/com/cnlive/share/model/ShareReleaseInfoUtil.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/model/ShareReleaseInfoUtil.java
cloud/share/src/main/java/com/cnlive/share/model/ShareStateInfo.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/model/ShareStateInfo.java
cloud/share/src/main/java/com/cnlive/share/model/ShortLinkInfo.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/model/ShortLinkInfo.java
cloud/share/src/main/java/com/cnlive/share/observable/ShareClickObservable.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/observable/ShareClickObservable.java
cloud/share/src/main/java/com/cnlive/share/observable/ShareStateObservable.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/observable/ShareStateObservable.java
cloud/share/src/main/java/com/cnlive/share/observable/ShareWjjStateObservable.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/observable/ShareWjjStateObservable.java
cloud/share/src/main/java/com/cnlive/share/observable/WechatShareObservable.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/observable/WechatShareObservable.java
cloud/share/src/main/java/com/cnlive/share/ui/FullVideoShareView.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/ui/FullVideoShareView.java
cloud/share/src/main/java/com/cnlive/share/ui/ShareActivity.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/ui/ShareActivity.java
cloud/share/src/main/java/com/cnlive/share/ui/ShareDialogListAdapter.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/ui/ShareDialogListAdapter.java
cloud/share/src/main/java/com/cnlive/share/ui/ShareImgActivity.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/ui/ShareImgActivity.java
cloud/share/src/main/java/com/cnlive/share/ui/WechatAppletActivity.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/ui/WechatAppletActivity.java
cloud/share/src/main/java/com/cnlive/share/ui/dialog/ShareDialog.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/ui/dialog/ShareDialog.java
cloud/share/src/main/java/com/cnlive/share/util/BindingAdapterUtil.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/util/BindingAdapterUtil.java
cloud/share/src/main/java/com/cnlive/share/util/DateTimeUtil.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/util/DateTimeUtil.java
cloud/share/src/main/java/com/cnlive/share/util/OkHttpUtils.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/util/OkHttpUtils.java
cloud/share/src/main/java/com/cnlive/share/util/ShareOtherUtil.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/util/ShareOtherUtil.java
cloud/share/src/main/java/com/cnlive/share/util/ShareUtils.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/util/ShareUtils.java
| @@ -127,6 +127,7 @@ public class ShareUtils { | @@ -127,6 +127,7 @@ public class ShareUtils { | ||
| 127 | } | 127 | } |
| 128 | String url = Util.processUrlData(shareInfo.getUrl(), mContext, false); | 128 | String url = Util.processUrlData(shareInfo.getUrl(), mContext, false); |
| 129 | WXWebpageObject webpage = new WXWebpageObject(); | 129 | WXWebpageObject webpage = new WXWebpageObject(); |
| 130 | + //TODO 上传maven考虑正式版测试版 | ||
| 130 | IWXAPI api = WXAPIFactory.createWXAPI(mContext, AppConfig.getWechatAppid()); | 131 | IWXAPI api = WXAPIFactory.createWXAPI(mContext, AppConfig.getWechatAppid()); |
| 131 | webpage.webpageUrl = url; | 132 | webpage.webpageUrl = url; |
| 132 | WXMediaMessage msg = new WXMediaMessage(webpage); | 133 | WXMediaMessage msg = new WXMediaMessage(webpage); |
cloud/share/src/main/java/com/cnlive/share/util/Util.java renamed to cloud/third_tool/src/main/java/com/cnlive/share/util/Util.java
cloud/share/src/main/res/anim/share_activity_in.xml renamed to cloud/third_tool/src/main/res/anim/share_activity_in.xml
cloud/share/src/main/res/anim/share_activity_out.xml renamed to cloud/third_tool/src/main/res/anim/share_activity_out.xml
cloud/share/src/main/res/anim/share_slide_in_bottom.xml renamed to cloud/third_tool/src/main/res/anim/share_slide_in_bottom.xml
cloud/share/src/main/res/anim/share_slide_out_bottom.xml renamed to cloud/third_tool/src/main/res/anim/share_slide_out_bottom.xml
cloud/share/src/main/res/drawable-hdpi/browser.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/browser.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/download_album.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/download_album.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/drd_quxiao.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/drd_quxiao.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/pengyouquan.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/pengyouquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/qq.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/qq.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/report_icon.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/report_icon.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/shenghuoquan.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/shenghuoquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/ssdk_oks_ptr_ptr.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/ssdk_oks_ptr_ptr.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/wechat.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/wechat.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/weibo.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/weibo.webp
No preview for this file type
cloud/share/src/main/res/drawable-hdpi/wjjhaoyou.webp renamed to cloud/third_tool/src/main/res/drawable-hdpi/wjjhaoyou.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/browser.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/browser.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/download_album.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/download_album.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/drd_pengyouquan.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/drd_pengyouquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/drd_qq.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/drd_qq.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/drd_quxiao.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/drd_quxiao.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/drd_weixin.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/drd_weixin.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/pengyouquan.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/pengyouquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/qq.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/qq.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/report_icon.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/report_icon.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/share_logo_share_module.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/share_logo_share_module.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/shenghuoquan.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/shenghuoquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/wechat.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/wechat.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/weibo.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/weibo.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/white.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/white.webp
No preview for this file type
cloud/share/src/main/res/drawable-xhdpi/wjjhaoyou.webp renamed to cloud/third_tool/src/main/res/drawable-xhdpi/wjjhaoyou.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/browser.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/browser.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/download_album.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/download_album.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/pengyouquan.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/pengyouquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/qq.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/qq.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/report_icon.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/report_icon.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/shenghuoquan.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/shenghuoquan.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/wechat.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/wechat.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/weibo.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/weibo.webp
No preview for this file type
cloud/share/src/main/res/drawable-xxhdpi/wjjhaoyou.webp renamed to cloud/third_tool/src/main/res/drawable-xxhdpi/wjjhaoyou.webp
No preview for this file type
cloud/share/src/main/res/drawable/ssdk_oks_classic_platform_cell_back.xml renamed to cloud/third_tool/src/main/res/drawable/ssdk_oks_classic_platform_cell_back.xml
cloud/share/src/main/res/drawable/ssdk_oks_classic_progressbar.xml renamed to cloud/third_tool/src/main/res/drawable/ssdk_oks_classic_progressbar.xml
cloud/share/src/main/res/layout/activity_share_dialog.xml renamed to cloud/third_tool/src/main/res/layout/activity_share_dialog.xml
cloud/share/src/main/res/layout/activity_share_img.xml renamed to cloud/third_tool/src/main/res/layout/activity_share_img.xml
cloud/share/src/main/res/layout/layout_full_video_share.xml renamed to cloud/third_tool/src/main/res/layout/layout_full_video_share.xml
cloud/share/src/main/res/layout/layout_share_dialog.xml renamed to cloud/third_tool/src/main/res/layout/layout_share_dialog.xml
cloud/share/src/main/res/layout/list_item_full_video_share.xml renamed to cloud/third_tool/src/main/res/layout/list_item_full_video_share.xml
cloud/share/src/main/res/layout/share_dialog_item.xml renamed to cloud/third_tool/src/main/res/layout/share_dialog_item.xml
cloud/share/src/main/res/values-en/ssdk_country_arrays.xml renamed to cloud/third_tool/src/main/res/values-en/ssdk_country_arrays.xml
cloud/share/src/main/res/values-en/ssdk_oks_strings.xml renamed to cloud/third_tool/src/main/res/values-en/ssdk_oks_strings.xml
cloud/share/src/main/res/values-en/ssdk_strings.xml renamed to cloud/third_tool/src/main/res/values-en/ssdk_strings.xml
cloud/share/src/main/res/values/colors.xml renamed to cloud/third_tool/src/main/res/values/colors.xml
cloud/share/src/main/res/values/ssdk_country_arrays.xml renamed to cloud/third_tool/src/main/res/values/ssdk_country_arrays.xml
cloud/share/src/main/res/values/ssdk_instapaper_strings.xml renamed to cloud/third_tool/src/main/res/values/ssdk_instapaper_strings.xml
cloud/share/src/main/res/values/ssdk_oks_color_drawables.xml renamed to cloud/third_tool/src/main/res/values/ssdk_oks_color_drawables.xml
cloud/share/src/main/res/values/ssdk_oks_strings.xml renamed to cloud/third_tool/src/main/res/values/ssdk_oks_strings.xml
cloud/share/src/main/res/values/ssdk_strings.xml renamed to cloud/third_tool/src/main/res/values/ssdk_strings.xml
cloud/share/src/main/res/values/strings.xml renamed to cloud/third_tool/src/main/res/values/strings.xml
cloud/share/src/main/res/values/styles.xml renamed to cloud/third_tool/src/main/res/values/styles.xml
cloud/share/src/release/AndroidManifest.xml renamed to cloud/third_tool/src/release/AndroidManifest.xml
cloud/share/src/release/java/com/cnlive/strike/wxapi/WXEntryActivity.java renamed to cloud/third_tool/src/release/java/com/cnlive/strike/wxapi/WXEntryActivity.java
cloud/user/build.gradle
| @@ -49,5 +49,6 @@ dependencies { | @@ -49,5 +49,6 @@ dependencies { | ||
| 49 | implementation "com.cnlive.libs:emoj:$rootProject.libEmoj" | 49 | implementation "com.cnlive.libs:emoj:$rootProject.libEmoj" |
| 50 | //图片选择器 | 50 | //图片选择器 |
| 51 | implementation "com.cnlive.libs:mediapicker:$rootProject.libMediaPicker" | 51 | implementation "com.cnlive.libs:mediapicker:$rootProject.libMediaPicker" |
| 52 | +// implementation project(path: ':cloud:third_tool') | ||
| 52 | 53 | ||
| 53 | } | 54 | } |
cloud/user/src/main/java/com/cnlive/cloud/user/frame/presenter/QuickLoginPresenter.java
| @@ -4,12 +4,6 @@ import android.accounts.Account; | @@ -4,12 +4,6 @@ import android.accounts.Account; | ||
| 4 | import android.content.Context; | 4 | import android.content.Context; |
| 5 | import android.text.TextUtils; | 5 | import android.text.TextUtils; |
| 6 | 6 | ||
| 7 | -import com.cnlive.core.libs.base.application.AppConfig; | ||
| 8 | -import com.cnlive.core.libs.base.frame.presenter.BasePresenter; | ||
| 9 | -import com.cnlive.core.network.model.BaseResult; | ||
| 10 | -import com.cnlive.core.network.HttpConn; | ||
| 11 | -import com.cnlive.core.network.NetCallBack; | ||
| 12 | -import com.cnlive.core.libs.base.util.TimerWaitUtil; | ||
| 13 | import com.cnlive.cloud.user.R; | 7 | import com.cnlive.cloud.user.R; |
| 14 | import com.cnlive.cloud.user.UserUtilAction; | 8 | import com.cnlive.cloud.user.UserUtilAction; |
| 15 | import com.cnlive.cloud.user.auth.UserService; | 9 | import com.cnlive.cloud.user.auth.UserService; |
| @@ -21,6 +15,12 @@ import com.cnlive.cloud.user.router.user.UserAction; | @@ -21,6 +15,12 @@ import com.cnlive.cloud.user.router.user.UserAction; | ||
| 21 | import com.cnlive.cloud.user.ui.fragment.QuickLoginFragment; | 15 | import com.cnlive.cloud.user.ui.fragment.QuickLoginFragment; |
| 22 | import com.cnlive.cloud.user.util.RegexUtils; | 16 | import com.cnlive.cloud.user.util.RegexUtils; |
| 23 | import com.cnlive.cloud.user.util.TimeEvent; | 17 | import com.cnlive.cloud.user.util.TimeEvent; |
| 18 | +import com.cnlive.core.libs.base.application.AppConfig; | ||
| 19 | +import com.cnlive.core.libs.base.frame.presenter.BasePresenter; | ||
| 20 | +import com.cnlive.core.network.model.BaseResult; | ||
| 21 | +import com.cnlive.core.network.HttpConn; | ||
| 22 | +import com.cnlive.core.network.NetCallBack; | ||
| 23 | +import com.cnlive.core.libs.base.util.TimerWaitUtil; | ||
| 24 | 24 | ||
| 25 | import java.util.Arrays; | 25 | import java.util.Arrays; |
| 26 | import java.util.Collections; | 26 | import java.util.Collections; |
| @@ -114,7 +114,6 @@ public class QuickLoginPresenter extends BasePresenter<QuickLoginView> { | @@ -114,7 +114,6 @@ public class QuickLoginPresenter extends BasePresenter<QuickLoginView> { | ||
| 114 | @Override | 114 | @Override |
| 115 | public void onFailure(String errCode, String errMsg, Exception e) { | 115 | public void onFailure(String errCode, String errMsg, Exception e) { |
| 116 | ifViewAttached(view -> view.showToast(errMsg)); | 116 | ifViewAttached(view -> view.showToast(errMsg)); |
| 117 | - | ||
| 118 | } | 117 | } |
| 119 | }); | 118 | }); |
| 120 | } | 119 | } |
| @@ -154,14 +153,14 @@ public class QuickLoginPresenter extends BasePresenter<QuickLoginView> { | @@ -154,14 +153,14 @@ public class QuickLoginPresenter extends BasePresenter<QuickLoginView> { | ||
| 154 | // MobclickAgent.onProfileSignIn("CNLive", user.getUid()); | 153 | // MobclickAgent.onProfileSignIn("CNLive", user.getUid()); |
| 155 | //三方登陆不需要重新设置头像 otherUserInfo不为空表示三方登陆 | 154 | //三方登陆不需要重新设置头像 otherUserInfo不为空表示三方登陆 |
| 156 | if (otherUserInfo != null) { | 155 | if (otherUserInfo != null) { |
| 157 | - ifViewAttached(view -> view.showMainView()); | 156 | + ifViewAttached(view -> view.showMainView(true, true)); |
| 158 | } else { | 157 | } else { |
| 159 | - ifViewAttached(view -> view.showEditView()); | 158 | + ifViewAttached(view -> view.showEditView(false)); |
| 160 | } | 159 | } |
| 161 | } else { | 160 | } else { |
| 162 | //友盟账号登录统计,暂时只有平台登录,后续对接三方登录 | 161 | //友盟账号登录统计,暂时只有平台登录,后续对接三方登录 |
| 163 | // MobclickAgent.onProfileSignIn("CNLive", user.getUid()); | 162 | // MobclickAgent.onProfileSignIn("CNLive", user.getUid()); |
| 164 | - ifViewAttached(view -> view.showMainView()); | 163 | + ifViewAttached(view -> view.showMainView(false, false)); |
| 165 | //todo 测试首次用户 | 164 | //todo 测试首次用户 |
| 166 | // ifViewAttached(view -> view.showEditView(false)); | 165 | // ifViewAttached(view -> view.showEditView(false)); |
| 167 | } | 166 | } |
cloud/user/src/main/java/com/cnlive/cloud/user/frame/view/QuickLoginView.java
| @@ -16,10 +16,6 @@ import android.text.style.ForegroundColorSpan; | @@ -16,10 +16,6 @@ import android.text.style.ForegroundColorSpan; | ||
| 16 | import android.view.View; | 16 | import android.view.View; |
| 17 | 17 | ||
| 18 | import com.alibaba.android.arouter.launcher.ARouter; | 18 | import com.alibaba.android.arouter.launcher.ARouter; |
| 19 | -import com.cnlive.core.libs.base.application.AppConfig; | ||
| 20 | -import com.cnlive.core.libs.base.frame.view.BaseView; | ||
| 21 | -import com.cnlive.core.libs.base.util.AlertUtil; | ||
| 22 | -import com.cnlive.core.libs.base.util.DoublePressed; | ||
| 23 | import com.cnlive.cloud.user.R; | 19 | import com.cnlive.cloud.user.R; |
| 24 | import com.cnlive.cloud.user.frame.data.OtherUserInfo; | 20 | import com.cnlive.cloud.user.frame.data.OtherUserInfo; |
| 25 | import com.cnlive.cloud.user.model.LoginSuccessInfo; | 21 | import com.cnlive.cloud.user.model.LoginSuccessInfo; |
| @@ -28,8 +24,10 @@ import com.cnlive.cloud.user.sms.SmsVerifyCatcher; | @@ -28,8 +24,10 @@ import com.cnlive.cloud.user.sms.SmsVerifyCatcher; | ||
| 28 | import com.cnlive.cloud.user.ui.activity.FirstLoginActivity; | 24 | import com.cnlive.cloud.user.ui.activity.FirstLoginActivity; |
| 29 | import com.cnlive.cloud.user.ui.activity.LoginActivity; | 25 | import com.cnlive.cloud.user.ui.activity.LoginActivity; |
| 30 | import com.cnlive.cloud.user.ui.fragment.QuickLoginFragment; | 26 | import com.cnlive.cloud.user.ui.fragment.QuickLoginFragment; |
| 31 | -import com.cnlive.cloud.user.util.UserRouterHelper; | ||
| 32 | - | 27 | +import com.cnlive.core.libs.base.application.AppConfig; |
| 28 | +import com.cnlive.core.libs.base.frame.view.BaseView; | ||
| 29 | +import com.cnlive.core.libs.base.util.AlertUtil; | ||
| 30 | +import com.cnlive.core.libs.base.util.DoublePressed; | ||
| 33 | import java.util.regex.Matcher; | 31 | import java.util.regex.Matcher; |
| 34 | import java.util.regex.Pattern; | 32 | import java.util.regex.Pattern; |
| 35 | 33 | ||
| @@ -180,8 +178,14 @@ public class QuickLoginView extends BaseView { | @@ -180,8 +178,14 @@ public class QuickLoginView extends BaseView { | ||
| 180 | } | 178 | } |
| 181 | 179 | ||
| 182 | 180 | ||
| 183 | - public void showEditView() { | 181 | + public void showEditView(boolean isHasOtherUserInfo) { |
| 184 | if (getContext() == null) return; | 182 | if (getContext() == null) return; |
| 183 | + //设置跳转信息 | ||
| 184 | +// LoginSuccessInfo successInfo = new LoginSuccessInfo(); | ||
| 185 | +// successInfo.setTagMsg(TextUtils.isEmpty(fragment.tagMsg) ? "" : fragment.tagMsg); | ||
| 186 | +// successInfo.setClickAd(fragment.clickAd); | ||
| 187 | +// HelperUtil.isNewUser(fragment.getActivity(), successInfo, isHasOtherUserInfo); | ||
| 188 | + | ||
| 185 | Intent intent = new Intent(getContext(), FirstLoginActivity.class); | 189 | Intent intent = new Intent(getContext(), FirstLoginActivity.class); |
| 186 | intent.putExtra(LoginActivity.TAG_MSG, TextUtils.isEmpty(fragment.tagMsg) ? "" : fragment.tagMsg); | 190 | intent.putExtra(LoginActivity.TAG_MSG, TextUtils.isEmpty(fragment.tagMsg) ? "" : fragment.tagMsg); |
| 187 | intent.putExtra(LoginActivity.TAG_CLICK_AD, fragment.clickAd); | 191 | intent.putExtra(LoginActivity.TAG_CLICK_AD, fragment.clickAd); |
| @@ -189,7 +193,7 @@ public class QuickLoginView extends BaseView { | @@ -189,7 +193,7 @@ public class QuickLoginView extends BaseView { | ||
| 189 | getContext().finish(); | 193 | getContext().finish(); |
| 190 | } | 194 | } |
| 191 | 195 | ||
| 192 | - public void showMainView() { | 196 | + public void showMainView(boolean isNewUser, boolean isHasOtherUserInfo) { |
| 193 | if (getContext() == null) return; | 197 | if (getContext() == null) return; |
| 194 | //判断如果是因为token为空跳转到的登录页面则不需要跳转到MainActivity,直接关闭登录页面即可 | 198 | //判断如果是因为token为空跳转到的登录页面则不需要跳转到MainActivity,直接关闭登录页面即可 |
| 195 | if (fragment.fromTokenError) { | 199 | if (fragment.fromTokenError) { |
| @@ -201,14 +205,25 @@ public class QuickLoginView extends BaseView { | @@ -201,14 +205,25 @@ public class QuickLoginView extends BaseView { | ||
| 201 | successInfo.setType("login"); | 205 | successInfo.setType("login"); |
| 202 | successInfo.setUri(fragment.uri); | 206 | successInfo.setUri(fragment.uri); |
| 203 | successInfo.setClickAd(fragment.clickAd); | 207 | successInfo.setClickAd(fragment.clickAd); |
| 204 | - if (!TextUtils.isEmpty(fragment.tagUrl)) { | ||
| 205 | - successInfo.setTagUrl(fragment.tagUrl); | ||
| 206 | - } | ||
| 207 | successInfo.setTagShare(fragment.tagShare); | 208 | successInfo.setTagShare(fragment.tagShare); |
| 208 | - if (!TextUtils.isEmpty(fragment.tagMsg)) { | ||
| 209 | - successInfo.setClassifyTagMsg(fragment.tagMsg); | 209 | + successInfo.setTagMsg(fragment.tagMsg); |
| 210 | + ARouter.getInstance().build("/strick/MyActivity") | ||
| 211 | + .navigation(getContext()); | ||
| 212 | + if (isNewUser) { | ||
| 213 | +// HelperUtil.isNewUser(fragment.getActivity(), successInfo, isHasOtherUserInfo); | ||
| 214 | + } else { | ||
| 215 | +// HelperUtil.isNotNewUser(fragment.getActivity(), successInfo); | ||
| 210 | } | 216 | } |
| 211 | - UserRouterHelper.showMainView(fragment.getActivity(), successInfo); | 217 | +// EventBus.getDefault().post(new UserEventMsg(UserEventMsg.LOGIN_SUCCESS, successInfo)); |
| 218 | +// Intent intent = new Intent(getContext(), MainTestActivity.class); | ||
| 219 | +// intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK); | ||
| 220 | +// intent.putExtra("type", "login"); | ||
| 221 | +// intent.putExtra("uri", fragment.uri); | ||
| 222 | +// intent.putExtra(LoginActivity.TAG_CLICK_AD, fragment.clickAd); | ||
| 223 | +// intent.putExtra("sharetype", fragment.tagShare); | ||
| 224 | +// if (!TextUtils.isEmpty(fragment.tagMsg)) | ||
| 225 | +// intent.putExtra("classifyTagMsg", fragment.tagMsg); | ||
| 226 | +// getContext().startActivity(intent); | ||
| 212 | } | 227 | } |
| 213 | 228 | ||
| 214 | public void showProgress() { | 229 | public void showProgress() { |
cloud/user/src/main/java/com/cnlive/cloud/user/model/UserData.java deleted
100644 → 0
| 1 | -package com.cnlive.cloud.user.model; | ||
| 2 | - | ||
| 3 | -/** | ||
| 4 | - * Created by Lynn on 2018/10/15. | ||
| 5 | - */ | ||
| 6 | - | ||
| 7 | -public class UserData { | ||
| 8 | - private String uid; | ||
| 9 | - private String nickName; | ||
| 10 | - private String gender; | ||
| 11 | - private String location; | ||
| 12 | - private String faceUrl; | ||
| 13 | - private String mobile; | ||
| 14 | - private String email; | ||
| 15 | - private String extInfo; | ||
| 16 | - private String qqUid; | ||
| 17 | - private String wxUid; | ||
| 18 | - private String sinaUid; | ||
| 19 | - private String renrenUid; | ||
| 20 | - private String hUid; | ||
| 21 | - private String platformId; | ||
| 22 | - private String token; | ||
| 23 | - private String callbackAcitvityStatushttpPostUrl; | ||
| 24 | - private boolean isNewUser; | ||
| 25 | - private String bigFaceUrl; | ||
| 26 | - private String countryCode = "86";//手机号国家码 | ||
| 27 | - | ||
| 28 | - public String getUid() { | ||
| 29 | - return uid; | ||
| 30 | - } | ||
| 31 | - | ||
| 32 | - public void setUid(String uid) { | ||
| 33 | - this.uid = uid; | ||
| 34 | - } | ||
| 35 | - | ||
| 36 | - public String getNickName() { | ||
| 37 | - return nickName; | ||
| 38 | - } | ||
| 39 | - | ||
| 40 | - public void setNickName(String nickName) { | ||
| 41 | - this.nickName = nickName; | ||
| 42 | - } | ||
| 43 | - | ||
| 44 | - public String getLocation() { | ||
| 45 | - return location; | ||
| 46 | - } | ||
| 47 | - | ||
| 48 | - public void setLocation(String location) { | ||
| 49 | - this.location = location; | ||
| 50 | - } | ||
| 51 | - | ||
| 52 | - public String getGender() { | ||
| 53 | - return gender; | ||
| 54 | - } | ||
| 55 | - | ||
| 56 | - public void setGender(String gender) { | ||
| 57 | - this.gender = gender; | ||
| 58 | - } | ||
| 59 | - | ||
| 60 | - public String getFaceUrl() { | ||
| 61 | - return faceUrl; | ||
| 62 | - } | ||
| 63 | - | ||
| 64 | - public void setFaceUrl(String faceUrl) { | ||
| 65 | - this.faceUrl = faceUrl; | ||
| 66 | - } | ||
| 67 | - | ||
| 68 | - public String getToken() { | ||
| 69 | - return token; | ||
| 70 | - } | ||
| 71 | - | ||
| 72 | - public void setToken(String token) { | ||
| 73 | - this.token = token; | ||
| 74 | - } | ||
| 75 | - | ||
| 76 | - public String getExtInfo() { | ||
| 77 | - return extInfo; | ||
| 78 | - } | ||
| 79 | - | ||
| 80 | - public void setExtInfo(String extInfo) { | ||
| 81 | - this.extInfo = extInfo; | ||
| 82 | - } | ||
| 83 | - | ||
| 84 | - public String getMobile() { | ||
| 85 | - return mobile; | ||
| 86 | - } | ||
| 87 | - | ||
| 88 | - public void setMobile(String mobile) { | ||
| 89 | - this.mobile = mobile; | ||
| 90 | - } | ||
| 91 | - | ||
| 92 | - public String getEmail() { | ||
| 93 | - return email; | ||
| 94 | - } | ||
| 95 | - | ||
| 96 | - public void setEmail(String email) { | ||
| 97 | - this.email = email; | ||
| 98 | - } | ||
| 99 | - | ||
| 100 | - public String getQqUid() { | ||
| 101 | - return qqUid; | ||
| 102 | - } | ||
| 103 | - | ||
| 104 | - public void setQqUid(String qqUid) { | ||
| 105 | - this.qqUid = qqUid; | ||
| 106 | - } | ||
| 107 | - | ||
| 108 | - public String getWxUid() { | ||
| 109 | - return wxUid; | ||
| 110 | - } | ||
| 111 | - | ||
| 112 | - public void setWxUid(String wxUid) { | ||
| 113 | - this.wxUid = wxUid; | ||
| 114 | - } | ||
| 115 | - | ||
| 116 | - public String getSinaUid() { | ||
| 117 | - return sinaUid; | ||
| 118 | - } | ||
| 119 | - | ||
| 120 | - public void setSinaUid(String sinaUid) { | ||
| 121 | - this.sinaUid = sinaUid; | ||
| 122 | - } | ||
| 123 | - | ||
| 124 | - public String getRenrenUid() { | ||
| 125 | - return renrenUid; | ||
| 126 | - } | ||
| 127 | - | ||
| 128 | - public void setRenrenUid(String renrenUid) { | ||
| 129 | - this.renrenUid = renrenUid; | ||
| 130 | - } | ||
| 131 | - | ||
| 132 | - public String gethUid() { | ||
| 133 | - return hUid; | ||
| 134 | - } | ||
| 135 | - | ||
| 136 | - public void sethUid(String hUid) { | ||
| 137 | - this.hUid = hUid; | ||
| 138 | - } | ||
| 139 | - | ||
| 140 | - public String getPlatformId() { | ||
| 141 | - return platformId; | ||
| 142 | - } | ||
| 143 | - | ||
| 144 | - public void setPlatformId(String platformId) { | ||
| 145 | - this.platformId = platformId; | ||
| 146 | - } | ||
| 147 | - | ||
| 148 | - public boolean isNewUser() { | ||
| 149 | - return isNewUser; | ||
| 150 | - } | ||
| 151 | - | ||
| 152 | - public void setNewUser(boolean newUser) { | ||
| 153 | - isNewUser = newUser; | ||
| 154 | - } | ||
| 155 | - | ||
| 156 | - public String getBigFaceUrl() { | ||
| 157 | - return bigFaceUrl; | ||
| 158 | - } | ||
| 159 | - | ||
| 160 | - public void setBigFaceUrl(String bigFaceUrl) { | ||
| 161 | - this.bigFaceUrl = bigFaceUrl; | ||
| 162 | - } | ||
| 163 | - | ||
| 164 | - public String getCountryCode() { | ||
| 165 | - return countryCode; | ||
| 166 | - } | ||
| 167 | - | ||
| 168 | - public void setCountryCode(String countryCode) { | ||
| 169 | - this.countryCode = countryCode; | ||
| 170 | - } | ||
| 171 | - | ||
| 172 | - public String getCallbackAcitvityStatushttpPostUrl() { | ||
| 173 | - return callbackAcitvityStatushttpPostUrl; | ||
| 174 | - } | ||
| 175 | - | ||
| 176 | - public void setCallbackAcitvityStatushttpPostUrl(String callbackAcitvityStatushttpPostUrl) { | ||
| 177 | - this.callbackAcitvityStatushttpPostUrl = callbackAcitvityStatushttpPostUrl; | ||
| 178 | - } | ||
| 179 | - | ||
| 180 | - @Override | ||
| 181 | - public String toString() { | ||
| 182 | - return "UserData{" + | ||
| 183 | - "uid='" + uid + '\'' + | ||
| 184 | - ", nickName='" + nickName + '\'' + | ||
| 185 | - ", gender='" + gender + '\'' + | ||
| 186 | - ", location='" + location + '\'' + | ||
| 187 | - ", faceUrl='" + faceUrl + '\'' + | ||
| 188 | - ", mobile='" + mobile + '\'' + | ||
| 189 | - ", email='" + email + '\'' + | ||
| 190 | - ", extInfo='" + extInfo + '\'' + | ||
| 191 | - ", qqUid='" + qqUid + '\'' + | ||
| 192 | - ", wxUid='" + wxUid + '\'' + | ||
| 193 | - ", sinaUid='" + sinaUid + '\'' + | ||
| 194 | - ", renrenUid='" + renrenUid + '\'' + | ||
| 195 | - ", hUid='" + hUid + '\'' + | ||
| 196 | - ", platformId='" + platformId + '\'' + | ||
| 197 | - ", token='" + token + '\'' + | ||
| 198 | - ", callbackAcitvityStatushttpPostUrl='" + callbackAcitvityStatushttpPostUrl + '\'' + | ||
| 199 | - ", isNewUser=" + isNewUser + | ||
| 200 | - ", bigFaceUrl='" + bigFaceUrl + '\'' + | ||
| 201 | - ", countryCode='" + countryCode + '\'' + | ||
| 202 | - '}'; | ||
| 203 | - } | ||
| 204 | -} |
cloud/user/src/main/java/com/cnlive/cloud/user/ui/activity/LoginDialogActivity.java
| @@ -13,18 +13,19 @@ import androidx.annotation.NonNull; | @@ -13,18 +13,19 @@ import androidx.annotation.NonNull; | ||
| 13 | import androidx.databinding.ViewDataBinding; | 13 | import androidx.databinding.ViewDataBinding; |
| 14 | 14 | ||
| 15 | import com.alibaba.android.arouter.facade.annotation.Route; | 15 | import com.alibaba.android.arouter.facade.annotation.Route; |
| 16 | +import com.cnlive.cloud.user.databinding.ActivityLoginDialogBinding; | ||
| 16 | import com.cnlive.core.libs.base.application.AppConfig; | 17 | import com.cnlive.core.libs.base.application.AppConfig; |
| 17 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; | 18 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; |
| 18 | import com.cnlive.core.libs.base.util.DoublePressed; | 19 | import com.cnlive.core.libs.base.util.DoublePressed; |
| 19 | import com.cnlive.core.libs.base.util.ScreenUtils; | 20 | import com.cnlive.core.libs.base.util.ScreenUtils; |
| 20 | import com.cnlive.cloud.user.R; | 21 | import com.cnlive.cloud.user.R; |
| 21 | -import com.cnlive.cloud.user.databinding.ActivityLoginDialogBinding; | ||
| 22 | import com.cnlive.cloud.user.frame.data.QuickLoginData; | 22 | import com.cnlive.cloud.user.frame.data.QuickLoginData; |
| 23 | import com.cnlive.cloud.user.frame.presenter.LoginDialogPresenter; | 23 | import com.cnlive.cloud.user.frame.presenter.LoginDialogPresenter; |
| 24 | import com.cnlive.cloud.user.frame.view.LoginDialogView; | 24 | import com.cnlive.cloud.user.frame.view.LoginDialogView; |
| 25 | import com.cnlive.cloud.user.router.user.UserAction; | 25 | import com.cnlive.cloud.user.router.user.UserAction; |
| 26 | import com.cnlive.cloud.user.sms.SmsVerifyCatcher; | 26 | import com.cnlive.cloud.user.sms.SmsVerifyCatcher; |
| 27 | import com.cnlive.cloud.user.ui.adapter.UserListAdapter; | 27 | import com.cnlive.cloud.user.ui.adapter.UserListAdapter; |
| 28 | + | ||
| 28 | import static com.cnlive.cloud.user.ui.activity.LoginActivity.TAG_CLICK_AD; | 29 | import static com.cnlive.cloud.user.ui.activity.LoginActivity.TAG_CLICK_AD; |
| 29 | 30 | ||
| 30 | /** | 31 | /** |
cloud/user/src/main/java/com/cnlive/cloud/user/ui/activity/PersonalDataActivity.java
| @@ -12,13 +12,13 @@ import com.alibaba.android.arouter.facade.annotation.Route; | @@ -12,13 +12,13 @@ import com.alibaba.android.arouter.facade.annotation.Route; | ||
| 12 | import com.alibaba.android.arouter.launcher.ARouter; | 12 | import com.alibaba.android.arouter.launcher.ARouter; |
| 13 | import com.bumptech.glide.load.engine.DiskCacheStrategy; | 13 | import com.bumptech.glide.load.engine.DiskCacheStrategy; |
| 14 | import com.bumptech.glide.request.RequestOptions; | 14 | import com.bumptech.glide.request.RequestOptions; |
| 15 | +import com.cnlive.cloud.user.databinding.ActivityPersonalDataBinding; | ||
| 15 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; | 16 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; |
| 16 | import com.cnlive.core.libs.base.ui.widget.BottomMenuDialog; | 17 | import com.cnlive.core.libs.base.ui.widget.BottomMenuDialog; |
| 17 | import com.cnlive.core.libs.base.util.GlideUtil; | 18 | import com.cnlive.core.libs.base.util.GlideUtil; |
| 18 | import com.cnlive.core.libs.base.util.StatusBarConfig; | 19 | import com.cnlive.core.libs.base.util.StatusBarConfig; |
| 19 | import com.cnlive.cloud.user.R; | 20 | import com.cnlive.cloud.user.R; |
| 20 | import com.cnlive.cloud.user.auth.UserService; | 21 | import com.cnlive.cloud.user.auth.UserService; |
| 21 | -import com.cnlive.cloud.user.databinding.ActivityPersonalDataBinding; | ||
| 22 | import com.cnlive.cloud.user.frame.presenter.PersonalDataPresenter; | 22 | import com.cnlive.cloud.user.frame.presenter.PersonalDataPresenter; |
| 23 | import com.cnlive.cloud.user.frame.view.PersonalDataView; | 23 | import com.cnlive.cloud.user.frame.view.PersonalDataView; |
| 24 | import com.qmuiteam.qmui.widget.QMUITopBar; | 24 | import com.qmuiteam.qmui.widget.QMUITopBar; |
cloud/user/src/main/java/com/cnlive/cloud/user/ui/activity/PersonalImageActivity.java
| @@ -8,6 +8,7 @@ import android.view.View; | @@ -8,6 +8,7 @@ import android.view.View; | ||
| 8 | 8 | ||
| 9 | import androidx.databinding.ViewDataBinding; | 9 | import androidx.databinding.ViewDataBinding; |
| 10 | 10 | ||
| 11 | +import com.cnlive.cloud.user.databinding.ActivityPersonalImageBinding; | ||
| 11 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; | 12 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; |
| 12 | import com.cnlive.core.libs.base.util.AlertUtil; | 13 | import com.cnlive.core.libs.base.util.AlertUtil; |
| 13 | import com.cnlive.core.libs.base.util.GlideUtil; | 14 | import com.cnlive.core.libs.base.util.GlideUtil; |
| @@ -16,7 +17,6 @@ import com.cnlive.media.picker.PickerConfig; | @@ -16,7 +17,6 @@ import com.cnlive.media.picker.PickerConfig; | ||
| 16 | import com.cnlive.media.picker.entity.Media; | 17 | import com.cnlive.media.picker.entity.Media; |
| 17 | import com.cnlive.cloud.user.R; | 18 | import com.cnlive.cloud.user.R; |
| 18 | import com.cnlive.cloud.user.auth.UserService; | 19 | import com.cnlive.cloud.user.auth.UserService; |
| 19 | -import com.cnlive.cloud.user.databinding.ActivityPersonalImageBinding; | ||
| 20 | import com.cnlive.cloud.user.frame.presenter.PersonalImagePresenter; | 20 | import com.cnlive.cloud.user.frame.presenter.PersonalImagePresenter; |
| 21 | import com.cnlive.cloud.user.frame.view.PersonalImageView; | 21 | import com.cnlive.cloud.user.frame.view.PersonalImageView; |
| 22 | import com.qmuiteam.qmui.widget.QMUITopBar; | 22 | import com.qmuiteam.qmui.widget.QMUITopBar; |
cloud/user/src/main/java/com/cnlive/cloud/user/ui/activity/SelectCountryActivity.java
| @@ -6,10 +6,10 @@ import android.content.Intent; | @@ -6,10 +6,10 @@ import android.content.Intent; | ||
| 6 | 6 | ||
| 7 | import androidx.databinding.ViewDataBinding; | 7 | import androidx.databinding.ViewDataBinding; |
| 8 | 8 | ||
| 9 | +import com.cnlive.cloud.user.databinding.ActivitySelectCountryBinding; | ||
| 9 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; | 10 | import com.cnlive.core.libs.base.frame.activity.BaseActivity; |
| 10 | import com.cnlive.core.libs.base.util.StatusBarConfig; | 11 | import com.cnlive.core.libs.base.util.StatusBarConfig; |
| 11 | import com.cnlive.cloud.user.R; | 12 | import com.cnlive.cloud.user.R; |
| 12 | -import com.cnlive.cloud.user.databinding.ActivitySelectCountryBinding; | ||
| 13 | import com.cnlive.cloud.user.frame.presenter.SelectCountryPresenter; | 13 | import com.cnlive.cloud.user.frame.presenter.SelectCountryPresenter; |
| 14 | import com.cnlive.cloud.user.frame.view.SelectCountryView; | 14 | import com.cnlive.cloud.user.frame.view.SelectCountryView; |
| 15 | 15 |
cloud/user/src/main/java/com/cnlive/cloud/user/ui/fragment/QuickLoginFragment.java
| @@ -9,13 +9,13 @@ import android.text.TextUtils; | @@ -9,13 +9,13 @@ import android.text.TextUtils; | ||
| 9 | import androidx.annotation.NonNull; | 9 | import androidx.annotation.NonNull; |
| 10 | import androidx.databinding.ViewDataBinding; | 10 | import androidx.databinding.ViewDataBinding; |
| 11 | 11 | ||
| 12 | +import com.cnlive.cloud.user.databinding.FragmentQuickLoginBinding; | ||
| 13 | +import com.cnlive.cloud.user.frame.presenter.QuickLoginPresenter; | ||
| 12 | import com.cnlive.core.libs.base.application.AppConfig; | 14 | import com.cnlive.core.libs.base.application.AppConfig; |
| 13 | import com.cnlive.core.libs.base.frame.fragment.BaseFragment; | 15 | import com.cnlive.core.libs.base.frame.fragment.BaseFragment; |
| 14 | import com.cnlive.core.libs.base.util.DoublePressed; | 16 | import com.cnlive.core.libs.base.util.DoublePressed; |
| 15 | import com.cnlive.cloud.user.R; | 17 | import com.cnlive.cloud.user.R; |
| 16 | -import com.cnlive.cloud.user.databinding.FragmentQuickLoginBinding; | ||
| 17 | import com.cnlive.cloud.user.frame.data.QuickLoginData; | 18 | import com.cnlive.cloud.user.frame.data.QuickLoginData; |
| 18 | -import com.cnlive.cloud.user.frame.presenter.QuickLoginPresenter; | ||
| 19 | import com.cnlive.cloud.user.frame.view.QuickLoginView; | 19 | import com.cnlive.cloud.user.frame.view.QuickLoginView; |
| 20 | import com.cnlive.cloud.user.router.user.UserAction; | 20 | import com.cnlive.cloud.user.router.user.UserAction; |
| 21 | import com.cnlive.cloud.user.sms.SmsVerifyCatcher; | 21 | import com.cnlive.cloud.user.sms.SmsVerifyCatcher; |
cloud/user/src/main/res/values/style.xml
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | -<resources> | 2 | +<resources xmlns:tools="http://schemas.android.com/tools"> |
| 3 | <style name="Login.Spinner" parent="Widget.AppCompat.Spinner"></style> | 3 | <style name="Login.Spinner" parent="Widget.AppCompat.Spinner"></style> |
| 4 | 4 | ||
| 5 | <!-- 个人资料--> | 5 | <!-- 个人资料--> |
| @@ -27,4 +27,21 @@ | @@ -27,4 +27,21 @@ | ||
| 27 | <item name="android:windowActionBar">true</item> | 27 | <item name="android:windowActionBar">true</item> |
| 28 | <item name="android:windowCloseOnTouchOutside">false</item> | 28 | <item name="android:windowCloseOnTouchOutside">false</item> |
| 29 | </style> | 29 | </style> |
| 30 | + | ||
| 31 | + <style name="AppProgressDialog" parent="Theme.AppCompat.Dialog.Alert"> | ||
| 32 | + <!--文字大小--> | ||
| 33 | + <item name="android:textSize">16sp</item> | ||
| 34 | + <!-- 这里是修改顶部标题背景颜色,具体颜色自己定,可以是图片 --> | ||
| 35 | + <item name="android:topDark">@android:color/white</item> | ||
| 36 | + <!--修改底部背景颜色--> | ||
| 37 | + <item name="android:bottomDark">@android:color/white</item> | ||
| 38 | + <!-- 这里是修改内容区域背景颜色 --> | ||
| 39 | + <item name="android:centerDark">@android:color/white</item> | ||
| 40 | + <!--//窗口半透明--> | ||
| 41 | + <item name="android:windowIsTranslucent">true</item> | ||
| 42 | + <item name="android:textColor">@color/color_232326</item> | ||
| 43 | + <!--设置progressbar的颜色--> | ||
| 44 | + <item name="android:indeterminateTint" tools:ignore="NewApi">#008577</item> | ||
| 45 | + <item name="android:indeterminateTintMode" tools:ignore="NewApi">src_atop</item> | ||
| 46 | + </style> | ||
| 30 | </resources> | 47 | </resources> |
cloud/video/build.gradle
| @@ -12,5 +12,5 @@ dependencies { | @@ -12,5 +12,5 @@ dependencies { | ||
| 12 | //友盟 | 12 | //友盟 |
| 13 | implementation "com.umeng.umsdk:analytics:8.0.0" | 13 | implementation "com.umeng.umsdk:analytics:8.0.0" |
| 14 | implementation "com.umeng.umsdk:common:2.0.0" | 14 | implementation "com.umeng.umsdk:common:2.0.0" |
| 15 | - compile project(path: ':core:network') | 15 | + implementation project(path: ':core:network') |
| 16 | } | 16 | } |
core/network/src/main/java/com/cnlive/core/network/api/ApiBaseServiceOpen.java
module/pedometer/build.gradle
| @@ -91,5 +91,5 @@ dependencies { | @@ -91,5 +91,5 @@ dependencies { | ||
| 91 | implementation 'q.rorbin:badgeview:1.1.3' | 91 | implementation 'q.rorbin:badgeview:1.1.3' |
| 92 | implementation project(path: ':core:network') | 92 | implementation project(path: ':core:network') |
| 93 | implementation project(path: ':library_baidumap') | 93 | implementation project(path: ':library_baidumap') |
| 94 | - implementation project(path: ':cloud:share') | 94 | + implementation project(path: ':cloud:third_tool') |
| 95 | } | 95 | } |
settings.gradle
| 1 | include ':app:strike' | 1 | include ':app:strike' |
| 2 | //基础库 | 2 | //基础库 |
| 3 | include ':core:base',':core:network',':core:imageload' ,':core:app_qr' | 3 | include ':core:base',':core:network',':core:imageload' ,':core:app_qr' |
| 4 | -include ':cloud:user',':cloud:pay',':cloud:share',':cloud:video' | 4 | +include ':cloud:user',':cloud:pay',':cloud:third_tool',':cloud:video' |
| 5 | include ':module:xiaojiasoundbox',':module:pedometer',':module:shanghaishop' | 5 | include ':module:xiaojiasoundbox',':module:pedometer',':module:shanghaishop' |
| 6 | include ':library_baidumap' | 6 | include ':library_baidumap' |
| 7 | rootProject.name='ModuleStrike' | 7 | rootProject.name='ModuleStrike' |