├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── czbix │ │ └── peanutlink │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── czbix │ │ │ └── peanutlink │ │ │ ├── LoginActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MiscUtils.java │ │ │ ├── PrefHelper.java │ │ │ └── network │ │ │ ├── RequestException.java │ │ │ ├── RequestHelper.java │ │ │ └── model │ │ │ ├── LoginParams.java │ │ │ ├── RegResult.java │ │ │ └── User.java │ └── res │ │ ├── layout │ │ ├── activity_login.xml │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── czbix │ └── peanutlink │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | /.navigation/ 9 | fabric.properties 10 | 11 | # IDEA/Android Studio project files, because 12 | # the project can be imported from settings.gradle 13 | .idea 14 | *.iml 15 | *.apk 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # peanut-link 2 | 第三方花生地铁 WiFi Android 客户端,逆向官方 Android 客户端 v2.0.21 得出协议格式。 3 | 4 | ## 依赖项 5 | * OkHttp 6 | * RxAndroid 7 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.2" 6 | 7 | defaultConfig { 8 | applicationId "com.czbix.peanutlink" 9 | minSdkVersion 15 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled true 17 | shrinkResources true 18 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 19 | } 20 | } 21 | } 22 | 23 | dependencies { 24 | compile fileTree(include: ['*.jar'], dir: 'libs') 25 | testCompile 'junit:junit:4.12' 26 | compile 'com.android.support:appcompat-v7:23.1.1' 27 | compile 'com.squareup.okhttp:okhttp:2.7.0' 28 | compile 'io.reactivex:rxandroid:1.1.0' 29 | compile 'com.android.support:design:23.1.1' 30 | } 31 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /home/czbix/Documents/Apps/android-sdk-linux/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # for stacktrace 20 | -keepattributes SourceFile,LineNumberTable 21 | 22 | # RxJava 23 | -dontwarn sun.misc.** 24 | 25 | -keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* { 26 | long producerIndex; 27 | long consumerIndex; 28 | } 29 | 30 | -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef { 31 | rx.internal.util.atomic.LinkedQueueNode producerNode; 32 | } 33 | 34 | -keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef { 35 | rx.internal.util.atomic.LinkedQueueNode consumerNode; 36 | } 37 | 38 | # unresolve class in library 39 | -dontwarn okio.** 40 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/czbix/peanutlink/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CzBiX/peanut-link/b5eadd82cb452872a5a181dbf56d647294558d96/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/LoginActivity.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink; 2 | 3 | import android.animation.Animator; 4 | import android.animation.AnimatorListenerAdapter; 5 | import android.annotation.TargetApi; 6 | import android.support.v7.app.AppCompatActivity; 7 | 8 | import android.os.Build; 9 | import android.os.Bundle; 10 | import android.view.KeyEvent; 11 | import android.view.View; 12 | import android.view.View.OnClickListener; 13 | import android.view.inputmethod.EditorInfo; 14 | import android.widget.Button; 15 | import android.widget.EditText; 16 | import android.widget.TextView; 17 | import android.widget.Toast; 18 | 19 | import com.czbix.peanutlink.network.RequestHelper; 20 | import com.czbix.peanutlink.network.model.LoginParams; 21 | import com.czbix.peanutlink.network.model.RegResult; 22 | import com.czbix.peanutlink.network.model.User; 23 | 24 | import rx.Observable; 25 | import rx.Subscription; 26 | import rx.android.schedulers.AndroidSchedulers; 27 | import rx.functions.Action1; 28 | import rx.functions.Func1; 29 | import rx.schedulers.Schedulers; 30 | 31 | public class LoginActivity extends AppCompatActivity { 32 | private EditText mEtPhone; 33 | private EditText mEtCode; 34 | private View mProgressView; 35 | private View mLoginFormView; 36 | private Subscription mSubscribe; 37 | 38 | @Override 39 | protected void onCreate(Bundle savedInstanceState) { 40 | super.onCreate(savedInstanceState); 41 | setContentView(R.layout.activity_login); 42 | // Set up the login form. 43 | mEtPhone = (EditText) findViewById(R.id.phone); 44 | 45 | mEtCode = (EditText) findViewById(R.id.code); 46 | mEtCode.setOnEditorActionListener(new TextView.OnEditorActionListener() { 47 | @Override 48 | public boolean onEditorAction(TextView textView, int id, KeyEvent keyEvent) { 49 | if (id == R.id.login || id == EditorInfo.IME_NULL) { 50 | attemptLogin(); 51 | return true; 52 | } 53 | return false; 54 | } 55 | }); 56 | 57 | final Button btnGetCode = (Button) findViewById(R.id.get_reg_code); 58 | btnGetCode.setOnClickListener(new OnClickListener() { 59 | @Override 60 | public void onClick(View v) { 61 | final String phone = mEtPhone.getText().toString(); 62 | if (!isValidPhone(phone)) { 63 | return; 64 | } 65 | 66 | btnGetCode.setEnabled(false); 67 | RequestHelper.getRegCode(phone) 68 | .subscribeOn(Schedulers.io()) 69 | .observeOn(AndroidSchedulers.mainThread()) 70 | .subscribe(new Action1() { 71 | @Override 72 | public void call(Void aVoid) { 73 | // empty 74 | } 75 | }, onError); 76 | } 77 | }); 78 | 79 | Button btnSignIn = (Button) findViewById(R.id.sign_in_button); 80 | btnSignIn.setOnClickListener(new OnClickListener() { 81 | @Override 82 | public void onClick(View view) { 83 | attemptLogin(); 84 | } 85 | }); 86 | 87 | mLoginFormView = findViewById(R.id.login_form); 88 | mProgressView = findViewById(R.id.login_progress); 89 | } 90 | 91 | private static boolean isValidPhone(String phone) { 92 | return !phone.isEmpty() && phone.length() == 11; 93 | } 94 | 95 | 96 | /** 97 | * Attempts to sign in or register the account specified by the login form. 98 | * If there are form errors (invalid email, missing fields, etc.), the 99 | * errors are presented and no actual login attempt is made. 100 | */ 101 | private void attemptLogin() { 102 | if (mSubscribe != null) { 103 | return; 104 | } 105 | 106 | // Reset errors. 107 | mEtPhone.setError(null); 108 | mEtCode.setError(null); 109 | 110 | // Store values at the time of the login attempt. 111 | String phone = mEtPhone.getText().toString(); 112 | String code = mEtCode.getText().toString(); 113 | 114 | TextView focusView = null; 115 | if (!isValidPhone(phone)) { 116 | focusView = mEtPhone; 117 | } else if (code.isEmpty() || code.length() < 4) { 118 | focusView = mEtCode; 119 | } 120 | 121 | if (focusView != null) { 122 | focusView.requestFocus(); 123 | focusView.setError(getString(R.string.error_invalid_input)); 124 | return; 125 | } 126 | 127 | showProgress(true); 128 | 129 | mSubscribe = RequestHelper.regUser(phone, code) 130 | .subscribeOn(Schedulers.io()) 131 | .flatMap(new Func1>() { 132 | @Override 133 | public Observable call(final RegResult regResult) { 134 | return RequestHelper.getUTime() 135 | .map(new Func1() { 136 | @Override 137 | public LoginParams call(Long aLong) { 138 | final String macAddress = MiscUtils.getMacAddress(LoginActivity.this); 139 | 140 | return new LoginParams(Long.toString(aLong), regResult.uuid, 141 | regResult.ucode, macAddress); 142 | } 143 | }); 144 | } 145 | }) 146 | .flatMap(new Func1>() { 147 | @Override 148 | public Observable call(LoginParams params) { 149 | return RequestHelper.loginUser(params); 150 | } 151 | }) 152 | .observeOn(AndroidSchedulers.mainThread()) 153 | .subscribe(new Action1() { 154 | @Override 155 | public void call(User user) { 156 | PrefHelper.getInstance(LoginActivity.this).setUser(user); 157 | setResult(RESULT_OK); 158 | finish(); 159 | } 160 | }, onError); 161 | } 162 | 163 | /** 164 | * Shows the progress UI and hides the login form. 165 | */ 166 | @TargetApi(Build.VERSION_CODES.HONEYCOMB_MR2) 167 | private void showProgress(final boolean show) { 168 | // On Honeycomb MR2 we have the ViewPropertyAnimator APIs, which allow 169 | // for very easy animations. If available, use these APIs to fade-in 170 | // the progress spinner. 171 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR2) { 172 | int shortAnimTime = getResources().getInteger(android.R.integer.config_shortAnimTime); 173 | 174 | mLoginFormView.setVisibility(show ? View.GONE : View.VISIBLE); 175 | mLoginFormView.animate().setDuration(shortAnimTime).alpha( 176 | show ? 0 : 1).setListener(new AnimatorListenerAdapter() { 177 | @Override 178 | public void onAnimationEnd(Animator animation) { 179 | mLoginFormView.setVisibility(show ? View.GONE : View.VISIBLE); 180 | } 181 | }); 182 | 183 | mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); 184 | mProgressView.animate().setDuration(shortAnimTime).alpha( 185 | show ? 1 : 0).setListener(new AnimatorListenerAdapter() { 186 | @Override 187 | public void onAnimationEnd(Animator animation) { 188 | mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); 189 | } 190 | }); 191 | } else { 192 | // The ViewPropertyAnimator APIs are not available, so simply show 193 | // and hide the relevant UI components. 194 | mProgressView.setVisibility(show ? View.VISIBLE : View.GONE); 195 | mLoginFormView.setVisibility(show ? View.GONE : View.VISIBLE); 196 | } 197 | } 198 | 199 | private final Action1 onError = new Action1() { 200 | @Override 201 | public void call(Throwable throwable) { 202 | Toast.makeText(LoginActivity.this, throwable.getMessage(), Toast.LENGTH_LONG).show(); 203 | mSubscribe = null; 204 | } 205 | }; 206 | } 207 | 208 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink; 2 | 3 | import android.content.Intent; 4 | import android.support.v7.app.AppCompatActivity; 5 | import android.os.Bundle; 6 | import android.view.View; 7 | import android.widget.TextView; 8 | import android.widget.Toast; 9 | 10 | import com.czbix.peanutlink.network.RequestHelper; 11 | import com.czbix.peanutlink.network.model.LoginParams; 12 | import com.czbix.peanutlink.network.model.User; 13 | 14 | import org.json.JSONException; 15 | 16 | import rx.Observable; 17 | import rx.Observer; 18 | import rx.android.schedulers.AndroidSchedulers; 19 | import rx.functions.Action1; 20 | import rx.functions.Func1; 21 | import rx.schedulers.Schedulers; 22 | 23 | public class MainActivity extends AppCompatActivity { 24 | 25 | private TextView mTvStatus; 26 | private TextView mBtnConnect; 27 | 28 | @Override 29 | protected void onCreate(Bundle savedInstanceState) { 30 | super.onCreate(savedInstanceState); 31 | setContentView(R.layout.activity_main); 32 | 33 | mTvStatus = (TextView) findViewById(R.id.status); 34 | mBtnConnect = ((TextView) findViewById(R.id.connect)); 35 | 36 | mTvStatus.setOnClickListener(new View.OnClickListener() { 37 | @Override 38 | public void onClick(View v) { 39 | checkNetwork(); 40 | } 41 | }); 42 | mBtnConnect.setOnClickListener(new View.OnClickListener() { 43 | @Override 44 | public void onClick(View v) { 45 | mBtnConnect.setEnabled(false); 46 | Toast.makeText(MainActivity.this, "Connecting...", Toast.LENGTH_SHORT).show(); 47 | 48 | RequestHelper.openNet(1, null) 49 | .subscribeOn(Schedulers.io()) 50 | .observeOn(AndroidSchedulers.mainThread()) 51 | .subscribe(new Action1() { 52 | @Override 53 | public void call(Void aVoid) { 54 | mBtnConnect.setEnabled(true); 55 | checkNetwork(); 56 | } 57 | }, onError); 58 | } 59 | }); 60 | 61 | if (!MiscUtils.isPeanutAp(this)) { 62 | Toast.makeText(this, "Not connected to Peanut AP!", Toast.LENGTH_LONG).show(); 63 | mBtnConnect.setEnabled(false); 64 | } 65 | } 66 | 67 | @Override 68 | protected void onResume() { 69 | super.onResume(); 70 | 71 | final User user = PrefHelper.getInstance(this).getUser(); 72 | if (user == null) { 73 | startActivityForResult(new Intent(this, LoginActivity.class), 0); 74 | return; 75 | } 76 | 77 | RequestHelper.updateSession(user.session); 78 | 79 | RequestHelper.freshUser() 80 | .subscribeOn(Schedulers.io()) 81 | .observeOn(AndroidSchedulers.mainThread()) 82 | .subscribe(new Observer() { 83 | @Override 84 | public void onCompleted() { 85 | checkNetwork(); 86 | } 87 | 88 | @Override 89 | public void onError(Throwable e) { 90 | if (e instanceof JSONException) { 91 | Toast.makeText(MainActivity.this, R.string.toast_invalid_session, 92 | Toast.LENGTH_SHORT).show(); 93 | autoReLogin(user); 94 | return; 95 | } 96 | throw new RuntimeException(e); 97 | } 98 | 99 | @Override 100 | public void onNext(Void aVoid) { 101 | 102 | } 103 | }); 104 | } 105 | 106 | private void autoReLogin(final User user) { 107 | RequestHelper.getUTime() 108 | .subscribeOn(Schedulers.io()) 109 | .map(new Func1() { 110 | @Override 111 | public LoginParams call(Long aLong) { 112 | final String macAddress = MiscUtils.getMacAddress(MainActivity.this); 113 | 114 | return new LoginParams(Long.toString(aLong), user.uuid, 115 | user.ucode, macAddress); 116 | } 117 | }) 118 | .flatMap(new Func1>() { 119 | @Override 120 | public Observable call(LoginParams params) { 121 | return RequestHelper.loginUser(params); 122 | } 123 | }) 124 | .observeOn(AndroidSchedulers.mainThread()) 125 | .subscribe(new Action1() { 126 | @Override 127 | public void call(User user) { 128 | PrefHelper.getInstance(MainActivity.this).setUser(user); 129 | RequestHelper.updateSession(user.session); 130 | checkNetwork(); 131 | } 132 | }, onError); 133 | } 134 | 135 | @Override 136 | protected void onActivityResult(int requestCode, int resultCode, Intent data) { 137 | super.onActivityResult(requestCode, resultCode, data); 138 | if (resultCode == RESULT_CANCELED) { 139 | finish(); 140 | return; 141 | } 142 | 143 | recreate(); 144 | } 145 | 146 | private void checkNetwork() { 147 | mTvStatus.setText(R.string.tv_checking_network); 148 | 149 | RequestHelper.checkNetwork() 150 | .subscribeOn(Schedulers.io()) 151 | .observeOn(AndroidSchedulers.mainThread()) 152 | .subscribe(new Action1() { 153 | @Override 154 | public void call(Void aVoid) { 155 | mTvStatus.setText(R.string.tv_network_connected); 156 | } 157 | }, new Action1() { 158 | @Override 159 | public void call(Throwable throwable) { 160 | mTvStatus.setText(throwable.getMessage()); 161 | } 162 | }); 163 | } 164 | 165 | private final Action1 onError = new Action1() { 166 | @Override 167 | public void call(Throwable throwable) { 168 | Toast.makeText(MainActivity.this, throwable.getMessage(), Toast.LENGTH_LONG).show(); 169 | } 170 | }; 171 | } 172 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/MiscUtils.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink; 2 | 3 | import android.content.Context; 4 | import android.net.wifi.WifiInfo; 5 | import android.net.wifi.WifiManager; 6 | 7 | public class MiscUtils { 8 | private static final String WIFI_NAME = "花生地铁"; 9 | 10 | public static String getMacAddress(Context context) { 11 | final WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); 12 | final WifiInfo wifiInfo = wifiManager.getConnectionInfo(); 13 | 14 | return wifiInfo.getMacAddress(); 15 | } 16 | 17 | public static boolean isPeanutAp(Context context) { 18 | final WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); 19 | final WifiInfo wifiInfo = wifiManager.getConnectionInfo(); 20 | if (wifiInfo == null || wifiInfo.getNetworkId() == -1) { 21 | return false; 22 | } 23 | 24 | return wifiInfo.getSSID().contains(WIFI_NAME); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/PrefHelper.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink; 2 | 3 | import android.content.Context; 4 | import android.content.SharedPreferences; 5 | import android.preference.PreferenceManager; 6 | 7 | import com.czbix.peanutlink.network.model.User; 8 | 9 | public class PrefHelper { 10 | private static final String KEY_USER = "user"; 11 | 12 | private final SharedPreferences mPreferences; 13 | 14 | public static PrefHelper getInstance(Context context) { 15 | return new PrefHelper(context); 16 | } 17 | 18 | private PrefHelper(Context context) { 19 | mPreferences = PreferenceManager.getDefaultSharedPreferences(context); 20 | } 21 | 22 | public User getUser() { 23 | final String string = mPreferences.getString(KEY_USER, null); 24 | if (string == null) { 25 | return null; 26 | } 27 | 28 | return User.fromJson(string); 29 | } 30 | 31 | public void setUser(User user) { 32 | final SharedPreferences.Editor editor = mPreferences.edit(); 33 | if (user == null) { 34 | editor.remove(KEY_USER); 35 | } else { 36 | editor.putString(KEY_USER, user.toJson()); 37 | } 38 | 39 | editor.apply(); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/network/RequestException.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink.network; 2 | 3 | import com.squareup.okhttp.Response; 4 | 5 | public class RequestException extends Exception { 6 | private String mErrCode = null; 7 | 8 | public RequestException() { 9 | super(); 10 | } 11 | 12 | public RequestException(String detailMessage) { 13 | super(detailMessage); 14 | } 15 | 16 | public RequestException(String detailMessage, String errCode) { 17 | super(detailMessage); 18 | mErrCode = errCode; 19 | } 20 | 21 | public RequestException(String detailMessage, Throwable throwable) { 22 | super(detailMessage, throwable); 23 | } 24 | 25 | public RequestException(Throwable throwable) { 26 | super(throwable); 27 | } 28 | 29 | public String getErrCode() { 30 | return mErrCode; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/network/RequestHelper.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink.network; 2 | 3 | import android.os.RemoteException; 4 | import android.support.v4.util.ArrayMap; 5 | 6 | import com.czbix.peanutlink.network.model.LoginParams; 7 | import com.czbix.peanutlink.network.model.RegResult; 8 | import com.czbix.peanutlink.network.model.User; 9 | import com.squareup.okhttp.FormEncodingBuilder; 10 | import com.squareup.okhttp.Interceptor; 11 | import com.squareup.okhttp.OkHttpClient; 12 | import com.squareup.okhttp.Request; 13 | import com.squareup.okhttp.RequestBody; 14 | import com.squareup.okhttp.Response; 15 | 16 | import org.json.JSONException; 17 | import org.json.JSONObject; 18 | 19 | import java.io.IOException; 20 | import java.security.MessageDigest; 21 | import java.util.Date; 22 | import java.util.Map; 23 | import java.util.concurrent.TimeUnit; 24 | 25 | import rx.Observable; 26 | import rx.Subscriber; 27 | 28 | public class RequestHelper { 29 | private static final String BASE_URL = "http://mem.wode20.com/api2/wifiapp"; 30 | private static final String SIGN_KEY = "6723A3DA72281F435DDA0D87393CDDE4"; 31 | 32 | private static final String GET_REG_CODE_API = BASE_URL + "/getregcode"; 33 | private static final String REG_USER_API = BASE_URL + "/reguser"; 34 | private static final String GET_UTIME_API = BASE_URL + "/getutime"; 35 | private static final String LOGIN_USER_API = BASE_URL + "/loginuser"; 36 | private static final String FRESH_USER_API = BASE_URL + "/freshuser"; 37 | private static final String OPEN_NET_API = BASE_URL + "/opennetpd"; 38 | 39 | private static final OkHttpClient CLIENT; 40 | private static String mSession; 41 | 42 | static { 43 | CLIENT = new OkHttpClient(); 44 | 45 | CLIENT.setConnectTimeout(10, TimeUnit.SECONDS); 46 | CLIENT.setWriteTimeout(10, TimeUnit.SECONDS); 47 | CLIENT.setReadTimeout(30, TimeUnit.SECONDS); 48 | CLIENT.networkInterceptors().add(new Interceptor() { 49 | @Override 50 | public Response intercept(Chain chain) throws IOException { 51 | final Request.Builder builder = chain.request().newBuilder(); 52 | builder.removeHeader("User-Agent"); 53 | return chain.proceed(builder.build()); 54 | } 55 | }); 56 | } 57 | 58 | public static Observable getRegCode(final String phone) { 59 | return Observable.create(new Observable.OnSubscribe() { 60 | @Override 61 | public void call(Subscriber subscriber) { 62 | final ArrayMap map = new ArrayMap<>(1); 63 | map.put("phoneno", phone); 64 | 65 | final Request request = new Request.Builder().url(GET_REG_CODE_API) 66 | .post(newPostBody(2, map)).build(); 67 | try { 68 | sendRequest(request); 69 | subscriber.onNext(null); 70 | subscriber.onCompleted(); 71 | } catch (Exception e) { 72 | subscriber.onError(e); 73 | } 74 | } 75 | }); 76 | } 77 | 78 | public static Observable regUser(final String phone, final String regCode) { 79 | return Observable.create(new Observable.OnSubscribe() { 80 | @Override 81 | public void call(Subscriber subscriber) { 82 | final ArrayMap map = new ArrayMap<>(2); 83 | map.put("phoneno", phone); 84 | map.put("regcode", regCode); 85 | 86 | final Request request = new Request.Builder().url(REG_USER_API) 87 | .post(newPostBody(2, map)).build(); 88 | try { 89 | final JSONObject json = sendRequest(request); 90 | final String ucode = json.getString("ucode"); 91 | final String uuid = json.getString("uuid"); 92 | 93 | subscriber.onNext(new RegResult(uuid, ucode)); 94 | subscriber.onCompleted(); 95 | } catch (Exception e) { 96 | subscriber.onError(e); 97 | } 98 | } 99 | }); 100 | } 101 | 102 | public static Observable getUTime() { 103 | return Observable.create(new Observable.OnSubscribe() { 104 | @Override 105 | public void call(Subscriber subscriber) { 106 | final Request request = new Request.Builder().url(GET_UTIME_API) 107 | .post(newPostBody(2, new ArrayMap<>())).build(); 108 | try { 109 | final JSONObject json = sendRequest(request); 110 | 111 | subscriber.onNext(json.getLong("utime")); 112 | subscriber.onCompleted(); 113 | } catch (Exception e) { 114 | subscriber.onError(e); 115 | } 116 | } 117 | }); 118 | } 119 | 120 | public static Observable loginUser(final LoginParams params) { 121 | return Observable.create(new Observable.OnSubscribe() { 122 | @Override 123 | public void call(Subscriber subscriber) { 124 | final String upwd = encode(params.ucode + params.utime); 125 | final ArrayMap map = new ArrayMap<>(4); 126 | map.put("uuid", params.uuid); 127 | map.put("upwd", upwd); 128 | map.put("utime", params.utime); 129 | map.put("equid", params.mac); 130 | 131 | 132 | final Request request = new Request.Builder().url(LOGIN_USER_API) 133 | .post(newPostBody(2, map)).build(); 134 | 135 | try { 136 | final JSONObject json = sendRequest(request); 137 | final String session = json.getString("sessid"); 138 | 139 | subscriber.onNext(new User(params.uuid, params.ucode, session)); 140 | subscriber.onCompleted(); 141 | } catch (Exception e) { 142 | subscriber.onError(e); 143 | } 144 | } 145 | }); 146 | } 147 | 148 | public static Observable freshUser() { 149 | if (mSession == null) { 150 | throw new RuntimeException("session is empty"); 151 | } 152 | 153 | return Observable.create(new Observable.OnSubscribe() { 154 | @Override 155 | public void call(Subscriber subscriber) { 156 | final Request request = new Request.Builder().url(FRESH_USER_API) 157 | .post(newPostBody(2, new ArrayMap<>())).build(); 158 | try { 159 | sendRequest(request); 160 | 161 | subscriber.onNext(null); 162 | subscriber.onCompleted(); 163 | } catch (Exception e) { 164 | subscriber.onError(e); 165 | } 166 | } 167 | }); 168 | } 169 | 170 | public static Observable openNet(final int flag, final String mac) { 171 | if (mSession == null) { 172 | throw new RuntimeException("session is empty"); 173 | } 174 | 175 | return Observable.create(new Observable.OnSubscribe() { 176 | @Override 177 | public void call(Subscriber subscriber) { 178 | final ArrayMap map = new ArrayMap<>(); 179 | map.put("mac", mac); 180 | map.put("flag", flag); 181 | 182 | final Request request = new Request.Builder().url(OPEN_NET_API) 183 | .post(newPostBody(1, map)).build(); 184 | try { 185 | sendRequest(request); 186 | 187 | subscriber.onNext(null); 188 | subscriber.onCompleted(); 189 | } catch (Exception e) { 190 | subscriber.onError(e); 191 | } 192 | } 193 | }); 194 | } 195 | 196 | public static Observable checkNetwork() { 197 | return Observable.create(new Observable.OnSubscribe() { 198 | @Override 199 | public void call(Subscriber subscriber) { 200 | final Request request = new Request.Builder().url("http://g.cn/generate_204").build(); 201 | 202 | try { 203 | final Response response = CLIENT.newCall(request).execute(); 204 | if (response.code() != 204) { 205 | throw new RemoteException("invalid response code"); 206 | } 207 | 208 | subscriber.onNext(null); 209 | subscriber.onCompleted(); 210 | } catch (Exception e) { 211 | subscriber.onError(e); 212 | } 213 | } 214 | }); 215 | } 216 | 217 | public static void updateSession(String session) { 218 | mSession = session; 219 | } 220 | 221 | private static RequestBody newPostBody(int protocolVersion, Map params) { 222 | final ArrayMap map = new ArrayMap<>(2); 223 | { 224 | final ArrayMap hdata = new ArrayMap<>(8); 225 | map.put("hdata", hdata); 226 | 227 | hdata.put("ver", protocolVersion); 228 | hdata.put("aid", 1); 229 | hdata.put("aver", "2.0.21"); 230 | hdata.put("ostype", 1); 231 | hdata.put("dcode", "dcode"); 232 | hdata.put("seqno", Long.toString(getUtcTime())); 233 | hdata.put("sessid", mSession == null ? "" : mSession); 234 | hdata.put("resv", 1); 235 | } 236 | 237 | map.put("ddata", params); 238 | 239 | final JSONObject json = new JSONObject(map); 240 | final String data = json.toString(); 241 | final String sign = encode(data + SIGN_KEY); 242 | 243 | return new FormEncodingBuilder() 244 | .add("_data", data) 245 | .add("_sign", sign) 246 | .build(); 247 | } 248 | 249 | private static long getUtcTime() { 250 | return new Date().getTime(); 251 | } 252 | 253 | private static String encode(String data) { 254 | try 255 | { 256 | byte[] bytes = MessageDigest.getInstance("MD5").digest(data.getBytes("utf-8")); 257 | StringBuilder sb = new StringBuilder(); 258 | 259 | for (byte b : bytes) { 260 | int k = b & 0xFF; 261 | if (k < 16) { 262 | sb.append(0); 263 | } 264 | sb.append(Integer.toHexString(k)); 265 | } 266 | 267 | return sb.toString(); 268 | } 269 | catch (Exception e) 270 | { 271 | throw new RuntimeException(e); 272 | } 273 | } 274 | 275 | private static JSONObject sendRequest(Request request) throws RequestException, JSONException { 276 | try { 277 | final Response response = CLIENT.newCall(request).execute(); 278 | if (response.code() != 200) { 279 | throw new RequestException("status code is: " + response.code()); 280 | } 281 | final JSONObject json = readJson(response); 282 | final JSONObject ddata = json.getJSONObject("ddata"); 283 | final String code = ddata.getString("code"); 284 | if (!code.equals("99")) { 285 | throw new RequestException(String.format("code: %s, msg: %s", code, ddata.get("codemsg")), code); 286 | } 287 | 288 | return ddata; 289 | } catch (IOException e) { 290 | throw new RuntimeException(e); 291 | } 292 | } 293 | 294 | private static JSONObject readJson(Response response) throws IOException, JSONException { 295 | return new JSONObject(response.body().string()); 296 | } 297 | } 298 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/network/model/LoginParams.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink.network.model; 2 | 3 | public class LoginParams { 4 | public final String utime; 5 | public final String uuid; 6 | public final String ucode; 7 | public final String mac; 8 | 9 | public LoginParams(String utime, String uuid, String ucode, String mac) { 10 | this.utime = utime; 11 | this.uuid = uuid; 12 | this.ucode = ucode; 13 | this.mac = mac; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/network/model/RegResult.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink.network.model; 2 | 3 | public class RegResult { 4 | public final String uuid; 5 | public final String ucode; 6 | 7 | public RegResult(String uuid, String ucode) { 8 | this.uuid = uuid; 9 | this.ucode = ucode; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/java/com/czbix/peanutlink/network/model/User.java: -------------------------------------------------------------------------------- 1 | package com.czbix.peanutlink.network.model; 2 | 3 | import android.util.JsonWriter; 4 | 5 | import org.json.JSONException; 6 | import org.json.JSONObject; 7 | 8 | import java.io.IOException; 9 | import java.io.StringWriter; 10 | 11 | public class User { 12 | public final String uuid; 13 | public final String ucode; 14 | public final String session; 15 | 16 | public User(String uuid, String ucode, String session) { 17 | this.uuid = uuid; 18 | this.ucode = ucode; 19 | this.session = session; 20 | } 21 | 22 | public static User fromJson(String str) { 23 | final JSONObject json; 24 | try { 25 | json = new JSONObject(str); 26 | 27 | return new User(json.getString("uuid"), json.getString("ucode"), json.getString("session")); 28 | } catch (JSONException e) { 29 | throw new RuntimeException(e); 30 | } 31 | } 32 | 33 | public String toJson() { 34 | final StringWriter sw = new StringWriter(256); 35 | final JsonWriter writer = new JsonWriter(sw); 36 | 37 | try { 38 | writer.beginObject() 39 | .name("uuid").value(uuid) 40 | .name("ucode").value(ucode) 41 | .name("session").value(session) 42 | .endObject() 43 | .close(); 44 | } catch (IOException e) { 45 | throw new RuntimeException(e); 46 | } 47 | 48 | return sw.toString(); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 21 | 22 | 26 | 27 | 32 | 33 | 36 | 37 | 45 | 46 | 47 | 48 | 51 | 52 | 63 | 64 | 65 | 66 |