From b046baab590da5c6faff598140e0e9fcba18035c Mon Sep 17 00:00:00 2001 From: kitsunyan Date: Sat, 6 Jun 2020 01:28:55 +0300 Subject: [PATCH] Initial commit --- .gitignore | 13 + COPYING | 674 +++++++++ README.md | 11 + build.gradle | 117 ++ extra/launcher-make.sh | 27 + extra/launcher.svg | 273 ++++ gradle.properties | 1 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 55190 bytes gradle/wrapper/gradle-wrapper.properties | 5 + gradlew | 172 +++ gradlew.bat | 84 ++ metadata/en-US/full_description.txt | 1 + metadata/en-US/short_description.txt | 1 + proguard.pro | 5 + src/main/AndroidManifest.xml | 79 + .../kotlin/nya/kitsunyan/foxydroid/Common.kt | 13 + .../nya/kitsunyan/foxydroid/MainActivity.kt | 21 + .../kitsunyan/foxydroid/MainApplication.kt | 176 +++ .../nya/kitsunyan/foxydroid/content/Cache.kt | 179 +++ .../foxydroid/content/Preferences.kt | 124 ++ .../foxydroid/content/ProductPreferences.kt | 64 + .../foxydroid/database/CursorOwner.kt | 97 ++ .../kitsunyan/foxydroid/database/Database.kt | 618 ++++++++ .../foxydroid/database/ObservableCursor.kt | 57 + .../foxydroid/database/QueryBuilder.kt | 47 + .../foxydroid/database/QueryLoader.kt | 94 ++ .../foxydroid/entity/InstalledItem.kt | 3 + .../nya/kitsunyan/foxydroid/entity/Product.kt | 218 +++ .../kitsunyan/foxydroid/entity/ProductItem.kt | 32 + .../foxydroid/entity/ProductPreference.kt | 31 + .../nya/kitsunyan/foxydroid/entity/Release.kt | 156 ++ .../kitsunyan/foxydroid/entity/Repository.kt | 118 ++ .../foxydroid/graphics/DrawableWrapper.kt | 56 + .../foxydroid/graphics/PaddingDrawable.kt | 19 + .../kitsunyan/foxydroid/index/IndexHandler.kt | 259 ++++ .../kitsunyan/foxydroid/index/IndexMerger.kt | 81 ++ .../foxydroid/index/IndexV1Parser.kt | 255 ++++ .../foxydroid/index/RepositoryUpdater.kt | 343 +++++ .../foxydroid/network/CoilDownloader.kt | 106 ++ .../kitsunyan/foxydroid/network/Downloader.kt | 114 ++ .../nya/kitsunyan/foxydroid/screen/Common.kt | 6 + .../screen/EditRepositoryFragment.kt | 485 +++++++ .../foxydroid/screen/MessageDialog.kt | 231 +++ .../foxydroid/screen/PreferencesFragment.kt | 182 +++ .../foxydroid/screen/ProductAdapter.kt | 1270 +++++++++++++++++ .../foxydroid/screen/ProductFragment.kt | 373 +++++ .../foxydroid/screen/ProductsAdapter.kt | 171 +++ .../foxydroid/screen/ProductsFragment.kt | 164 +++ .../foxydroid/screen/RepositoriesAdapter.kt | 61 + .../foxydroid/screen/RepositoriesFragment.kt | 74 + .../foxydroid/screen/RepositoryFragment.kt | 167 +++ .../foxydroid/screen/ScreenActivity.kt | 241 ++++ .../foxydroid/screen/ScreenshotsFragment.kt | 212 +++ .../foxydroid/screen/TabsFragment.kt | 407 ++++++ .../kitsunyan/foxydroid/service/Connection.kt | 43 + .../foxydroid/service/DownloadService.kt | 371 +++++ .../foxydroid/service/SyncService.kt | 420 ++++++ .../foxydroid/utility/KParcelable.kt | 18 + .../foxydroid/utility/PackageItemResolver.kt | 122 ++ .../foxydroid/utility/ProgressInputStream.kt | 29 + .../kitsunyan/foxydroid/utility/RxUtils.kt | 83 ++ .../nya/kitsunyan/foxydroid/utility/Utils.kt | 91 ++ .../foxydroid/utility/extension/Android.kt | 73 + .../foxydroid/utility/extension/Json.kt | 102 ++ .../foxydroid/utility/extension/Resources.kt | 53 + .../foxydroid/utility/extension/Text.kt | 59 + .../widget/ClickableMovementMethod.kt | 48 + .../foxydroid/widget/CursorRecyclerAdapter.kt | 35 + .../foxydroid/widget/DividerItemDecoration.kt | 94 ++ .../foxydroid/widget/EnumRecyclerAdapter.kt | 28 + .../foxydroid/widget/FragmentLinearLayout.kt | 22 + .../foxydroid/widget/RecyclerFastScroller.kt | 243 ++++ .../foxydroid/widget/StableRecyclerAdapter.kt | 27 + src/main/res/animator/slide_in.xml | 19 + src/main/res/animator/slide_in_keep.xml | 4 + src/main/res/animator/slide_out.xml | 20 + src/main/res/color/accent_dark.xml | 13 + src/main/res/color/accent_light.xml | 13 + src/main/res/color/error_dark.xml | 13 + src/main/res/color/error_light.xml | 13 + .../drawable-hdpi/ic_launcher_foreground.png | Bin 0 -> 3808 bytes .../drawable-mdpi/ic_launcher_foreground.png | Bin 0 -> 2396 bytes .../drawable-xhdpi/ic_launcher_foreground.png | Bin 0 -> 5407 bytes .../ic_launcher_foreground.png | Bin 0 -> 8820 bytes .../ic_launcher_foreground.png | Bin 0 -> 12664 bytes src/main/res/drawable/ic_add.xml | 13 + .../res/drawable/ic_application_default.xml | 20 + src/main/res/drawable/ic_arrow_down.xml | 13 + src/main/res/drawable/ic_bug_report.xml | 16 + src/main/res/drawable/ic_code.xml | 13 + src/main/res/drawable/ic_copyright.xml | 20 + src/main/res/drawable/ic_delete.xml | 13 + src/main/res/drawable/ic_donate_bitcoin.xml | 21 + src/main/res/drawable/ic_donate_flattr.xml | 17 + src/main/res/drawable/ic_donate_liberapay.xml | 22 + src/main/res/drawable/ic_donate_litecoin.xml | 14 + src/main/res/drawable/ic_edit.xml | 14 + src/main/res/drawable/ic_email.xml | 14 + src/main/res/drawable/ic_history.xml | 15 + src/main/res/drawable/ic_launch.xml | 14 + src/main/res/drawable/ic_new_releases.xml | 15 + .../drawable/ic_perm_device_information.xml | 14 + src/main/res/drawable/ic_person.xml | 14 + src/main/res/drawable/ic_photo_camera.xml | 16 + src/main/res/drawable/ic_public.xml | 15 + src/main/res/drawable/ic_save.xml | 14 + src/main/res/drawable/ic_search.xml | 15 + src/main/res/drawable/ic_sync.xml | 15 + src/main/res/drawable/ic_tune.xml | 14 + src/main/res/layout/edit_repository.xml | 216 +++ src/main/res/layout/fragment.xml | 32 + src/main/res/layout/link_item.xml | 47 + src/main/res/layout/permissions_item.xml | 32 + src/main/res/layout/product_header_item.xml | 101 ++ src/main/res/layout/product_item.xml | 65 + src/main/res/layout/release_item.xml | 106 ++ src/main/res/layout/repository_item.xml | 27 + src/main/res/layout/section_item.xml | 30 + src/main/res/layout/switch_item.xml | 28 + src/main/res/layout/tabs_toolbar.xml | 57 + src/main/res/layout/title_text_item.xml | 27 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 8 + src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3503 bytes src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2233 bytes src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4884 bytes src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10904 bytes src/main/res/values/colors.xml | 13 + src/main/res/values/ids.xml | 10 + src/main/res/values/strings.xml | 163 +++ src/main/res/values/styles.xml | 26 + 131 files changed, 12203 insertions(+) create mode 100644 .gitignore create mode 100644 COPYING create mode 100644 README.md create mode 100644 build.gradle create mode 100755 extra/launcher-make.sh create mode 100644 extra/launcher.svg create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 metadata/en-US/full_description.txt create mode 100644 metadata/en-US/short_description.txt create mode 100644 proguard.pro create mode 100644 src/main/AndroidManifest.xml create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/Common.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/MainActivity.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/MainApplication.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/content/Cache.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/content/Preferences.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/content/ProductPreferences.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/database/CursorOwner.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/database/Database.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/database/ObservableCursor.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryBuilder.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryLoader.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/entity/InstalledItem.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/entity/Product.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductItem.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductPreference.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/entity/Release.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/entity/Repository.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/graphics/DrawableWrapper.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/graphics/PaddingDrawable.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexHandler.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexMerger.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexV1Parser.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/index/RepositoryUpdater.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/network/CoilDownloader.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/network/Downloader.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/Common.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/EditRepositoryFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/MessageDialog.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/PreferencesFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductAdapter.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductsAdapter.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductsFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/RepositoriesAdapter.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/RepositoriesFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/RepositoryFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/ScreenActivity.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/ScreenshotsFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/screen/TabsFragment.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/service/Connection.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/service/DownloadService.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/service/SyncService.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/KParcelable.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/PackageItemResolver.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/ProgressInputStream.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/RxUtils.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/Utils.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/extension/Android.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/extension/Json.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/extension/Resources.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/utility/extension/Text.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/ClickableMovementMethod.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/CursorRecyclerAdapter.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/DividerItemDecoration.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/EnumRecyclerAdapter.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/FragmentLinearLayout.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/RecyclerFastScroller.kt create mode 100644 src/main/kotlin/nya/kitsunyan/foxydroid/widget/StableRecyclerAdapter.kt create mode 100644 src/main/res/animator/slide_in.xml create mode 100644 src/main/res/animator/slide_in_keep.xml create mode 100644 src/main/res/animator/slide_out.xml create mode 100644 src/main/res/color/accent_dark.xml create mode 100644 src/main/res/color/accent_light.xml create mode 100644 src/main/res/color/error_dark.xml create mode 100644 src/main/res/color/error_light.xml create mode 100644 src/main/res/drawable-hdpi/ic_launcher_foreground.png create mode 100644 src/main/res/drawable-mdpi/ic_launcher_foreground.png create mode 100644 src/main/res/drawable-xhdpi/ic_launcher_foreground.png create mode 100644 src/main/res/drawable-xxhdpi/ic_launcher_foreground.png create mode 100644 src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png create mode 100644 src/main/res/drawable/ic_add.xml create mode 100644 src/main/res/drawable/ic_application_default.xml create mode 100644 src/main/res/drawable/ic_arrow_down.xml create mode 100644 src/main/res/drawable/ic_bug_report.xml create mode 100644 src/main/res/drawable/ic_code.xml create mode 100644 src/main/res/drawable/ic_copyright.xml create mode 100644 src/main/res/drawable/ic_delete.xml create mode 100644 src/main/res/drawable/ic_donate_bitcoin.xml create mode 100644 src/main/res/drawable/ic_donate_flattr.xml create mode 100644 src/main/res/drawable/ic_donate_liberapay.xml create mode 100644 src/main/res/drawable/ic_donate_litecoin.xml create mode 100644 src/main/res/drawable/ic_edit.xml create mode 100644 src/main/res/drawable/ic_email.xml create mode 100644 src/main/res/drawable/ic_history.xml create mode 100644 src/main/res/drawable/ic_launch.xml create mode 100644 src/main/res/drawable/ic_new_releases.xml create mode 100644 src/main/res/drawable/ic_perm_device_information.xml create mode 100644 src/main/res/drawable/ic_person.xml create mode 100644 src/main/res/drawable/ic_photo_camera.xml create mode 100644 src/main/res/drawable/ic_public.xml create mode 100644 src/main/res/drawable/ic_save.xml create mode 100644 src/main/res/drawable/ic_search.xml create mode 100644 src/main/res/drawable/ic_sync.xml create mode 100644 src/main/res/drawable/ic_tune.xml create mode 100644 src/main/res/layout/edit_repository.xml create mode 100644 src/main/res/layout/fragment.xml create mode 100644 src/main/res/layout/link_item.xml create mode 100644 src/main/res/layout/permissions_item.xml create mode 100644 src/main/res/layout/product_header_item.xml create mode 100644 src/main/res/layout/product_item.xml create mode 100644 src/main/res/layout/release_item.xml create mode 100644 src/main/res/layout/repository_item.xml create mode 100644 src/main/res/layout/section_item.xml create mode 100644 src/main/res/layout/switch_item.xml create mode 100644 src/main/res/layout/tabs_toolbar.xml create mode 100644 src/main/res/layout/title_text_item.xml create mode 100644 src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/main/res/values/colors.xml create mode 100644 src/main/res/values/ids.xml create mode 100644 src/main/res/values/strings.xml create mode 100644 src/main/res/values/styles.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4aea7f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +/* +!/.gitignore +!/build.gradle +!/COPYING +!/extra +!/gradle +!/gradle.properties +!/gradlew +!/gradlew.bat +!/metadata +!/proguard.pro +!/README.md +!/src diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/COPYING @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..356a745 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Foxy Droid + +Yet another F-Droid client. + +## Description + +Unofficial F-Droid client that resembles classic F-Droid client. + +## License + +Licensed under the terms of GNU GPL version 3 or later. diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..36c89ef --- /dev/null +++ b/build.gradle @@ -0,0 +1,117 @@ +buildscript { + ext.versions = [ + android: '3.4.1', + kotlin: '1.3.72' + ] + + repositories { + google() + jcenter() + } + + dependencies { + classpath 'com.android.tools.build:gradle:' + versions.android + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:' + versions.kotlin + } +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' + +android { + compileSdkVersion 29 + buildToolsVersion '29.0.3' + + defaultConfig { + archivesBaseName = 'foxy-droid' + applicationId 'nya.kitsunyan.foxydroid' + minSdkVersion 21 + targetSdkVersion 29 + versionCode 1 + versionName '1.0' + + def languages = [ 'en' ] + buildConfigField 'String[]', 'LANGUAGES', '{ "' + languages.join('", "') + '" }' + resConfigs languages + } + + sourceSets.all { + def javaDir = it.java.srcDirs.find { it.name == 'java' } + it.java.srcDirs += new File(javaDir.parentFile, 'kotlin') + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = compileOptions.sourceCompatibility.toString() + } + + buildTypes { + debug { + minifyEnabled false + shrinkResources false + } + release { + minifyEnabled true + shrinkResources true + } + all { + crunchPngs false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.pro' + } + } + + lintOptions { + warning 'InvalidPackage' + ignore 'InvalidVectorPath' + } + + def signingPropertiesFile = rootProject.file('keystore.properties') + if (signingPropertiesFile.exists()) { + def signingProperties = new Properties() + signingProperties.load(signingPropertiesFile.newDataInputStream()) + + def signing = [ + storeFile: signingProperties['store.file'], + storePassword: signingProperties['store.password'], + keyAlias: signingProperties['key.alias'], + keyPassword: signingProperties['key.password'] + ] + + if (!signing.any { _, v -> v == null }) { + signingConfigs { + primary { + storeFile file(signing.storeFile) + storePassword signing.storePassword + keyAlias signing.keyAlias + keyPassword signing.keyPassword + } + } + + buildTypes { + debug.signingConfig signingConfigs.primary + release.signingConfig signingConfigs.primary + } + } + } +} + +repositories { + google() + jcenter() +} + +dependencies { + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:' + versions.kotlin + implementation 'androidx.appcompat:appcompat:1.1.0' + implementation 'androidx.preference:preference:1.1.1' + implementation 'com.google.android.material:material:1.1.0' + implementation 'com.squareup.okhttp3:okhttp:4.7.2' + implementation 'io.reactivex.rxjava3:rxjava:3.0.4' + implementation 'io.reactivex.rxjava3:rxandroid:3.0.0' + implementation 'com.fasterxml.jackson.core:jackson-core:2.11.0' + implementation 'io.coil-kt:coil:0.11.0' +} diff --git a/extra/launcher-make.sh b/extra/launcher-make.sh new file mode 100755 index 0000000..3cfaff5 --- /dev/null +++ b/extra/launcher-make.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +set -e +cd "`dirname "$0"`" + +dimensions=(mdpi:1 hdpi:1.5 xhdpi:2 xxhdpi:3 xxxhdpi:4) +res='../src/main/res' + +cp 'launcher.svg' 'launcher-foreground.svg' +inkscape --select circle --verb EditDelete --verb=FileSave --verb=FileQuit \ +'launcher-foreground.svg' + +for dimension in ${dimensions[@]}; do + resource="${dimension%:*}" + scale="${dimension#*:}" + mkdir -p "$res/mipmap-$resource" "$res/drawable-$resource" + size="`bc <<< "48 * $scale"`" + inkscape 'launcher.svg' -a 15:15:93:93 -w "$size" -h "$size" \ + -e "$res/mipmap-$resource/ic_launcher.png" + optipng "$res/mipmap-$resource/ic_launcher.png" + size="`bc <<< "108 * $scale"`" + inkscape 'launcher-foreground.svg' -w "$size" -h "$size" \ + -e "$res/drawable-$resource/ic_launcher_foreground.png" + optipng "$res/drawable-$resource/ic_launcher_foreground.png" +done + +rm 'launcher-foreground.svg' diff --git a/extra/launcher.svg b/extra/launcher.svg new file mode 100644 index 0000000..e9f1150 --- /dev/null +++ b/extra/launcher.svg @@ -0,0 +1,273 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..5bac8ac --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +android.useAndroidX=true diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..87b738cbd051603d91cc39de6cb000dd98fe6b02 GIT binary patch literal 55190 zcmafaW0WS*vSoFbZQHhO+s0S6%`V%vZQJa!ZQHKus_B{g-pt%P_q|ywBQt-*Stldc z$+IJ3?^KWm27v+sf`9-50uuadKtMnL*BJ;1^6ynvR7H?hQcjE>7)art9Bu0Pcm@7C z@c%WG|JzYkP)<@zR9S^iR_sA`azaL$mTnGKnwDyMa;8yL_0^>Ba^)phg0L5rOPTbm7g*YIRLg-2^{qe^`rb!2KqS zk~5wEJtTdD?)3+}=eby3x6%i)sb+m??NHC^u=tcG8p$TzB<;FL(WrZGV&cDQb?O0GMe6PBV=V z?tTO*5_HTW$xea!nkc~Cnx#cL_rrUGWPRa6l+A{aiMY=<0@8y5OC#UcGeE#I>nWh}`#M#kIn-$A;q@u-p71b#hcSItS!IPw?>8 zvzb|?@Ahb22L(O4#2Sre&l9H(@TGT>#Py)D&eW-LNb!=S;I`ZQ{w;MaHW z#to!~TVLgho_Pm%zq@o{K3Xq?I|MVuVSl^QHnT~sHlrVxgsqD-+YD?Nz9@HA<;x2AQjxP)r6Femg+LJ-*)k%EZ}TTRw->5xOY z9#zKJqjZgC47@AFdk1$W+KhTQJKn7e>A&?@-YOy!v_(}GyV@9G#I?bsuto4JEp;5|N{orxi_?vTI4UF0HYcA( zKyGZ4<7Fk?&LZMQb6k10N%E*$gr#T&HsY4SPQ?yerqRz5c?5P$@6dlD6UQwZJ*Je9 z7n-@7!(OVdU-mg@5$D+R%gt82Lt%&n6Yr4=|q>XT%&^z_D*f*ug8N6w$`woqeS-+#RAOfSY&Rz z?1qYa5xi(7eTCrzCFJfCxc%j{J}6#)3^*VRKF;w+`|1n;Xaojr2DI{!<3CaP`#tXs z*`pBQ5k@JLKuCmovFDqh_`Q;+^@t_;SDm29 zCNSdWXbV?9;D4VcoV`FZ9Ggrr$i<&#Dx3W=8>bSQIU_%vf)#(M2Kd3=rN@^d=QAtC zI-iQ;;GMk|&A++W5#hK28W(YqN%?!yuW8(|Cf`@FOW5QbX|`97fxmV;uXvPCqxBD zJ9iI37iV)5TW1R+fV16y;6}2tt~|0J3U4E=wQh@sx{c_eu)t=4Yoz|%Vp<#)Qlh1V z0@C2ZtlT>5gdB6W)_bhXtcZS)`9A!uIOa`K04$5>3&8An+i9BD&GvZZ=7#^r=BN=k za+=Go;qr(M)B~KYAz|<^O3LJON}$Q6Yuqn8qu~+UkUKK~&iM%pB!BO49L+?AL7N7o z(OpM(C-EY753=G=WwJHE`h*lNLMNP^c^bBk@5MyP5{v7x>GNWH>QSgTe5 z!*GPkQ(lcbEs~)4ovCu!Zt&$${9$u(<4@9%@{U<-ksAqB?6F`bQ;o-mvjr)Jn7F&j$@`il1Mf+-HdBs<-`1FahTxmPMMI)@OtI&^mtijW6zGZ67O$UOv1Jj z;a3gmw~t|LjPkW3!EZ=)lLUhFzvO;Yvj9g`8hm%6u`;cuek_b-c$wS_0M4-N<@3l|88 z@V{Sd|M;4+H6guqMm4|v=C6B7mlpP(+It%0E;W`dxMOf9!jYwWj3*MRk`KpS_jx4c z=hrKBkFK;gq@;wUV2eqE3R$M+iUc+UD0iEl#-rECK+XmH9hLKrC={j@uF=f3UiceB zU5l$FF7#RKjx+6!JHMG5-!@zI-eG=a-!Bs^AFKqN_M26%cIIcSs61R$yuq@5a3c3& z4%zLs!g}+C5%`ja?F`?5-og0lv-;(^e<`r~p$x%&*89_Aye1N)9LNVk?9BwY$Y$$F^!JQAjBJvywXAesj7lTZ)rXuxv(FFNZVknJha99lN=^h`J2> zl5=~(tKwvHHvh|9-41@OV`c;Ws--PE%{7d2sLNbDp;A6_Ka6epzOSFdqb zBa0m3j~bT*q1lslHsHqaHIP%DF&-XMpCRL(v;MV#*>mB^&)a=HfLI7efblG z(@hzN`|n+oH9;qBklb=d^S0joHCsArnR1-h{*dIUThik>ot^!6YCNjg;J_i3h6Rl0ji)* zo(tQ~>xB!rUJ(nZjCA^%X;)H{@>uhR5|xBDA=d21p@iJ!cH?+%U|VSh2S4@gv`^)^ zNKD6YlVo$%b4W^}Rw>P1YJ|fTb$_(7C;hH+ z1XAMPb6*p^h8)e5nNPKfeAO}Ik+ZN_`NrADeeJOq4Ak;sD~ zTe77no{Ztdox56Xi4UE6S7wRVxJzWxKj;B%v7|FZ3cV9MdfFp7lWCi+W{}UqekdpH zdO#eoOuB3Fu!DU`ErfeoZWJbWtRXUeBzi zBTF-AI7yMC^ntG+8%mn(I6Dw}3xK8v#Ly{3w3_E?J4(Q5JBq~I>u3!CNp~Ekk&YH` z#383VO4O42NNtcGkr*K<+wYZ>@|sP?`AQcs5oqX@-EIqgK@Pmp5~p6O6qy4ml~N{D z{=jQ7k(9!CM3N3Vt|u@%ssTw~r~Z(}QvlROAkQQ?r8OQ3F0D$aGLh zny+uGnH5muJ<67Z=8uilKvGuANrg@s3Vu_lU2ajb?rIhuOd^E@l!Kl0hYIxOP1B~Q zggUmXbh$bKL~YQ#!4fos9UUVG#}HN$lIkM<1OkU@r>$7DYYe37cXYwfK@vrHwm;pg zbh(hEU|8{*d$q7LUm+x&`S@VbW*&p-sWrplWnRM|I{P;I;%U`WmYUCeJhYc|>5?&& zj}@n}w~Oo=l}iwvi7K6)osqa;M8>fRe}>^;bLBrgA;r^ZGgY@IC^ioRmnE&H4)UV5 zO{7egQ7sBAdoqGsso5q4R(4$4Tjm&&C|7Huz&5B0wXoJzZzNc5Bt)=SOI|H}+fbit z-PiF5(NHSy>4HPMrNc@SuEMDuKYMQ--G+qeUPqO_9mOsg%1EHpqoX^yNd~~kbo`cH zlV0iAkBFTn;rVb>EK^V6?T~t~3vm;csx+lUh_%ROFPy0(omy7+_wYjN!VRDtwDu^h4n|xpAMsLepm% zggvs;v8+isCW`>BckRz1MQ=l>K6k^DdT`~sDXTWQ<~+JtY;I~I>8XsAq3yXgxe>`O zZdF*{9@Z|YtS$QrVaB!8&`&^W->_O&-JXn1n&~}o3Z7FL1QE5R*W2W@=u|w~7%EeC1aRfGtJWxImfY-D3t!!nBkWM> zafu>^Lz-ONgT6ExjV4WhN!v~u{lt2-QBN&UxwnvdH|I%LS|J-D;o>@@sA62@&yew0 z)58~JSZP!(lX;da!3`d)D1+;K9!lyNlkF|n(UduR-%g>#{`pvrD^ClddhJyfL7C-(x+J+9&7EsC~^O`&}V%)Ut8^O_7YAXPDpzv8ir4 zl`d)(;imc6r16k_d^)PJZ+QPxxVJS5e^4wX9D=V2zH&wW0-p&OJe=}rX`*->XT=;_qI&)=WHkYnZx6bLoUh_)n-A}SF_ z9z7agNTM5W6}}ui=&Qs@pO5$zHsOWIbd_&%j^Ok5PJ3yUWQw*i4*iKO)_er2CDUME ztt+{Egod~W-fn^aLe)aBz)MOc_?i-stTj}~iFk7u^-gGSbU;Iem06SDP=AEw9SzuF zeZ|hKCG3MV(z_PJg0(JbqTRf4T{NUt%kz&}4S`)0I%}ZrG!jgW2GwP=WTtkWS?DOs znI9LY!dK+1_H0h+i-_~URb^M;4&AMrEO_UlDV8o?E>^3x%ZJyh$JuDMrtYL8|G3If zPf2_Qb_W+V?$#O; zydKFv*%O;Y@o_T_UAYuaqx1isMKZ^32JtgeceA$0Z@Ck0;lHbS%N5)zzAW9iz; z8tTKeK7&qw!8XVz-+pz>z-BeIzr*#r0nB^cntjQ9@Y-N0=e&ZK72vlzX>f3RT@i7@ z=z`m7jNk!9%^xD0ug%ptZnM>F;Qu$rlwo}vRGBIymPL)L|x}nan3uFUw(&N z24gdkcb7!Q56{0<+zu zEtc5WzG2xf%1<@vo$ZsuOK{v9gx^0`gw>@h>ZMLy*h+6ueoie{D#}}` zK2@6Xxq(uZaLFC%M!2}FX}ab%GQ8A0QJ?&!vaI8Gv=vMhd);6kGguDmtuOElru()) zuRk&Z{?Vp!G~F<1#s&6io1`poBqpRHyM^p;7!+L??_DzJ8s9mYFMQ0^%_3ft7g{PD zZd}8E4EV}D!>F?bzcX=2hHR_P`Xy6?FOK)mCj)Ym4s2hh z0OlOdQa@I;^-3bhB6mpw*X5=0kJv8?#XP~9){G-+0ST@1Roz1qi8PhIXp1D$XNqVG zMl>WxwT+K`SdO1RCt4FWTNy3!i?N>*-lbnn#OxFJrswgD7HjuKpWh*o@QvgF&j+CT z{55~ZsUeR1aB}lv#s_7~+9dCix!5(KR#c?K?e2B%P$fvrsZxy@GP#R#jwL{y#Ld$} z7sF>QT6m|}?V;msb?Nlohj7a5W_D$y+4O6eI;Zt$jVGymlzLKscqer9#+p2$0It&u zWY!dCeM6^B^Z;ddEmhi?8`scl=Lhi7W%2|pT6X6^%-=q90DS(hQ-%c+E*ywPvmoF(KqDoW4!*gmQIklm zk#!GLqv|cs(JRF3G?=AYY19{w@~`G3pa z@xR9S-Hquh*&5Yas*VI};(%9%PADn`kzm zeWMJVW=>>wap*9|R7n#!&&J>gq04>DTCMtj{P^d12|2wXTEKvSf?$AvnE!peqV7i4 zE>0G%CSn%WCW1yre?yi9*aFP{GvZ|R4JT}M%x_%Hztz2qw?&28l&qW<6?c6ym{f$d z5YCF+k#yEbjCN|AGi~-NcCG8MCF1!MXBFL{#7q z)HO+WW173?kuI}^Xat;Q^gb4Hi0RGyB}%|~j8>`6X4CPo+|okMbKy9PHkr58V4bX6<&ERU)QlF8%%huUz&f+dwTN|tk+C&&o@Q1RtG`}6&6;ncQuAcfHoxd5AgD7`s zXynq41Y`zRSiOY@*;&1%1z>oNcWTV|)sjLg1X8ijg1Y zbIGL0X*Sd}EXSQ2BXCKbJmlckY(@EWn~Ut2lYeuw1wg?hhj@K?XB@V_ZP`fyL~Yd3n3SyHU-RwMBr6t-QWE5TinN9VD4XVPU; zonIIR!&pGqrLQK)=#kj40Im%V@ij0&Dh0*s!lnTw+D`Dt-xmk-jmpJv$1-E-vfYL4 zqKr#}Gm}~GPE+&$PI@4ag@=M}NYi7Y&HW82Q`@Y=W&PE31D110@yy(1vddLt`P%N^ z>Yz195A%tnt~tvsSR2{m!~7HUc@x<&`lGX1nYeQUE(%sphTi>JsVqSw8xql*Ys@9B z>RIOH*rFi*C`ohwXjyeRBDt8p)-u{O+KWP;$4gg||%*u{$~yEj+Al zE(hAQRQ1k7MkCq9s4^N3ep*$h^L%2Vq?f?{+cicpS8lo)$Cb69b98au+m2J_e7nYwID0@`M9XIo1H~|eZFc8Hl!qly612ADCVpU zY8^*RTMX(CgehD{9v|^9vZ6Rab`VeZ2m*gOR)Mw~73QEBiktViBhR!_&3l$|be|d6 zupC`{g89Y|V3uxl2!6CM(RNpdtynaiJ~*DqSTq9Mh`ohZnb%^3G{k;6%n18$4nAqR zjPOrP#-^Y9;iw{J@XH9=g5J+yEVh|e=4UeY<^65`%gWtdQ=-aqSgtywM(1nKXh`R4 zzPP&7r)kv_uC7X9n=h=!Zrf<>X=B5f<9~Q>h#jYRD#CT7D~@6@RGNyO-#0iq0uHV1 zPJr2O4d_xLmg2^TmG7|dpfJ?GGa`0|YE+`2Rata9!?$j#e9KfGYuLL(*^z z!SxFA`$qm)q-YKh)WRJZ@S+-sD_1E$V?;(?^+F3tVcK6 z2fE=8hV*2mgiAbefU^uvcM?&+Y&E}vG=Iz!%jBF7iv){lyC`)*yyS~D8k+Mx|N3bm zI~L~Z$=W9&`x)JnO;8c>3LSDw!fzN#X3qi|0`sXY4?cz{*#xz!kvZ9bO=K3XbN z5KrgN=&(JbXH{Wsu9EdmQ-W`i!JWEmfI;yVTT^a-8Ch#D8xf2dtyi?7p z%#)W3n*a#ndFpd{qN|+9Jz++AJQO#-Y7Z6%*%oyEP5zs}d&kKIr`FVEY z;S}@d?UU=tCdw~EJ{b}=9x}S2iv!!8<$?d7VKDA8h{oeD#S-$DV)-vPdGY@x08n)@ zag?yLF_E#evvRTj4^CcrLvBL=fft&@HOhZ6Ng4`8ijt&h2y}fOTC~7GfJi4vpomA5 zOcOM)o_I9BKz}I`q)fu+Qnfy*W`|mY%LO>eF^a z;$)?T4F-(X#Q-m}!-k8L_rNPf`Mr<9IWu)f&dvt=EL+ESYmCvErd@8B9hd)afc(ZL94S z?rp#h&{7Ah5IJftK4VjATklo7@hm?8BX*~oBiz)jyc9FuRw!-V;Uo>p!CWpLaIQyt zAs5WN)1CCeux-qiGdmbIk8LR`gM+Qg=&Ve}w?zA6+sTL)abU=-cvU`3E?p5$Hpkxw znu0N659qR=IKnde*AEz_7z2pdi_Bh-sb3b=PdGO1Pdf_q2;+*Cx9YN7p_>rl``knY zRn%aVkcv1(W;`Mtp_DNOIECtgq%ufk-mu_<+Fu3Q17Tq4Rr(oeq)Yqk_CHA7LR@7@ zIZIDxxhS&=F2IQfusQ+Nsr%*zFK7S4g!U0y@3H^Yln|i;0a5+?RPG;ZSp6Tul>ezM z`40+516&719qT)mW|ArDSENle5hE2e8qY+zfeZoy12u&xoMgcP)4=&P-1Ib*-bAy` zlT?>w&B|ei-rCXO;sxo7*G;!)_p#%PAM-?m$JP(R%x1Hfas@KeaG%LO?R=lmkXc_MKZW}3f%KZ*rAN?HYvbu2L$ zRt_uv7~-IejlD1x;_AhwGXjB94Q=%+PbxuYzta*jw?S&%|qb=(JfJ?&6P=R7X zV%HP_!@-zO*zS}46g=J}#AMJ}rtWBr21e6hOn&tEmaM%hALH7nlm2@LP4rZ>2 zebe5aH@k!e?ij4Zwak#30|}>;`bquDQK*xmR=zc6vj0yuyC6+U=LusGnO3ZKFRpen z#pwzh!<+WBVp-!$MAc<0i~I%fW=8IO6K}bJ<-Scq>e+)951R~HKB?Mx2H}pxPHE@} zvqpq5j81_jtb_WneAvp<5kgdPKm|u2BdQx9%EzcCN&U{l+kbkhmV<1}yCTDv%&K^> zg;KCjwh*R1f_`6`si$h6`jyIKT7rTv5#k~x$mUyIw)_>Vr)D4fwIs@}{FSX|5GB1l z4vv;@oS@>Bu7~{KgUa_8eg#Lk6IDT2IY$41$*06{>>V;Bwa(-@N;ex4;D`(QK*b}{ z{#4$Hmt)FLqERgKz=3zXiV<{YX6V)lvYBr3V>N6ajeI~~hGR5Oe>W9r@sg)Na(a4- zxm%|1OKPN6^%JaD^^O~HbLSu=f`1px>RawOxLr+1b2^28U*2#h*W^=lSpSY4(@*^l z{!@9RSLG8Me&RJYLi|?$c!B0fP=4xAM4rerxX{xy{&i6=AqXueQAIBqO+pmuxy8Ib z4X^}r!NN3-upC6B#lt7&x0J;)nb9O~xjJMemm$_fHuP{DgtlU3xiW0UesTzS30L+U zQzDI3p&3dpONhd5I8-fGk^}@unluzu%nJ$9pzoO~Kk!>dLxw@M)M9?pNH1CQhvA`z zV;uacUtnBTdvT`M$1cm9`JrT3BMW!MNVBy%?@ZX%;(%(vqQAz<7I!hlDe|J3cn9=} zF7B;V4xE{Ss76s$W~%*$JviK?w8^vqCp#_G^jN0j>~Xq#Zru26e#l3H^{GCLEXI#n z?n~F-Lv#hU(bZS`EI9(xGV*jT=8R?CaK)t8oHc9XJ;UPY0Hz$XWt#QyLBaaz5+}xM zXk(!L_*PTt7gwWH*HLWC$h3Ho!SQ-(I||nn_iEC{WT3S{3V{8IN6tZ1C+DiFM{xlI zeMMk{o5;I6UvaC)@WKp9D+o?2Vd@4)Ue-nYci()hCCsKR`VD;hr9=vA!cgGL%3k^b(jADGyPi2TKr(JNh8mzlIR>n(F_hgiV(3@Ds(tjbNM7GoZ;T|3 zWzs8S`5PrA!9){jBJuX4y`f<4;>9*&NY=2Sq2Bp`M2(fox7ZhIDe!BaQUb@P(ub9D zlP8!p(AN&CwW!V&>H?yPFMJ)d5x#HKfwx;nS{Rr@oHqpktOg)%F+%1#tsPtq7zI$r zBo-Kflhq-=7_eW9B2OQv=@?|y0CKN77)N;z@tcg;heyW{wlpJ1t`Ap!O0`Xz{YHqO zI1${8Hag^r!kA<2_~bYtM=<1YzQ#GGP+q?3T7zYbIjN6Ee^V^b&9en$8FI*NIFg9G zPG$OXjT0Ku?%L7fat8Mqbl1`azf1ltmKTa(HH$Dqlav|rU{zP;Tbnk-XkGFQ6d+gi z-PXh?_kEJl+K98&OrmzgPIijB4!Pozbxd0H1;Usy!;V>Yn6&pu*zW8aYx`SC!$*ti zSn+G9p=~w6V(fZZHc>m|PPfjK6IN4(o=IFu?pC?+`UZAUTw!e`052{P=8vqT^(VeG z=psASIhCv28Y(;7;TuYAe>}BPk5Qg=8$?wZj9lj>h2kwEfF_CpK=+O6Rq9pLn4W)# zeXCKCpi~jsfqw7Taa0;!B5_C;B}e56W1s8@p*)SPzA;Fd$Slsn^=!_&!mRHV*Lmt| zBGIDPuR>CgS4%cQ4wKdEyO&Z>2aHmja;Pz+n|7(#l%^2ZLCix%>@_mbnyPEbyrHaz z>j^4SIv;ZXF-Ftzz>*t4wyq)ng8%0d;(Z_ExZ-cxwei=8{(br-`JYO(f23Wae_MqE z3@{Mlf^%M5G1SIN&en1*| zH~ANY1h3&WNsBy$G9{T=`kcxI#-X|>zLX2r*^-FUF+m0{k)n#GTG_mhG&fJfLj~K& zU~~6othMlvMm9<*SUD2?RD+R17|Z4mgR$L*R3;nBbo&Vm@39&3xIg;^aSxHS>}gwR zmzs?h8oPnNVgET&dx5^7APYx6Vv6eou07Zveyd+^V6_LzI$>ic+pxD_8s~ zC<}ucul>UH<@$KM zT4oI=62M%7qQO{}re-jTFqo9Z;rJKD5!X5$iwUsh*+kcHVhID08MB5cQD4TBWB(rI zuWc%CA}}v|iH=9gQ?D$1#Gu!y3o~p7416n54&Hif`U-cV?VrUMJyEqo_NC4#{puzU zzXEE@UppeeRlS9W*^N$zS`SBBi<@tT+<%3l@KhOy^%MWB9(A#*J~DQ;+MK*$rxo6f zcx3$3mcx{tly!q(p2DQrxcih|)0do_ZY77pyHGE#Q(0k*t!HUmmMcYFq%l$-o6%lS zDb49W-E?rQ#Hl``C3YTEdGZjFi3R<>t)+NAda(r~f1cT5jY}s7-2^&Kvo&2DLTPYP zhVVo-HLwo*vl83mtQ9)PR#VBg)FN}+*8c-p8j`LnNUU*Olm1O1Qqe62D#$CF#?HrM zy(zkX|1oF}Z=T#3XMLWDrm(|m+{1&BMxHY7X@hM_+cV$5-t!8HT(dJi6m9{ja53Yw z3f^`yb6Q;(e|#JQIz~B*=!-GbQ4nNL-NL z@^NWF_#w-Cox@h62;r^;Y`NX8cs?l^LU;5IWE~yvU8TqIHij!X8ydbLlT0gwmzS9} z@5BccG?vO;rvCs$mse1*ANi-cYE6Iauz$Fbn3#|ToAt5v7IlYnt6RMQEYLldva{~s zvr>1L##zmeoYgvIXJ#>bbuCVuEv2ZvZ8I~PQUN3wjP0UC)!U+wn|&`V*8?)` zMSCuvnuGec>QL+i1nCPGDAm@XSMIo?A9~C?g2&G8aNKjWd2pDX{qZ?04+2 zeyLw}iEd4vkCAWwa$ zbrHlEf3hfN7^1g~aW^XwldSmx1v~1z(s=1az4-wl} z`mM+G95*N*&1EP#u3}*KwNrPIgw8Kpp((rdEOO;bT1;6ea~>>sK+?!;{hpJ3rR<6UJb`O8P4@{XGgV%63_fs%cG8L zk9Fszbdo4tS$g0IWP1>t@0)E%-&9yj%Q!fiL2vcuL;90fPm}M==<>}Q)&sp@STFCY z^p!RzmN+uXGdtPJj1Y-khNyCb6Y$Vs>eZyW zPaOV=HY_T@FwAlleZCFYl@5X<<7%5DoO(7S%Lbl55?{2vIr_;SXBCbPZ(up;pC6Wx={AZL?shYOuFxLx1*>62;2rP}g`UT5+BHg(ju z&7n5QSvSyXbioB9CJTB#x;pexicV|9oaOpiJ9VK6EvKhl4^Vsa(p6cIi$*Zr0UxQ z;$MPOZnNae2Duuce~7|2MCfhNg*hZ9{+8H3?ts9C8#xGaM&sN;2lriYkn9W>&Gry! z3b(Xx1x*FhQkD-~V+s~KBfr4M_#0{`=Yrh90yj}Ph~)Nx;1Y^8<418tu!$1<3?T*~ z7Dl0P3Uok-7w0MPFQexNG1P5;y~E8zEvE49>$(f|XWtkW2Mj`udPn)pb%} zrA%wRFp*xvDgC767w!9`0vx1=q!)w!G+9(-w&p*a@WXg{?T&%;qaVcHo>7ca%KX$B z^7|KBPo<2;kM{2mRnF8vKm`9qGV%|I{y!pKm8B(q^2V;;x2r!1VJ^Zz8bWa)!-7a8 zSRf@dqEPlsj!7}oNvFFAA)75})vTJUwQ03hD$I*j6_5xbtd_JkE2`IJD_fQ;a$EkO z{fQ{~e%PKgPJsD&PyEvDmg+Qf&p*-qu!#;1k2r_(H72{^(Z)htgh@F?VIgK#_&eS- z$~(qInec>)XIkv@+{o6^DJLpAb>!d}l1DK^(l%#OdD9tKK6#|_R?-%0V!`<9Hj z3w3chDwG*SFte@>Iqwq`J4M&{aHXzyigT620+Vf$X?3RFfeTcvx_e+(&Q*z)t>c0e zpZH$1Z3X%{^_vylHVOWT6tno=l&$3 z9^eQ@TwU#%WMQaFvaYp_we%_2-9=o{+ck zF{cKJCOjpW&qKQquyp2BXCAP920dcrZ}T1@piukx_NY;%2W>@Wca%=Ch~x5Oj58Hv z;D-_ALOZBF(Mqbcqjd}P3iDbek#Dwzu`WRs`;hRIr*n0PV7vT+%Io(t}8KZ zpp?uc2eW!v28ipep0XNDPZt7H2HJ6oey|J3z!ng#1H~x_k%35P+Cp%mqXJ~cV0xdd z^4m5^K_dQ^Sg?$P`))ccV=O>C{Ds(C2WxX$LMC5vy=*44pP&)X5DOPYfqE${)hDg< z3hcG%U%HZ39=`#Ko4Uctg&@PQLf>?0^D|4J(_1*TFMOMB!Vv1_mnOq$BzXQdOGqgy zOp#LBZ!c>bPjY1NTXksZmbAl0A^Y&(%a3W-k>bE&>K?px5Cm%AT2E<&)Y?O*?d80d zgI5l~&Mve;iXm88Q+Fw7{+`PtN4G7~mJWR^z7XmYQ>uoiV!{tL)hp|= zS(M)813PM`d<501>{NqaPo6BZ^T{KBaqEVH(2^Vjeq zgeMeMpd*1tE@@);hGjuoVzF>Cj;5dNNwh40CnU+0DSKb~GEMb_# zT8Z&gz%SkHq6!;_6dQFYE`+b`v4NT7&@P>cA1Z1xmXy<2htaDhm@XXMp!g($ zw(7iFoH2}WR`UjqjaqOQ$ecNt@c|K1H1kyBArTTjLp%-M`4nzOhkfE#}dOpcd;b#suq8cPJ&bf5`6Tq>ND(l zib{VrPZ>{KuaIg}Y$W>A+nrvMg+l4)-@2jpAQ5h(Tii%Ni^-UPVg{<1KGU2EIUNGaXcEkOedJOusFT9X3%Pz$R+-+W+LlRaY-a$5r?4V zbPzgQl22IPG+N*iBRDH%l{Zh$fv9$RN1sU@Hp3m=M}{rX%y#;4(x1KR2yCO7Pzo>rw(67E{^{yUR`91nX^&MxY@FwmJJbyPAoWZ9Z zcBS$r)&ogYBn{DOtD~tIVJUiq|1foX^*F~O4hlLp-g;Y2wKLLM=?(r3GDqsPmUo*? zwKMEi*%f)C_@?(&&hk>;m07F$X7&i?DEK|jdRK=CaaNu-)pX>n3}@%byPKVkpLzBq z{+Py&!`MZ^4@-;iY`I4#6G@aWMv{^2VTH7|WF^u?3vsB|jU3LgdX$}=v7#EHRN(im zI(3q-eU$s~r=S#EWqa_2!G?b~ z<&brq1vvUTJH380=gcNntZw%7UT8tLAr-W49;9y^=>TDaTC|cKA<(gah#2M|l~j)w zY8goo28gj$n&zcNgqX1Qn6=<8?R0`FVO)g4&QtJAbW3G#D)uNeac-7cH5W#6i!%BH z=}9}-f+FrtEkkrQ?nkoMQ1o-9_b+&=&C2^h!&mWFga#MCrm85hW;)1pDt;-uvQG^D zntSB?XA*0%TIhtWDS!KcI}kp3LT>!(Nlc(lQN?k^bS8Q^GGMfo}^|%7s;#r+pybl@?KA++|FJ zr%se9(B|g*ERQU96az%@4gYrxRRxaM2*b}jNsG|0dQi;Rw{0WM0E>rko!{QYAJJKY z)|sX0N$!8d9E|kND~v|f>3YE|uiAnqbkMn)hu$if4kUkzKqoNoh8v|S>VY1EKmgO} zR$0UU2o)4i4yc1inx3}brso+sio{)gfbLaEgLahj8(_Z#4R-v) zglqwI%`dsY+589a8$Mu7#7_%kN*ekHupQ#48DIN^uhDxblDg3R1yXMr^NmkR z7J_NWCY~fhg}h!_aXJ#?wsZF$q`JH>JWQ9`jbZzOBpS`}-A$Vgkq7+|=lPx9H7QZG z8i8guMN+yc4*H*ANr$Q-3I{FQ-^;8ezWS2b8rERp9TMOLBxiG9J*g5=?h)mIm3#CGi4JSq1ohFrcrxx@`**K5%T}qbaCGldV!t zVeM)!U3vbf5FOy;(h08JnhSGxm)8Kqxr9PsMeWi=b8b|m_&^@#A3lL;bVKTBx+0v8 zLZeWAxJ~N27lsOT2b|qyp$(CqzqgW@tyy?CgwOe~^i;ZH zlL``i4r!>i#EGBNxV_P@KpYFQLz4Bdq{#zA&sc)*@7Mxsh9u%e6Ke`?5Yz1jkTdND zR8!u_yw_$weBOU}24(&^Bm|(dSJ(v(cBct}87a^X(v>nVLIr%%D8r|&)mi+iBc;B;x;rKq zd8*X`r?SZsTNCPQqoFOrUz8nZO?225Z#z(B!4mEp#ZJBzwd7jW1!`sg*?hPMJ$o`T zR?KrN6OZA1H{9pA;p0cSSu;@6->8aJm1rrO-yDJ7)lxuk#npUk7WNER1Wwnpy%u zF=t6iHzWU(L&=vVSSc^&D_eYP3TM?HN!Tgq$SYC;pSIPWW;zeNm7Pgub#yZ@7WPw#f#Kl)W4%B>)+8%gpfoH1qZ;kZ*RqfXYeGXJ_ zk>2otbp+1By`x^1V!>6k5v8NAK@T;89$`hE0{Pc@Q$KhG0jOoKk--Qx!vS~lAiypV zCIJ&6B@24`!TxhJ4_QS*S5;;Pk#!f(qIR7*(c3dN*POKtQe)QvR{O2@QsM%ujEAWEm) z+PM=G9hSR>gQ`Bv2(k}RAv2+$7qq(mU`fQ+&}*i%-RtSUAha>70?G!>?w%F(b4k!$ zvm;E!)2`I?etmSUFW7WflJ@8Nx`m_vE2HF#)_BiD#FaNT|IY@!uUbd4v$wTglIbIX zblRy5=wp)VQzsn0_;KdM%g<8@>#;E?vypTf=F?3f@SSdZ;XpX~J@l1;p#}_veWHp>@Iq_T z@^7|h;EivPYv1&u0~l9(a~>dV9Uw10QqB6Dzu1G~-l{*7IktljpK<_L8m0|7VV_!S zRiE{u97(%R-<8oYJ{molUd>vlGaE-C|^<`hppdDz<7OS13$#J zZ+)(*rZIDSt^Q$}CRk0?pqT5PN5TT`Ya{q(BUg#&nAsg6apPMhLTno!SRq1e60fl6GvpnwDD4N> z9B=RrufY8+g3_`@PRg+(+gs2(bd;5#{uTZk96CWz#{=&h9+!{_m60xJxC%r&gd_N! z>h5UzVX%_7@CUeAA1XFg_AF%(uS&^1WD*VPS^jcC!M2v@RHZML;e(H-=(4(3O&bX- zI6>usJOS+?W&^S&DL{l|>51ZvCXUKlH2XKJPXnHjs*oMkNM#ZDLx!oaM5(%^)5XaP zk6&+P16sA>vyFe9v`Cp5qnbE#r#ltR5E+O3!WnKn`56Grs2;sqr3r# zp@Zp<^q`5iq8OqOlJ`pIuyK@3zPz&iJ0Jcc`hDQ1bqos2;}O|$i#}e@ua*x5VCSx zJAp}+?Hz++tm9dh3Fvm_bO6mQo38al#>^O0g)Lh^&l82+&x)*<n7^Sw-AJo9tEzZDwyJ7L^i7|BGqHu+ea6(&7jKpBq>~V z8CJxurD)WZ{5D0?s|KMi=e7A^JVNM6sdwg@1Eg_+Bw=9j&=+KO1PG|y(mP1@5~x>d z=@c{EWU_jTSjiJl)d(>`qEJ;@iOBm}alq8;OK;p(1AdH$)I9qHNmxxUArdzBW0t+Qeyl)m3?D09770g z)hzXEOy>2_{?o%2B%k%z4d23!pZcoxyW1Ik{|m7Q1>fm4`wsRrl)~h z_=Z*zYL+EG@DV1{6@5@(Ndu!Q$l_6Qlfoz@79q)Kmsf~J7t1)tl#`MD<;1&CAA zH8;i+oBm89dTTDl{aH`cmTPTt@^K-%*sV+t4X9q0Z{A~vEEa!&rRRr=0Rbz4NFCJr zLg2u=0QK@w9XGE=6(-JgeP}G#WG|R&tfHRA3a9*zh5wNTBAD;@YYGx%#E4{C#Wlfo z%-JuW9=FA_T6mR2-Vugk1uGZvJbFvVVWT@QOWz$;?u6+CbyQsbK$>O1APk|xgnh_8 zc)s@Mw7#0^wP6qTtyNq2G#s?5j~REyoU6^lT7dpX{T-rhZWHD%dik*=EA7bIJgOVf_Ga!yC8V^tkTOEHe+JK@Fh|$kfNxO^= z#lpV^(ZQ-3!^_BhV>aXY~GC9{8%1lOJ}6vzXDvPhC>JrtXwFBC+!3a*Z-%#9}i z#<5&0LLIa{q!rEIFSFc9)>{-_2^qbOg5;_A9 ztQ))C6#hxSA{f9R3Eh^`_f${pBJNe~pIQ`tZVR^wyp}=gLK}e5_vG@w+-mp#Fu>e| z*?qBp5CQ5zu+Fi}xAs)YY1;bKG!htqR~)DB$ILN6GaChoiy%Bq@i+1ZnANC0U&D z_4k$=YP47ng+0NhuEt}6C;9-JDd8i5S>`Ml==9wHDQFOsAlmtrVwurYDw_)Ihfk35 zJDBbe!*LUpg%4n>BExWz>KIQ9vexUu^d!7rc_kg#Bf= z7TLz|l*y*3d2vi@c|pX*@ybf!+Xk|2*z$@F4K#MT8Dt4zM_EcFmNp31#7qT6(@GG? zdd;sSY9HHuDb=w&|K%sm`bYX#%UHKY%R`3aLMO?{T#EI@FNNFNO>p@?W*i0z(g2dt z{=9Ofh80Oxv&)i35AQN>TPMjR^UID-T7H5A?GI{MD_VeXZ%;uo41dVm=uT&ne2h0i zv*xI%9vPtdEK@~1&V%p1sFc2AA`9?H)gPnRdlO~URx!fiSV)j?Tf5=5F>hnO=$d$x zzaIfr*wiIc!U1K*$JO@)gP4%xp!<*DvJSv7p}(uTLUb=MSb@7_yO+IsCj^`PsxEl& zIxsi}s3L?t+p+3FXYqujGhGwTx^WXgJ1}a@Yq5mwP0PvGEr*qu7@R$9j>@-q1rz5T zriz;B^(ex?=3Th6h;7U`8u2sDlfS{0YyydK=*>-(NOm9>S_{U|eg(J~C7O zIe{|LK=Y`hXiF_%jOM8Haw3UtaE{hWdzo3BbD6ud7br4cODBtN(~Hl+odP0SSWPw;I&^m)yLw+nd#}3#z}?UIcX3=SssI}`QwY=% zAEXTODk|MqTx}2DVG<|~(CxgLyi*A{m>M@1h^wiC)4Hy>1K7@|Z&_VPJsaQoS8=ex zDL&+AZdQa>ylxhT_Q$q=60D5&%pi6+qlY3$3c(~rsITX?>b;({FhU!7HOOhSP7>bmTkC8KM%!LRGI^~y3Ug+gh!QM=+NZXznM)?L3G=4=IMvFgX3BAlyJ z`~jjA;2z+65D$j5xbv9=IWQ^&-K3Yh`vC(1Qz2h2`o$>Cej@XRGff!it$n{@WEJ^N z41qk%Wm=}mA*iwCqU_6}Id!SQd13aFER3unXaJJXIsSnxvG2(hSCP{i&QH$tL&TPx zDYJsuk+%laN&OvKb-FHK$R4dy%M7hSB*yj#-nJy?S9tVoxAuDei{s}@+pNT!vLOIC z8g`-QQW8FKp3cPsX%{)0B+x+OhZ1=L7F-jizt|{+f1Ga7%+!BXqjCjH&x|3%?UbN# zh?$I1^YokvG$qFz5ySK+Ja5=mkR&p{F}ev**rWdKMko+Gj^?Or=UH?SCg#0F(&a_y zXOh}dPv0D9l0RVedq1~jCNV=8?vZfU-Xi|nkeE->;ohG3U7z+^0+HV17~-_Mv#mV` zzvwUJJ15v5wwKPv-)i@dsEo@#WEO9zie7mdRAbgL2kjbW4&lk$vxkbq=w5mGKZK6@ zjXWctDkCRx58NJD_Q7e}HX`SiV)TZMJ}~zY6P1(LWo`;yDynY_5_L?N-P`>ALfmyl z8C$a~FDkcwtzK9m$tof>(`Vu3#6r#+v8RGy#1D2)F;vnsiL&P-c^PO)^B-4VeJteLlT@25sPa z%W~q5>YMjj!mhN})p$47VA^v$Jo6_s{!y?}`+h+VM_SN`!11`|;C;B};B&Z<@%FOG z_YQVN+zFF|q5zKab&e4GH|B;sBbKimHt;K@tCH+S{7Ry~88`si7}S)1E{21nldiu5 z_4>;XTJa~Yd$m4A9{Qbd)KUAm7XNbZ4xHbg3a8-+1uf*$1PegabbmCzgC~1WB2F(W zYj5XhVos!X!QHuZXCatkRsdEsSCc+D2?*S7a+(v%toqyxhjz|`zdrUvsxQS{J>?c& zvx*rHw^8b|v^7wq8KWVofj&VUitbm*a&RU_ln#ZFA^3AKEf<#T%8I!Lg3XEsdH(A5 zlgh&M_XEoal)i#0tcq8c%Gs6`xu;vvP2u)D9p!&XNt z!TdF_H~;`g@fNXkO-*t<9~;iEv?)Nee%hVe!aW`N%$cFJ(Dy9+Xk*odyFj72T!(b%Vo5zvCGZ%3tkt$@Wcx8BWEkefI1-~C_3y*LjlQ5%WEz9WD8i^ z2MV$BHD$gdPJV4IaV)G9CIFwiV=ca0cfXdTdK7oRf@lgyPx;_7*RRFk=?@EOb9Gcz zg~VZrzo*Snp&EE{$CWr)JZW)Gr;{B2ka6B!&?aknM-FENcl%45#y?oq9QY z3^1Y5yn&^D67Da4lI}ljDcphaEZw2;tlYuzq?uB4b9Mt6!KTW&ptxd^vF;NbX=00T z@nE1lIBGgjqs?ES#P{ZfRb6f!At51vk%<0X%d_~NL5b8UyfQMPDtfU@>ijA0NP3UU zh{lCf`Wu7cX!go`kUG`1K=7NN@SRGjUKuo<^;@GS!%iDXbJs`o6e`v3O8-+7vRkFm z)nEa$sD#-v)*Jb>&Me+YIW3PsR1)h=-Su)))>-`aRcFJG-8icomO4J@60 zw10l}BYxi{eL+Uu0xJYk-Vc~BcR49Qyyq!7)PR27D`cqGrik=?k1Of>gY7q@&d&Ds zt7&WixP`9~jjHO`Cog~RA4Q%uMg+$z^Gt&vn+d3&>Ux{_c zm|bc;k|GKbhZLr-%p_f%dq$eiZ;n^NxoS-Nu*^Nx5vm46)*)=-Bf<;X#?`YC4tLK; z?;u?shFbXeks+dJ?^o$l#tg*1NA?(1iFff@I&j^<74S!o;SWR^Xi);DM%8XiWpLi0 zQE2dL9^a36|L5qC5+&Pf0%>l&qQ&)OU4vjd)%I6{|H+pw<0(a``9w(gKD&+o$8hOC zNAiShtc}e~ob2`gyVZx59y<6Fpl*$J41VJ-H*e-yECWaDMmPQi-N8XI3 z%iI@ljc+d}_okL1CGWffeaejlxWFVDWu%e=>H)XeZ|4{HlbgC-Uvof4ISYQzZ0Um> z#Ov{k1c*VoN^f(gfiueuag)`TbjL$XVq$)aCUBL_M`5>0>6Ska^*Knk__pw{0I>jA zzh}Kzg{@PNi)fcAk7jMAdi-_RO%x#LQszDMS@_>iFoB+zJ0Q#CQJzFGa8;pHFdi`^ zxnTC`G$7Rctm3G8t8!SY`GwFi4gF|+dAk7rh^rA{NXzc%39+xSYM~($L(pJ(8Zjs* zYdN_R^%~LiGHm9|ElV4kVZGA*T$o@YY4qpJOxGHlUi*S*A(MrgQ{&xoZQo+#PuYRs zv3a$*qoe9gBqbN|y|eaH=w^LE{>kpL!;$wRahY(hhzRY;d33W)m*dfem@)>pR54Qy z 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 \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..0f8d593 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/metadata/en-US/full_description.txt b/metadata/en-US/full_description.txt new file mode 100644 index 0000000..d5cff96 --- /dev/null +++ b/metadata/en-US/full_description.txt @@ -0,0 +1 @@ +Unofficial F-Droid client that resembles classic F-Droid client. diff --git a/metadata/en-US/short_description.txt b/metadata/en-US/short_description.txt new file mode 100644 index 0000000..2220928 --- /dev/null +++ b/metadata/en-US/short_description.txt @@ -0,0 +1 @@ +Yet another F-Droid client diff --git a/proguard.pro b/proguard.pro new file mode 100644 index 0000000..c4b4024 --- /dev/null +++ b/proguard.pro @@ -0,0 +1,5 @@ +-dontobfuscate + +# Disable ServiceLoader reproducibility-breaking optimizations +-keep class kotlinx.coroutines.CoroutineExceptionHandler +-keep class kotlinx.coroutines.internal.MainDispatcherFactory diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml new file mode 100644 index 0000000..b33f72f --- /dev/null +++ b/src/main/AndroidManifest.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/Common.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/Common.kt new file mode 100644 index 0000000..03dc6d8 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/Common.kt @@ -0,0 +1,13 @@ +package nya.kitsunyan.foxydroid + +object Common { + const val NOTIFICATION_CHANNEL_SYNCING = "syncing" + const val NOTIFICATION_CHANNEL_UPDATES = "updates" + const val NOTIFICATION_CHANNEL_DOWNLOADING = "downloading" + + const val NOTIFICATION_ID_SYNCING = 1 + const val NOTIFICATION_ID_UPDATES = 2 + const val NOTIFICATION_ID_DOWNLOADING = 3 + + const val JOB_ID_SYNC = 1 +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/MainActivity.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/MainActivity.kt new file mode 100644 index 0000000..9b03823 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/MainActivity.kt @@ -0,0 +1,21 @@ +package nya.kitsunyan.foxydroid + +import android.content.Intent +import nya.kitsunyan.foxydroid.screen.ScreenActivity + +class MainActivity: ScreenActivity() { + companion object { + const val ACTION_UPDATES = "${BuildConfig.APPLICATION_ID}.intent.action.UPDATES" + const val ACTION_INSTALL = "${BuildConfig.APPLICATION_ID}.intent.action.INSTALL" + const val EXTRA_CACHE_FILE_NAME = "${BuildConfig.APPLICATION_ID}.intent.extra.CACHE_FILE_NAME" + } + + override fun handleIntent(intent: Intent?) { + when (intent?.action) { + ACTION_UPDATES -> handleSpecialIntent(SpecialIntent.Updates) + ACTION_INSTALL -> handleSpecialIntent(SpecialIntent.Install(intent.packageName, + intent.getStringExtra(EXTRA_CACHE_FILE_NAME))) + else -> super.handleIntent(intent) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/MainApplication.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/MainApplication.kt new file mode 100644 index 0000000..ed703e9 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/MainApplication.kt @@ -0,0 +1,176 @@ +package nya.kitsunyan.foxydroid + +import android.annotation.SuppressLint +import android.app.Application +import android.app.job.JobInfo +import android.app.job.JobScheduler +import android.content.BroadcastReceiver +import android.content.ComponentName +import android.content.Context +import android.content.Intent +import android.content.IntentFilter +import android.content.pm.PackageInfo +import coil.Coil +import coil.ImageLoader +import nya.kitsunyan.foxydroid.content.Cache +import nya.kitsunyan.foxydroid.content.Preferences +import nya.kitsunyan.foxydroid.content.ProductPreferences +import nya.kitsunyan.foxydroid.database.Database +import nya.kitsunyan.foxydroid.entity.InstalledItem +import nya.kitsunyan.foxydroid.index.RepositoryUpdater +import nya.kitsunyan.foxydroid.network.CoilDownloader +import nya.kitsunyan.foxydroid.network.Downloader +import nya.kitsunyan.foxydroid.service.Connection +import nya.kitsunyan.foxydroid.service.SyncService +import nya.kitsunyan.foxydroid.utility.Utils +import nya.kitsunyan.foxydroid.utility.extension.android.* +import java.net.InetSocketAddress +import java.net.Proxy + +@Suppress("unused") +class MainApplication: Application() { + private fun PackageInfo.toInstalledItem(): InstalledItem? { + val signatureString = singleSignature?.let(Utils::calculateHash).orEmpty() + return InstalledItem(packageName, versionName, versionCodeCompat, signatureString) + } + + override fun attachBaseContext(base: Context) { + super.attachBaseContext(Utils.configureLocale(base)) + } + + override fun onCreate() { + super.onCreate() + + val databaseUpdated = Database.init(this) + Preferences.init(this) + ProductPreferences.init(this) + RepositoryUpdater.init(this) + listenApplications() + + Coil.setImageLoader(ImageLoader.Builder(this) + .callFactory(CoilDownloader.Factory(Cache.getImagesDir(this))).build()) + + updateProxy() + var lastAutoSync = Preferences[Preferences.Key.AutoSync] + var lastUpdateUnstable = Preferences[Preferences.Key.UpdateUnstable] + Preferences.observable.subscribe { + if (it == Preferences.Key.ProxyType || it == Preferences.Key.ProxyHost || it == Preferences.Key.ProxyPort) { + updateProxy() + } else if (it == Preferences.Key.AutoSync) { + val autoSync = Preferences[Preferences.Key.AutoSync] + if (lastAutoSync != autoSync) { + lastAutoSync = autoSync + updateSyncJob() + } + } else if (it == Preferences.Key.UpdateUnstable) { + val updateUnstable = Preferences[Preferences.Key.UpdateUnstable] + if (lastUpdateUnstable != updateUnstable) { + lastUpdateUnstable = updateUnstable + forceSyncAll() + } + } + } + + if (databaseUpdated) { + forceSyncAll() + } + + Cache.cleanup(this) + updateSyncJob() + } + + private fun listenApplications() { + registerReceiver(object: BroadcastReceiver() { + override fun onReceive(context: Context, intent: Intent) { + val packageName = intent.data?.let { if (it.scheme == "package") it.schemeSpecificPart else null } + if (packageName != null) { + when (intent.action.orEmpty()) { + Intent.ACTION_PACKAGE_ADDED -> { + val installedItem = packageManager.getPackageInfo(packageName, + Android.PackageManager.signaturesFlag)?.toInstalledItem() + installedItem?.let(Database.InstalledAdapter::put) + } + Intent.ACTION_PACKAGE_REMOVED -> { + Database.InstalledAdapter.delete(packageName) + } + } + } + } + }, IntentFilter().apply { + addAction(Intent.ACTION_PACKAGE_ADDED) + addAction(Intent.ACTION_PACKAGE_REMOVED) + addDataScheme("package") + }) + val installedItems = packageManager.getInstalledPackages(Android.PackageManager.signaturesFlag) + .mapNotNull { it.toInstalledItem() } + Database.InstalledAdapter.putAll(installedItems) + } + + private fun updateSyncJob() { + val autoSync = Preferences[Preferences.Key.AutoSync] + val jobScheduler = getSystemService(JOB_SCHEDULER_SERVICE) as JobScheduler + when (autoSync) { + Preferences.AutoSync.Never -> { + jobScheduler.cancel(Common.JOB_ID_SYNC) + } + Preferences.AutoSync.Wifi, Preferences.AutoSync.Always -> { + val period = 12 * 60 * 60 * 1000L // 12 hours + val wifiOnly = autoSync == Preferences.AutoSync.Wifi + jobScheduler.schedule(JobInfo + .Builder(Common.JOB_ID_SYNC, ComponentName(this, SyncService.Job::class.java)) + .setRequiredNetworkType(if (wifiOnly) JobInfo.NETWORK_TYPE_UNMETERED else JobInfo.NETWORK_TYPE_ANY) + .apply { + if (Android.sdk(26)) { + setRequiresBatteryNotLow(true) + setRequiresStorageNotLow(true) + } + if (Android.sdk(24)) { + setPeriodic(period, JobInfo.getMinFlexMillis()) + } else { + setPeriodic(period) + } + } + .build()) + Unit + } + }::class.java + } + + private fun updateProxy() { + val type = Preferences[Preferences.Key.ProxyType].proxyType + val host = Preferences[Preferences.Key.ProxyHost] + val port = Preferences[Preferences.Key.ProxyPort] + val socketAddress = when (type) { + Proxy.Type.DIRECT -> { + null + } + Proxy.Type.HTTP, Proxy.Type.SOCKS -> { + try { + InetSocketAddress.createUnresolved(host, port) + } catch (e: Exception) { + e.printStackTrace() + null + } + } + } + val proxy = socketAddress?.let { Proxy(type, socketAddress) } + Downloader.proxy = proxy + } + + private fun forceSyncAll() { + Database.RepositoryAdapter.getAll(null).forEach { + if (it.lastModified.isNotEmpty() || it.entityTag.isNotEmpty()) { + Database.RepositoryAdapter.put(it.copy(lastModified = "", entityTag = "")) + } + } + Connection(SyncService::class.java, onBind = { + it.binder.sync(SyncService.SyncRequest.FORCE) + it.connection.unbind(this) + }).bind(this) + } + + class BootReceiver: BroadcastReceiver() { + @SuppressLint("UnsafeProtectedBroadcastReceiver") + override fun onReceive(context: Context, intent: Intent) = Unit + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/content/Cache.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/content/Cache.kt new file mode 100644 index 0000000..3fa94eb --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/content/Cache.kt @@ -0,0 +1,179 @@ +package nya.kitsunyan.foxydroid.content + +import android.content.ContentProvider +import android.content.ContentValues +import android.content.Context +import android.content.pm.PackageManager +import android.database.Cursor +import android.database.MatrixCursor +import android.net.Uri +import android.os.ParcelFileDescriptor +import android.provider.OpenableColumns +import android.system.Os +import nya.kitsunyan.foxydroid.utility.extension.android.* +import java.io.File +import java.util.UUID +import kotlin.concurrent.thread + +object Cache { + private fun ensureCacheDir(context: Context, name: String): File { + return File(context.cacheDir, name).apply { isDirectory || mkdirs() || throw RuntimeException() } + } + + private fun applyOrMode(file: File, mode: Int) { + val oldMode = Os.stat(file.path).st_mode and 0b111111111111 + val newMode = oldMode or mode + if (newMode != oldMode) { + Os.chmod(file.path, newMode) + } + } + + private fun subPath(dir: File, file: File): String { + val dirPath = "${dir.path}/" + val filePath = file.path + filePath.startsWith(dirPath) || throw RuntimeException() + return filePath.substring(dirPath.length) + } + + fun getImagesDir(context: Context): File { + return ensureCacheDir(context, "images") + } + + fun getPartialReleaseFile(context: Context, cacheFileName: String): File { + return File(ensureCacheDir(context, "partial"), cacheFileName) + } + + fun getReleaseFile(context: Context, cacheFileName: String): File { + return File(ensureCacheDir(context, "releases"), cacheFileName).apply { + if (!Android.sdk(24)) { + // Make readable for package installer + val cacheDir = context.cacheDir.parentFile!!.parentFile!! + generateSequence(this) { it.parentFile!! }.takeWhile { it != cacheDir }.forEach { + when { + it.isDirectory -> applyOrMode(it, 0b001001001) + it.isFile -> applyOrMode(it, 0b100100100) + } + } + } + } + } + + fun getReleaseUri(context: Context, cacheFileName: String): Uri { + val file = getReleaseFile(context, cacheFileName) + val packageInfo = context.packageManager.getPackageInfo(context.packageName, PackageManager.GET_PROVIDERS) + val authority = packageInfo.providers.find { it.name == Provider::class.java.name }!!.authority + return Uri.Builder().scheme("content").authority(authority) + .encodedPath(subPath(context.cacheDir, file)).build() + } + + fun getTemporaryFile(context: Context): File { + return File(ensureCacheDir(context, "temporary"), UUID.randomUUID().toString()) + } + + fun cleanup(context: Context) { + thread { cleanup(context, Pair("images", 0), Pair("partial", 24), Pair("releases", 24), Pair("temporary", 1)) } + } + + private fun cleanup(context: Context, vararg dirHours: Pair) { + val knownNames = dirHours.asSequence().map { it.first }.toSet() + val files = context.cacheDir.listFiles().orEmpty() + files.asSequence().filter { it.name !in knownNames }.forEach { + if (it.isDirectory) { + cleanupDir(it, 0) + it.delete() + } else { + it.delete() + } + } + dirHours.forEach { (name, hours) -> + if (hours > 0) { + val file = File(context.cacheDir, name) + if (file.exists()) { + if (file.isDirectory) { + cleanupDir(file, hours) + } else { + file.delete() + } + } + } + } + } + + private fun cleanupDir(dir: File, hours: Int) { + dir.listFiles()?.forEach { + val older = hours <= 0 || run { + val olderThan = System.currentTimeMillis() / 1000L - hours * 60 * 60 + try { + val stat = Os.lstat(it.path) + stat.st_atime < olderThan + } catch (e: Exception) { + false + } + } + if (older) { + if (it.isDirectory) { + cleanupDir(it, hours) + if (it.isDirectory) { + it.delete() + } + } else { + it.delete() + } + } + } + } + + class Provider: ContentProvider() { + companion object { + private val defaultColumns = arrayOf(OpenableColumns.DISPLAY_NAME, OpenableColumns.SIZE) + } + + private fun getFileAndTypeForUri(uri: Uri): Pair { + return when (uri.pathSegments?.firstOrNull()) { + "releases" -> Pair(File(context!!.cacheDir, uri.encodedPath!!), "application/vnd.android.package-archive") + else -> throw SecurityException() + } + } + + override fun onCreate(): Boolean = true + + override fun query(uri: Uri, projection: Array?, + selection: String?, selectionArgs: Array?, sortOrder: String?): Cursor? { + val file = getFileAndTypeForUri(uri).first + val columns = (projection ?: defaultColumns).mapNotNull { + when (it) { + OpenableColumns.DISPLAY_NAME -> Pair(it, file.name) + OpenableColumns.SIZE -> Pair(it, file.length()) + else -> null + } + }.unzip() + return MatrixCursor(columns.first.toTypedArray()).apply { addRow(columns.second.toTypedArray()) } + } + + override fun getType(uri: Uri): String? = getFileAndTypeForUri(uri).second + + private val unsupported: Nothing + get() = throw UnsupportedOperationException() + + override fun insert(uri: Uri, contentValues: ContentValues?): Uri? = unsupported + override fun delete(uri: Uri, selection: String?, selectionArgs: Array?): Int = unsupported + override fun update(uri: Uri, contentValues: ContentValues?, + selection: String?, selectionArgs: Array?): Int = unsupported + + override fun openFile(uri: Uri, mode: String): ParcelFileDescriptor? { + val openMode = when (mode) { + "r" -> ParcelFileDescriptor.MODE_READ_ONLY + "w", "wt" -> ParcelFileDescriptor.MODE_WRITE_ONLY or ParcelFileDescriptor.MODE_CREATE or + ParcelFileDescriptor.MODE_TRUNCATE + "wa" -> ParcelFileDescriptor.MODE_WRITE_ONLY or ParcelFileDescriptor.MODE_CREATE or + ParcelFileDescriptor.MODE_APPEND + "rw" -> ParcelFileDescriptor.MODE_READ_WRITE or ParcelFileDescriptor.MODE_CREATE + "rwt" -> ParcelFileDescriptor.MODE_READ_WRITE or ParcelFileDescriptor.MODE_CREATE or + ParcelFileDescriptor.MODE_TRUNCATE + else -> throw IllegalArgumentException() + } + val file = getFileAndTypeForUri(uri).first + return ParcelFileDescriptor.open(file, openMode) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/content/Preferences.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/content/Preferences.kt new file mode 100644 index 0000000..d839e44 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/content/Preferences.kt @@ -0,0 +1,124 @@ +package nya.kitsunyan.foxydroid.content + +import android.content.Context +import android.content.SharedPreferences +import androidx.preference.PreferenceManager +import io.reactivex.rxjava3.core.Observable +import io.reactivex.rxjava3.subjects.PublishSubject +import nya.kitsunyan.foxydroid.R +import java.net.Proxy + +object Preferences { + private lateinit var preferences: SharedPreferences + + private val subject = PublishSubject.create>() + + private val keys = sequenceOf(Key.AutoSync, Key.IncompatibleVersions, Key.ProxyHost, Key.ProxyPort, Key.ProxyType, + Key.Theme, Key.UpdateNotify, Key.UpdateUnstable).map { Pair(it.name, it) }.toMap() + + fun init(context: Context) { + preferences = PreferenceManager.getDefaultSharedPreferences(context) + preferences.registerOnSharedPreferenceChangeListener { _, keyString -> keys[keyString]?.let(subject::onNext) } + } + + val observable: Observable> + get() = subject + + sealed class Value { + abstract val value: T + + internal abstract fun get(preferences: SharedPreferences, key: String, defaultValue: Value): T + internal abstract fun set(preferences: SharedPreferences, key: String, value: T) + + class BooleanValue(override val value: Boolean): Value() { + override fun get(preferences: SharedPreferences, key: String, defaultValue: Value): Boolean { + return preferences.getBoolean(key, defaultValue.value) + } + + override fun set(preferences: SharedPreferences, key: String, value: Boolean) { + preferences.edit().putBoolean(key, value).apply() + } + } + + class IntValue(override val value: Int): Value() { + override fun get(preferences: SharedPreferences, key: String, defaultValue: Value): Int { + return preferences.getInt(key, defaultValue.value) + } + + override fun set(preferences: SharedPreferences, key: String, value: Int) { + preferences.edit().putInt(key, value).apply() + } + } + + class StringValue(override val value: String): Value() { + override fun get(preferences: SharedPreferences, key: String, defaultValue: Value): String { + return preferences.getString(key, defaultValue.value) ?: defaultValue.value + } + + override fun set(preferences: SharedPreferences, key: String, value: String) { + preferences.edit().putString(key, value).apply() + } + } + + class EnumerationValue>(override val value: T): Value() { + override fun get(preferences: SharedPreferences, key: String, defaultValue: Value): T { + val value = preferences.getString(key, defaultValue.value.valueString) + return defaultValue.value.values.find { it.valueString == value } ?: defaultValue.value + } + + override fun set(preferences: SharedPreferences, key: String, value: T) { + preferences.edit().putString(key, value.valueString).apply() + } + } + } + + interface Enumeration { + val values: List + val valueString: String + } + + sealed class Key(val name: String, val default: Value) { + object IncompatibleVersions: Key("incompatible_versions", Value.BooleanValue(false)) + object ProxyHost: Key("proxy_host", Value.StringValue("localhost")) + object ProxyPort: Key("proxy_port", Value.IntValue(9050)) + object ProxyType: Key("proxy_type", Value.EnumerationValue(Preferences.ProxyType.Direct)) + object Theme: Key("theme", Value.EnumerationValue(Preferences.Theme.Light)) + object AutoSync: Key("auto_sync", Value.EnumerationValue(Preferences.AutoSync.Wifi)) + object UpdateNotify: Key("update_notify", Value.BooleanValue(true)) + object UpdateUnstable: Key("update_unstable", Value.BooleanValue(false)) + } + + sealed class AutoSync(override val valueString: String): Enumeration { + override val values: List + get() = listOf(Never, Wifi, Always) + + object Never: AutoSync("never") + object Wifi: AutoSync("wifi") + object Always: AutoSync("always") + } + + sealed class ProxyType(override val valueString: String, val proxyType: Proxy.Type): Enumeration { + override val values: List + get() = listOf(Direct, Http, Socks) + + object Direct: ProxyType("direct", Proxy.Type.DIRECT) + object Http: ProxyType("http", Proxy.Type.HTTP) + object Socks: ProxyType("socks", Proxy.Type.SOCKS) + } + + sealed class Theme(override val valueString: String, val resId: Int): Enumeration { + override val values: List + get() = listOf(Light, Dark) + + object Light: Theme("light", R.style.Theme_Main_Light) + object Dark: Theme("dark", R.style.Theme_Main_Dark) + } + + operator fun get(key: Key): T { + return key.default.get(preferences, key.name, key.default) + } + + operator fun set(key: Key, value: T) { + key.default.set(preferences, key.name, value) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/content/ProductPreferences.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/content/ProductPreferences.kt new file mode 100644 index 0000000..4dcf578 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/content/ProductPreferences.kt @@ -0,0 +1,64 @@ +package nya.kitsunyan.foxydroid.content + +import android.content.Context +import android.content.SharedPreferences +import io.reactivex.rxjava3.schedulers.Schedulers +import io.reactivex.rxjava3.subjects.PublishSubject +import nya.kitsunyan.foxydroid.database.Database +import nya.kitsunyan.foxydroid.entity.ProductPreference +import nya.kitsunyan.foxydroid.utility.extension.json.* +import java.io.ByteArrayOutputStream +import java.nio.charset.Charset + +object ProductPreferences { + private val defaultProductPreference = ProductPreference(false, 0L) + private lateinit var preferences: SharedPreferences + private val subject = PublishSubject.create>() + + fun init(context: Context) { + preferences = context.getSharedPreferences("product_preferences", Context.MODE_PRIVATE) + Database.LockAdapter.putAll(preferences.all.keys + .mapNotNull { packageName -> this[packageName].databaseVersionCode?.let { Pair(packageName, it) } }) + subject + .observeOn(Schedulers.io()) + .subscribe { (packageName, versionCode) -> + if (versionCode != null) { + Database.LockAdapter.put(Pair(packageName, versionCode)) + } else { + Database.LockAdapter.delete(packageName) + } + } + } + + private val ProductPreference.databaseVersionCode: Long? + get() = when { + ignoreUpdates -> 0L + ignoreVersionCode > 0L -> ignoreVersionCode + else -> null + } + + operator fun get(packageName: String): ProductPreference { + return if (preferences.contains(packageName)) { + try { + Json.factory.createParser(preferences.getString(packageName, "{}")) + .use { it.parseDictionary(ProductPreference.Companion::deserialize) } + } catch (e: Exception) { + e.printStackTrace() + defaultProductPreference + } + } else { + defaultProductPreference + } + } + + operator fun set(packageName: String, productPreference: ProductPreference) { + val oldProductPreference = this[packageName] + preferences.edit().putString(packageName, ByteArrayOutputStream() + .apply { Json.factory.createGenerator(this).use { it.writeDictionary(productPreference::serialize) } } + .toByteArray().toString(Charset.defaultCharset())).apply() + if (oldProductPreference.ignoreUpdates != productPreference.ignoreUpdates || + oldProductPreference.ignoreVersionCode != productPreference.ignoreVersionCode) { + subject.onNext(Pair(packageName, productPreference.databaseVersionCode)) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/database/CursorOwner.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/database/CursorOwner.kt new file mode 100644 index 0000000..7477994 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/database/CursorOwner.kt @@ -0,0 +1,97 @@ +package nya.kitsunyan.foxydroid.database + +import android.database.Cursor +import android.os.Bundle +import androidx.fragment.app.Fragment +import androidx.loader.app.LoaderManager +import androidx.loader.content.Loader + +class CursorOwner: Fragment(), LoaderManager.LoaderCallbacks { + sealed class Request { + internal abstract val id: Int + + data class ProductsAvailable(val searchQuery: String, val category: String): Request() { + override val id: Int + get() = 1 + } + + data class ProductsInstalled(val searchQuery: String, val category: String): Request() { + override val id: Int + get() = 2 + } + + data class ProductsUpdates(val searchQuery: String, val category: String): Request() { + override val id: Int + get() = 3 + } + + object Repositories: Request() { + override val id: Int + get() = 4 + } + } + + interface Callback { + fun onCursorData(request: Request, cursor: Cursor?) + } + + private data class ActiveRequest(val request: Request, val callback: Callback?, val cursor: Cursor?) + + init { + retainInstance = true + } + + private val activeRequests = mutableMapOf() + + fun attach(callback: Callback, request: Request) { + val oldActiveRequest = activeRequests[request.id] + if (oldActiveRequest?.callback != null && + oldActiveRequest.callback != callback && oldActiveRequest.cursor != null) { + oldActiveRequest.callback.onCursorData(oldActiveRequest.request, null) + } + val cursor = if (oldActiveRequest?.request == request && oldActiveRequest.cursor != null) { + callback.onCursorData(request, oldActiveRequest.cursor) + oldActiveRequest.cursor + } else { + null + } + activeRequests[request.id] = ActiveRequest(request, callback, cursor) + if (cursor == null) { + LoaderManager.getInstance(this).restartLoader(request.id, null, this) + } + } + + fun detach(callback: Callback) { + for (id in activeRequests.keys) { + val activeRequest = activeRequests[id]!! + if (activeRequest.callback == callback) { + activeRequests[id] = activeRequest.copy(callback = null) + } + } + } + + override fun onCreateLoader(id: Int, args: Bundle?): Loader { + val request = activeRequests[id]!!.request + return QueryLoader(requireContext()) { + when (request) { + is Request.ProductsAvailable -> Database.ProductAdapter + .query(false, false, request.searchQuery, request.category, it) + is Request.ProductsInstalled -> Database.ProductAdapter + .query(true, false, request.searchQuery, request.category, it) + is Request.ProductsUpdates -> Database.ProductAdapter + .query(true, true, request.searchQuery, request.category, it) + is Request.Repositories -> Database.RepositoryAdapter.query(it) + } + } + } + + override fun onLoadFinished(loader: Loader, data: Cursor?) { + val activeRequest = activeRequests[loader.id] + if (activeRequest != null) { + activeRequests[loader.id] = activeRequest.copy(cursor = data) + activeRequest.callback?.onCursorData(activeRequest.request, data) + } + } + + override fun onLoaderReset(loader: Loader) = onLoadFinished(loader, null) +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/database/Database.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/database/Database.kt new file mode 100644 index 0000000..5ee374b --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/database/Database.kt @@ -0,0 +1,618 @@ +package nya.kitsunyan.foxydroid.database + +import android.annotation.SuppressLint +import android.content.ContentValues +import android.content.Context +import android.database.Cursor +import android.database.sqlite.SQLiteDatabase +import android.database.sqlite.SQLiteOpenHelper +import android.os.CancellationSignal +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.core.JsonParser +import io.reactivex.rxjava3.core.Observable +import nya.kitsunyan.foxydroid.entity.InstalledItem +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.ProductItem +import nya.kitsunyan.foxydroid.entity.Repository +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.json.* +import java.io.ByteArrayOutputStream + +object Database { + fun init(context: Context): Boolean { + val helper = Helper(context) + db = helper.writableDatabase + if (helper.created) { + for (repository in Repository.defaultRepositories) { + RepositoryAdapter.put(repository) + } + } + return helper.created || helper.updated + } + + private lateinit var db: SQLiteDatabase + + private interface Table { + val memory: Boolean + val innerName: String + val createTable: String + val createIndex: String? + get() = null + + val databasePrefix: String + get() = if (memory) "memory." else "" + + val name: String + get() = "$databasePrefix$innerName" + + fun formatCreateTable(name: String): String { + return "CREATE TABLE $name (${QueryBuilder.trimQuery(createTable)})" + } + + val createIndexPairFormatted: Pair? + get() = createIndex?.let { Pair("CREATE INDEX ${innerName}_index ON $innerName ($it)", + "CREATE INDEX ${name}_index ON $innerName ($it)") } + } + + private object Schema { + object Repository: Table { + const val ROW_ID = "_id" + const val ROW_ENABLED = "enabled" + const val ROW_DELETED = "deleted" + const val ROW_DATA = "data" + + override val memory = false + override val innerName = "repository" + override val createTable = """ + $ROW_ID INTEGER PRIMARY KEY AUTOINCREMENT, + $ROW_ENABLED INTEGER NOT NULL, + $ROW_DELETED INTEGER NOT NULL, + $ROW_DATA BLOB NOT NULL + """ + } + + object Product: Table { + const val ROW_REPOSITORY_ID = "repository_id" + const val ROW_PACKAGE_NAME = "package_name" + const val ROW_NAME = "name" + const val ROW_SUMMARY = "summary" + const val ROW_VERSION_CODE = "version_code" + const val ROW_SIGNATURE = "signature" + const val ROW_COMPATIBLE = "compatible" + const val ROW_DATA = "data" + const val ROW_DATA_ITEM = "data_item" + + override val memory = false + override val innerName = "product" + override val createTable = """ + $ROW_REPOSITORY_ID INTEGER NOT NULL, + $ROW_PACKAGE_NAME TEXT NOT NULL, + $ROW_NAME TEXT NOT NULL, + $ROW_SUMMARY TEXT NOT NULL, + $ROW_VERSION_CODE INTEGER NOT NULL, + $ROW_SIGNATURE TEXT NOT NULL, + $ROW_COMPATIBLE INTEGER NOT NULL, + $ROW_DATA BLOB NOT NULL, + $ROW_DATA_ITEM BLOB NOT NULL, + PRIMARY KEY ($ROW_REPOSITORY_ID, $ROW_PACKAGE_NAME) + """ + override val createIndex = ROW_PACKAGE_NAME + } + + object Category: Table { + const val ROW_REPOSITORY_ID = "repository_id" + const val ROW_PACKAGE_NAME = "package_name" + const val ROW_NAME = "name" + + override val memory = false + override val innerName = "category" + override val createTable = """ + $ROW_REPOSITORY_ID INTEGER NOT NULL, + $ROW_PACKAGE_NAME TEXT NOT NULL, + $ROW_NAME TEXT NOT NULL, + PRIMARY KEY ($ROW_REPOSITORY_ID, $ROW_PACKAGE_NAME, $ROW_NAME) + """ + override val createIndex = "$ROW_PACKAGE_NAME, $ROW_NAME" + } + + object Installed: Table { + const val ROW_PACKAGE_NAME = "package_name" + const val ROW_VERSION = "version" + const val ROW_VERSION_CODE = "version_code" + const val ROW_SIGNATURE = "signature" + + override val memory = true + override val innerName = "installed" + override val createTable = """ + $ROW_PACKAGE_NAME TEXT PRIMARY KEY, + $ROW_VERSION TEXT NOT NULL, + $ROW_VERSION_CODE INTEGER NOT NULL, + $ROW_SIGNATURE TEXT NOT NULL + """ + } + + object Lock: Table { + const val ROW_PACKAGE_NAME = "package_name" + const val ROW_VERSION_CODE = "version_code" + + override val memory = true + override val innerName = "lock" + override val createTable = """ + $ROW_PACKAGE_NAME TEXT PRIMARY KEY, + $ROW_VERSION_CODE INTEGER NOT NULL + """ + } + + object Synthetic { + const val ROW_CAN_UPDATE = "can_update" + } + } + + private class Helper(context: Context): SQLiteOpenHelper(context, "foxydroid", null, 1) { + var created = false + private set + var updated = false + private set + + override fun onCreate(db: SQLiteDatabase) = Unit + override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) = onVersionChange(db) + override fun onDowngrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) = onVersionChange(db) + + private fun onVersionChange(db: SQLiteDatabase) { + handleTables(db, true, Schema.Product, Schema.Category) + this.updated = true + } + + override fun onOpen(db: SQLiteDatabase) { + val create = handleTables(db, false, Schema.Repository) + val updated = handleTables(db, create, Schema.Product, Schema.Category) + db.execSQL("ATTACH DATABASE ':memory:' AS memory") + handleTables(db, false, Schema.Installed, Schema.Lock) + handleIndexes(db, Schema.Repository, Schema.Product, Schema.Category, Schema.Installed, Schema.Lock) + dropOldTables(db, Schema.Repository, Schema.Product, Schema.Category) + this.created = this.created || create + this.updated = this.updated || create || updated + } + } + + private fun handleTables(db: SQLiteDatabase, recreate: Boolean, vararg tables: Table): Boolean { + val shouldRecreate = recreate || tables.any { + val sql = db.query("${it.databasePrefix}sqlite_master", columns = arrayOf("sql"), + selection = Pair("type = ? AND name = ?", arrayOf("table", it.innerName))) + .use { it.firstOrNull()?.getString(0) }.orEmpty() + it.formatCreateTable(it.innerName) != sql + } + return shouldRecreate && run { + val shouldVacuum = tables.map { + db.execSQL("DROP TABLE IF EXISTS ${it.name}") + db.execSQL(it.formatCreateTable(it.name)) + !it.memory + } + if (shouldVacuum.any { it }) { + db.execSQL("VACUUM") + } + true + } + } + + private fun handleIndexes(db: SQLiteDatabase, vararg tables: Table) { + val shouldVacuum = tables.map { + val sqls = db.query("${it.databasePrefix}sqlite_master", columns = arrayOf("name", "sql"), + selection = Pair("type = ? AND tbl_name = ?", arrayOf("index", it.innerName))) + .use { it.asSequence().mapNotNull { it.getString(1)?.let { sql -> Pair(it.getString(0), sql) } }.toList() } + .filter { !it.first.startsWith("sqlite_") } + val createIndexes = it.createIndexPairFormatted?.let { listOf(it) }.orEmpty() + createIndexes.map { it.first } != sqls.map { it.second } && run { + for (name in sqls.map { it.first }) { + db.execSQL("DROP INDEX IF EXISTS $name") + } + for (createIndexPair in createIndexes) { + db.execSQL(createIndexPair.second) + } + !it.memory + } + } + if (shouldVacuum.any { it }) { + db.execSQL("VACUUM") + } + } + + private fun dropOldTables(db: SQLiteDatabase, vararg neededTables: Table) { + val tables = db.query("sqlite_master", columns = arrayOf("name"), + selection = Pair("type = ?", arrayOf("table"))) + .use { it.asSequence().mapNotNull { it.getString(0) }.toList() } + .filter { !it.startsWith("sqlite_") && !it.startsWith("android_") } + .toSet() - neededTables.mapNotNull { if (it.memory) null else it.name } + if (tables.isNotEmpty()) { + for (table in tables) { + db.execSQL("DROP TABLE IF EXISTS $table") + } + db.execSQL("VACUUM") + } + } + + sealed class Subject { + object Repositories: Subject() + data class Repository(val id: Long): Subject() + object Products: Subject() + } + + private val observers = mutableMapOf Unit>>() + + private fun dataObservable(subject: Subject): (Boolean, () -> Unit) -> Unit = { register, observer -> + synchronized(observers) { + val set = observers[subject] ?: run { + val set = mutableSetOf<() -> Unit>() + observers[subject] = set + set + } + if (register) { + set += observer + } else { + set -= observer + } + } + } + + fun observable(subject: Subject): Observable { + return Observable.create { + val callback: () -> Unit = { it.onNext(Unit) } + val dataObservable = dataObservable(subject) + dataObservable(true, callback) + it.setCancellable { dataObservable(false, callback) } + } + } + + private fun notifyChanged(vararg subjects: Subject) { + synchronized(observers) { + subjects.asSequence().mapNotNull { observers[it] }.flatten().forEach { it() } + } + } + + private fun SQLiteDatabase.insertOrReplace(replace: Boolean, table: String, contentValues: ContentValues): Long { + return if (replace) replace(table, null, contentValues) else insert(table, null, contentValues) + } + + private fun SQLiteDatabase.query(table: String, columns: Array? = null, + selection: Pair>? = null, orderBy: String? = null, + signal: CancellationSignal? = null): Cursor { + return query(false, table, columns, selection?.first, selection?.second, null, null, orderBy, null, signal) + } + + private fun Cursor.observable(subject: Subject): ObservableCursor { + return ObservableCursor(this, dataObservable(subject)) + } + + private fun ByteArray.jsonParse(callback: (JsonParser) -> T): T { + return Json.factory.createParser(this).use { it.parseDictionary(callback) } + } + + private fun jsonGenerate(callback: (JsonGenerator) -> Unit): ByteArray { + val outputStream = ByteArrayOutputStream() + Json.factory.createGenerator(outputStream).use { it.writeDictionary(callback) } + return outputStream.toByteArray() + } + + object RepositoryAdapter { + internal fun putWithoutNotification(repository: Repository, shouldReplace: Boolean): Long { + return db.insertOrReplace(shouldReplace, Schema.Repository.name, ContentValues().apply { + if (shouldReplace) { + put(Schema.Repository.ROW_ID, repository.id) + } + put(Schema.Repository.ROW_ENABLED, if (repository.enabled) 1 else 0) + put(Schema.Repository.ROW_DELETED, 0) + put(Schema.Repository.ROW_DATA, jsonGenerate(repository::serialize)) + }) + } + + fun put(repository: Repository): Repository { + val shouldReplace = repository.id >= 0L + val newId = putWithoutNotification(repository, shouldReplace) + val id = if (shouldReplace) repository.id else newId + notifyChanged(Subject.Repositories, Subject.Repository(id), Subject.Products) + return if (newId != repository.id) repository.copy(id = newId) else repository + } + + fun get(id: Long): Repository? { + return db.query(Schema.Repository.name, + selection = Pair("${Schema.Repository.ROW_ID} = ? AND ${Schema.Repository.ROW_DELETED} == 0", + arrayOf(id.toString()))) + .use { it.firstOrNull()?.let(::transform) } + } + + fun getAll(signal: CancellationSignal?): List { + return db.query(Schema.Repository.name, + selection = Pair("${Schema.Repository.ROW_DELETED} == 0", emptyArray()), + signal = signal).use { it.asSequence().map(::transform).toList() } + } + + fun getAllDisabledDeleted(signal: CancellationSignal?): Set> { + return db.query(Schema.Repository.name, + columns = arrayOf(Schema.Repository.ROW_ID, Schema.Repository.ROW_DELETED), + selection = Pair("${Schema.Repository.ROW_ENABLED} == 0 OR ${Schema.Repository.ROW_DELETED} != 0", emptyArray()), + signal = signal).use { it.asSequence().map { Pair(it.getLong(it.getColumnIndex(Schema.Repository.ROW_ID)), + it.getInt(it.getColumnIndex(Schema.Repository.ROW_DELETED)) != 0) }.toSet() } + } + + fun markAsDeleted(id: Long) { + db.update(Schema.Repository.name, ContentValues().apply { + put(Schema.Repository.ROW_DELETED, 1) + }, "${Schema.Repository.ROW_ID} = ?", arrayOf(id.toString())) + notifyChanged(Subject.Repositories, Subject.Repository(id), Subject.Products) + } + + fun cleanup(pairs: Set>) { + val result = pairs.windowed(10, 10, true).map { + val idsString = it.joinToString(separator = ", ") { it.first.toString() } + val productsCount = db.delete(Schema.Product.name, + "${Schema.Product.ROW_REPOSITORY_ID} IN ($idsString)", null) + val categoriesCount = db.delete(Schema.Category.name, + "${Schema.Category.ROW_REPOSITORY_ID} IN ($idsString)", null) + val deleteIdsString = it.asSequence().filter { it.second } + .joinToString(separator = ", ") { it.first.toString() } + if (deleteIdsString.isNotEmpty()) { + db.delete(Schema.Repository.name, "${Schema.Repository.ROW_ID} IN ($deleteIdsString)", null) + } + productsCount != 0 || categoriesCount != 0 + } + if (result.any { it }) { + notifyChanged(Subject.Products) + } + } + + fun query(signal: CancellationSignal?): Cursor { + return db.query(Schema.Repository.name, + selection = Pair("${Schema.Repository.ROW_DELETED} == 0", emptyArray()), + signal = signal).observable(Subject.Repositories) + } + + fun transform(cursor: Cursor): Repository { + return cursor.getBlob(cursor.getColumnIndex(Schema.Repository.ROW_DATA)) + .jsonParse { Repository.deserialize(cursor.getLong(cursor.getColumnIndex(Schema.Repository.ROW_ID)), it) } + } + } + + object ProductAdapter { + fun get(packageName: String, signal: CancellationSignal?): List { + return db.query(Schema.Product.name, + columns = arrayOf(Schema.Product.ROW_REPOSITORY_ID, Schema.Product.ROW_DATA), + selection = Pair("${Schema.Product.ROW_PACKAGE_NAME} = ?", arrayOf(packageName)), + signal = signal).use { it.asSequence().map(::transform).toList() } + } + + fun getCount(repositoryId: Long): Int { + return db.query(Schema.Product.name, columns = arrayOf("COUNT (*)"), + selection = Pair("${Schema.Product.ROW_REPOSITORY_ID} = ?", arrayOf(repositoryId.toString()))) + .use { it.firstOrNull()?.getInt(0) ?: 0 } + } + + @SuppressLint("Recycle") + fun query(installed: Boolean, updates: Boolean, searchQuery: String, + category: String, signal: CancellationSignal?): Cursor { + val builder = QueryBuilder() + + builder += """SELECT product.rowid AS _id, product.${Schema.Product.ROW_REPOSITORY_ID}, + product.${Schema.Product.ROW_PACKAGE_NAME}, product.${Schema.Product.ROW_NAME}, + product.${Schema.Product.ROW_SUMMARY}, installed.${Schema.Installed.ROW_VERSION}, + (COALESCE(lock.${Schema.Lock.ROW_VERSION_CODE}, -1) NOT IN (0, product.${Schema.Product.ROW_VERSION_CODE}) AND + product.${Schema.Product.ROW_COMPATIBLE} != 0 AND product.${Schema.Product.ROW_VERSION_CODE} > + COALESCE(installed.${Schema.Installed.ROW_VERSION_CODE}, 0xffffffff) AND + product.${Schema.Product.ROW_SIGNATURE} = installed.${Schema.Installed.ROW_SIGNATURE} AND + product.${Schema.Product.ROW_SIGNATURE} != '') AS ${Schema.Synthetic.ROW_CAN_UPDATE}, + product.${Schema.Product.ROW_COMPATIBLE}, product.${Schema.Product.ROW_DATA_ITEM}, + MAX((product.${Schema.Product.ROW_COMPATIBLE} << 32) | product.${Schema.Product.ROW_VERSION_CODE}) + FROM ${Schema.Product.name} AS product""" + + builder += """JOIN ${Schema.Repository.name} AS repository + ON product.${Schema.Product.ROW_REPOSITORY_ID} = repository.${Schema.Repository.ROW_ID}""" + builder += """LEFT JOIN ${Schema.Lock.name} AS lock + ON product.${Schema.Product.ROW_PACKAGE_NAME} = lock.${Schema.Lock.ROW_PACKAGE_NAME}""" + if (!installed && !updates) { + builder += "LEFT" + } + builder += """JOIN ${Schema.Installed.name} AS installed + ON product.${Schema.Product.ROW_PACKAGE_NAME} = installed.${Schema.Installed.ROW_PACKAGE_NAME}""" + if (category.isNotEmpty()) { + builder += """JOIN ${Schema.Category.name} AS category + ON product.${Schema.Product.ROW_PACKAGE_NAME} = category.${Schema.Product.ROW_PACKAGE_NAME}""" + } + + builder += """WHERE repository.${Schema.Repository.ROW_ENABLED} != 0 AND + repository.${Schema.Repository.ROW_DELETED} == 0""" + if (category.isNotEmpty()) { + builder += "AND category.${Schema.Category.ROW_NAME} = ?" + builder %= category + } + if (searchQuery.isNotEmpty()) { + builder += """AND (product.${Schema.Product.ROW_PACKAGE_NAME} LIKE ? OR + product.${Schema.Product.ROW_NAME} LIKE ? OR + product.${Schema.Product.ROW_SUMMARY} LIKE ?)""" + builder %= List(3) { "%$searchQuery%" } + } + + builder += "GROUP BY product.${Schema.Product.ROW_PACKAGE_NAME} HAVING 1" + if (updates) { + builder += "AND ${Schema.Synthetic.ROW_CAN_UPDATE}" + } + builder += "ORDER BY product.${Schema.Product.ROW_NAME} COLLATE LOCALIZED ASC" + + return builder.query(db, signal).observable(Subject.Products) + } + + private fun transform(cursor: Cursor): Product { + return cursor.getBlob(cursor.getColumnIndex(Schema.Product.ROW_DATA)) + .jsonParse { Product.deserialize(cursor.getLong(cursor.getColumnIndex(Schema.Product.ROW_REPOSITORY_ID)), it) } + } + + fun transformItem(cursor: Cursor): ProductItem { + return cursor.getBlob(cursor.getColumnIndex(Schema.Product.ROW_DATA_ITEM)) + .jsonParse { ProductItem.deserialize(cursor.getLong(cursor.getColumnIndex(Schema.Product.ROW_REPOSITORY_ID)), + cursor.getString(cursor.getColumnIndex(Schema.Product.ROW_PACKAGE_NAME)), + cursor.getString(cursor.getColumnIndex(Schema.Product.ROW_NAME)), + cursor.getString(cursor.getColumnIndex(Schema.Product.ROW_SUMMARY)), + cursor.getString(cursor.getColumnIndex(Schema.Installed.ROW_VERSION)).orEmpty(), + cursor.getInt(cursor.getColumnIndex(Schema.Product.ROW_COMPATIBLE)) != 0, + cursor.getInt(cursor.getColumnIndex(Schema.Synthetic.ROW_CAN_UPDATE)) != 0, it) } + } + } + + object CategoryAdapter { + fun getAll(signal: CancellationSignal?): Set { + val builder = QueryBuilder() + + builder += """SELECT DISTINCT category.${Schema.Category.ROW_NAME} + FROM ${Schema.Category.name} AS category + JOIN ${Schema.Repository.name} AS repository + ON category.${Schema.Category.ROW_REPOSITORY_ID} = repository.${Schema.Repository.ROW_ID} + WHERE repository.${Schema.Repository.ROW_ENABLED} != 0 AND + repository.${Schema.Repository.ROW_DELETED} == 0""" + + return builder.query(db, signal).use { it.asSequence() + .map { it.getString(it.getColumnIndex(Schema.Category.ROW_NAME)) }.toSet() } + } + } + + object InstalledAdapter { + fun get(packageName: String, signal: CancellationSignal?): InstalledItem? { + return db.query(Schema.Installed.name, + columns = arrayOf(Schema.Installed.ROW_PACKAGE_NAME, Schema.Installed.ROW_VERSION, + Schema.Installed.ROW_VERSION_CODE, Schema.Installed.ROW_SIGNATURE), + selection = Pair("${Schema.Installed.ROW_PACKAGE_NAME} = ?", arrayOf(packageName)), + signal = signal).use { it.firstOrNull()?.let(::transform) } + } + + private fun put(installedItem: InstalledItem, notify: Boolean) { + db.insertOrReplace(true, Schema.Installed.name, ContentValues().apply { + put(Schema.Installed.ROW_PACKAGE_NAME, installedItem.packageName) + put(Schema.Installed.ROW_VERSION, installedItem.version) + put(Schema.Installed.ROW_VERSION_CODE, installedItem.versionCode) + put(Schema.Installed.ROW_SIGNATURE, installedItem.signature) + }) + if (notify) { + notifyChanged(Subject.Products) + } + } + + fun put(installedItem: InstalledItem) = put(installedItem, true) + + fun putAll(installedItems: List) { + db.beginTransaction() + try { + db.delete(Schema.Installed.name, null, null) + installedItems.forEach { put(it, false) } + db.setTransactionSuccessful() + } finally { + db.endTransaction() + } + } + + fun delete(packageName: String) { + db.delete(Schema.Installed.name, "${Schema.Installed.ROW_PACKAGE_NAME} = ?", arrayOf(packageName)) + notifyChanged(Subject.Products) + } + + private fun transform(cursor: Cursor): InstalledItem { + return InstalledItem(cursor.getString(cursor.getColumnIndex(Schema.Installed.ROW_PACKAGE_NAME)), + cursor.getString(cursor.getColumnIndex(Schema.Installed.ROW_VERSION)), + cursor.getLong(cursor.getColumnIndex(Schema.Installed.ROW_VERSION_CODE)), + cursor.getString(cursor.getColumnIndex(Schema.Installed.ROW_SIGNATURE))) + } + } + + object LockAdapter { + private fun put(lock: Pair, notify: Boolean) { + db.insertOrReplace(true, Schema.Lock.name, ContentValues().apply { + put(Schema.Lock.ROW_PACKAGE_NAME, lock.first) + put(Schema.Lock.ROW_VERSION_CODE, lock.second) + }) + if (notify) { + notifyChanged(Subject.Products) + } + } + + fun put(lock: Pair) = put(lock, true) + + fun putAll(locks: List>) { + db.beginTransaction() + try { + db.delete(Schema.Lock.name, null, null) + locks.forEach { put(it, false) } + db.setTransactionSuccessful() + } finally { + db.endTransaction() + } + } + + fun delete(packageName: String) { + db.delete(Schema.Lock.name, "${Schema.Lock.ROW_PACKAGE_NAME} = ?", arrayOf(packageName)) + notifyChanged(Subject.Products) + } + } + + object UpdaterAdapter { + private val Table.temporaryName: String + get() = "${name}_temporary" + + fun createTemporaryTable() { + db.execSQL("DROP TABLE IF EXISTS ${Schema.Product.temporaryName}") + db.execSQL("DROP TABLE IF EXISTS ${Schema.Category.temporaryName}") + db.execSQL(Schema.Product.formatCreateTable(Schema.Product.temporaryName)) + db.execSQL(Schema.Category.formatCreateTable(Schema.Category.temporaryName)) + } + + fun putTemporary(products: List) { + db.beginTransaction() + try { + for (product in products) { + db.insertOrReplace(true, Schema.Product.temporaryName, ContentValues().apply { + put(Schema.Product.ROW_REPOSITORY_ID, product.repositoryId) + put(Schema.Product.ROW_PACKAGE_NAME, product.packageName) + put(Schema.Product.ROW_NAME, product.name) + put(Schema.Product.ROW_SUMMARY, product.summary) + put(Schema.Product.ROW_VERSION_CODE, product.versionCode) + put(Schema.Product.ROW_SIGNATURE, product.signature) + put(Schema.Product.ROW_COMPATIBLE, if (product.compatible) 1 else 0) + put(Schema.Product.ROW_DATA, jsonGenerate(product::serialize)) + put(Schema.Product.ROW_DATA_ITEM, jsonGenerate(product.item()::serialize)) + }) + for (category in product.categories) { + db.insertOrReplace(true, Schema.Category.temporaryName, ContentValues().apply { + put(Schema.Category.ROW_REPOSITORY_ID, product.repositoryId) + put(Schema.Category.ROW_PACKAGE_NAME, product.packageName) + put(Schema.Category.ROW_NAME, category) + }) + } + } + db.setTransactionSuccessful() + } finally { + db.endTransaction() + } + } + + fun finishTemporary(repository: Repository, success: Boolean) { + if (success) { + db.beginTransaction() + try { + db.delete(Schema.Product.name, "${Schema.Product.ROW_REPOSITORY_ID} = ?", + arrayOf(repository.id.toString())) + db.delete(Schema.Category.name, "${Schema.Category.ROW_REPOSITORY_ID} = ?", + arrayOf(repository.id.toString())) + db.execSQL("INSERT INTO ${Schema.Product.name} SELECT * FROM ${Schema.Product.temporaryName}") + db.execSQL("INSERT INTO ${Schema.Category.name} SELECT * FROM ${Schema.Category.temporaryName}") + RepositoryAdapter.putWithoutNotification(repository, true) + db.execSQL("DROP TABLE IF EXISTS ${Schema.Product.temporaryName}") + db.execSQL("DROP TABLE IF EXISTS ${Schema.Category.temporaryName}") + db.setTransactionSuccessful() + } finally { + db.endTransaction() + } + if (success) { + notifyChanged(Subject.Repositories, Subject.Repository(repository.id), Subject.Products) + } + } else { + db.execSQL("DROP TABLE IF EXISTS ${Schema.Product.temporaryName}") + db.execSQL("DROP TABLE IF EXISTS ${Schema.Category.temporaryName}") + } + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/database/ObservableCursor.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/database/ObservableCursor.kt new file mode 100644 index 0000000..db3bf18 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/database/ObservableCursor.kt @@ -0,0 +1,57 @@ +package nya.kitsunyan.foxydroid.database + +import android.database.ContentObservable +import android.database.ContentObserver +import android.database.Cursor +import android.database.CursorWrapper + +class ObservableCursor(cursor: Cursor, private val observable: (register: Boolean, + observer: () -> Unit) -> Unit): CursorWrapper(cursor) { + private var registered = false + private val contentObservable = ContentObservable() + + private val onChange: () -> Unit = { + contentObservable.dispatchChange(false, null) + } + + init { + observable(true, onChange) + registered = true + } + + override fun registerContentObserver(observer: ContentObserver) { + super.registerContentObserver(observer) + contentObservable.registerObserver(observer) + } + + override fun unregisterContentObserver(observer: ContentObserver) { + super.unregisterContentObserver(observer) + contentObservable.unregisterObserver(observer) + } + + @Suppress("DEPRECATION") + override fun requery(): Boolean { + if (!registered) { + observable(true, onChange) + registered = true + } + return super.requery() + } + + @Suppress("DEPRECATION") + override fun deactivate() { + super.deactivate() + deactivateOrClose() + } + + override fun close() { + super.close() + contentObservable.unregisterAll() + deactivateOrClose() + } + + private fun deactivateOrClose() { + observable(false, onChange) + registered = false + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryBuilder.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryBuilder.kt new file mode 100644 index 0000000..b3c7ce6 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryBuilder.kt @@ -0,0 +1,47 @@ +package nya.kitsunyan.foxydroid.database + +import android.database.Cursor +import android.database.sqlite.SQLiteDatabase +import android.os.CancellationSignal +import nya.kitsunyan.foxydroid.BuildConfig +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.text.* + +class QueryBuilder { + companion object { + fun trimQuery(query: String): String { + return query.lines().map { it.trim() }.filter { it.isNotEmpty() }.joinToString(separator = " ") + } + } + + private val builder = StringBuilder() + private val arguments = mutableListOf() + + operator fun plusAssign(query: String) { + if (builder.isNotEmpty()) { + builder.append(" ") + } + builder.append(trimQuery(query)) + } + + operator fun remAssign(argument: String) { + this.arguments += argument + } + + operator fun remAssign(arguments: List) { + this.arguments += arguments + } + + fun query(db: SQLiteDatabase, signal: CancellationSignal?): Cursor { + val query = builder.toString() + val arguments = arguments.toTypedArray() + if (BuildConfig.DEBUG) { + synchronized(QueryBuilder::class.java) { + debug(query) + db.rawQuery("EXPLAIN QUERY PLAN $query", arguments).use { it.asSequence() + .forEach { debug(":: ${it.getString(it.getColumnIndex("detail"))}") } } + } + } + return db.rawQuery(query, arguments, signal) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryLoader.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryLoader.kt new file mode 100644 index 0000000..ce6c7e3 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/database/QueryLoader.kt @@ -0,0 +1,94 @@ +package nya.kitsunyan.foxydroid.database + +import android.content.Context +import android.database.Cursor +import android.os.CancellationSignal +import android.os.OperationCanceledException +import androidx.loader.content.AsyncTaskLoader + +class QueryLoader(context: Context, private val query: (CancellationSignal) -> Cursor?): + AsyncTaskLoader(context) { + private val observer = ForceLoadContentObserver() + private var cancellationSignal: CancellationSignal? = null + private var cursor: Cursor? = null + + override fun loadInBackground(): Cursor? { + val cancellationSignal = synchronized(this) { + if (isLoadInBackgroundCanceled) { + throw OperationCanceledException() + } + val cancellationSignal = CancellationSignal() + this.cancellationSignal = cancellationSignal + cancellationSignal + } + try { + val cursor = query(cancellationSignal) + if (cursor != null) { + try { + cursor.count // Ensure the cursor window is filled + cursor.registerContentObserver(observer) + } catch (e: Exception) { + cursor.close() + throw e + } + } + return cursor + } finally { + synchronized(this) { + this.cancellationSignal = null + } + } + } + + override fun cancelLoadInBackground() { + super.cancelLoadInBackground() + + synchronized(this) { + cancellationSignal?.cancel() + } + } + + override fun deliverResult(data: Cursor?) { + if (isReset) { + data?.close() + } else { + val oldCursor = cursor + cursor = data + if (isStarted) { + super.deliverResult(data) + } + if (oldCursor != data) { + oldCursor.closeIfNeeded() + } + } + } + + override fun onStartLoading() { + cursor?.let(this::deliverResult) + if (takeContentChanged() || cursor == null) { + forceLoad() + } + } + + override fun onStopLoading() { + cancelLoad() + } + + override fun onCanceled(data: Cursor?) { + data.closeIfNeeded() + } + + override fun onReset() { + super.onReset() + + stopLoading() + cursor.closeIfNeeded() + cursor = null + } + + private fun Cursor?.closeIfNeeded() { + if (this != null && !isClosed) { + close() + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/entity/InstalledItem.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/InstalledItem.kt new file mode 100644 index 0000000..a050302 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/InstalledItem.kt @@ -0,0 +1,3 @@ +package nya.kitsunyan.foxydroid.entity + +class InstalledItem(val packageName: String, val version: String, val versionCode: Long, val signature: String) diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Product.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Product.kt new file mode 100644 index 0000000..d7c2d1f --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Product.kt @@ -0,0 +1,218 @@ +package nya.kitsunyan.foxydroid.entity + +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.core.JsonParser +import com.fasterxml.jackson.core.JsonToken +import nya.kitsunyan.foxydroid.utility.extension.json.* + +data class Product(val repositoryId: Long, val packageName: String, val name: String, val summary: String, + val description: String, val whatsNew: String, val icon: String, val author: Author, + val source: String, val changelog: String, val web: String, val tracker: String, + val added: Long, val updated: Long, val suggestedVersionCode: Long, + val categories: List, val antiFeatures: List, val licenses: List, + val donates: List, val screenshots: List, val releases: List) { + data class Author(val name: String, val email: String, val web: String) + + sealed class Donate { + data class Regular(val url: String): Donate() + data class Bitcoin(val address: String): Donate() + data class Litecoin(val address: String): Donate() + data class Flattr(val id: String): Donate() + data class Liberapay(val id: String): Donate() + } + + class Screenshot(val locale: String, val type: Type, val path: String) { + enum class Type(val jsonName: String) { + PHONE("phone"), + SMALL_TABLET("smallTablet"), + LARGE_TABLET("largeTablet") + } + + val identifier: String + get() = "$locale.${type.name}.$path" + } + + val selectedRelease: Release? + get() = releases.find { it.selected } + + val displayRelease: Release? + get() = selectedRelease ?: releases.firstOrNull() + + val version: String + get() = displayRelease?.version.orEmpty() + + val versionCode: Long + get() = selectedRelease?.versionCode ?: 0L + + val compatible: Boolean + get() = selectedRelease?.incompatibilities?.isEmpty() == true + + val signature: String + get() = selectedRelease?.signature.orEmpty() + + fun item(): ProductItem { + return ProductItem(repositoryId, packageName, name, summary, icon, version, "", compatible, false) + } + + fun canUpdate(installedItem: InstalledItem?): Boolean { + return installedItem != null && compatible && versionCode > installedItem.versionCode && + signature.isNotEmpty() && signature == installedItem.signature + } + + fun serialize(generator: JsonGenerator) { + generator.writeNumberField("serialVersion", 1) + generator.writeStringField("packageName", packageName) + generator.writeStringField("name", name) + generator.writeStringField("summary", summary) + generator.writeStringField("description", description) + generator.writeStringField("whatsNew", whatsNew) + generator.writeStringField("icon", icon) + generator.writeStringField("authorName", author.name) + generator.writeStringField("authorEmail", author.email) + generator.writeStringField("authorWeb", author.web) + generator.writeStringField("source", source) + generator.writeStringField("changelog", changelog) + generator.writeStringField("web", web) + generator.writeStringField("tracker", tracker) + generator.writeNumberField("added", added) + generator.writeNumberField("updated", updated) + generator.writeNumberField("suggestedVersionCode", suggestedVersionCode) + generator.writeArray("categories") { categories.forEach(::writeString) } + generator.writeArray("antiFeatures") { antiFeatures.forEach(::writeString) } + generator.writeArray("licenses") { licenses.forEach(::writeString) } + generator.writeArray("donates") { + donates.forEach { + writeDictionary { + when (it) { + is Donate.Regular -> { + writeStringField("type", "") + writeStringField("url", it.url) + } + is Donate.Bitcoin -> { + writeStringField("type", "bitcoin") + writeStringField("address", it.address) + } + is Donate.Litecoin -> { + writeStringField("type", "litecoin") + writeStringField("address", it.address) + } + is Donate.Flattr -> { + writeStringField("type", "flattr") + writeStringField("id", it.id) + } + is Donate.Liberapay -> { + writeStringField("type", "liberapay") + writeStringField("id", it.id) + } + }::class + } + } + } + generator.writeArray("screenshots") { + screenshots.forEach { + writeDictionary { + writeStringField("locale", it.locale) + writeStringField("type", it.type.jsonName) + writeStringField("path", it.path) + } + } + } + generator.writeArray("releases") { releases.forEach { writeDictionary { it.serialize(this) } } } + } + + companion object { + fun findSuggested(products: List, extract: (T) -> Product): T? { + return products.maxWith(compareBy({ extract(it).compatible }, { extract(it).versionCode })) + } + + fun deserialize(repositoryId: Long, parser: JsonParser): Product { + var packageName = "" + var name = "" + var summary = "" + var description = "" + var whatsNew = "" + var icon = "" + var authorName = "" + var authorEmail = "" + var authorWeb = "" + var source = "" + var changelog = "" + var web = "" + var tracker = "" + var added = 0L + var updated = 0L + var suggestedVersionCode = 0L + var categories = emptyList() + var antiFeatures = emptyList() + var licenses = emptyList() + var donates = emptyList() + var screenshots = emptyList() + var releases = emptyList() + parser.forEachKey { + when { + it.string("packageName") -> packageName = valueAsString + it.string("name") -> name = valueAsString + it.string("summary") -> summary = valueAsString + it.string("description") -> description = valueAsString + it.string("whatsNew") -> whatsNew = valueAsString + it.string("icon") -> icon = valueAsString + it.string("authorName") -> authorName = valueAsString + it.string("authorEmail") -> authorEmail = valueAsString + it.string("authorWeb") -> authorWeb = valueAsString + it.string("source") -> source = valueAsString + it.string("changelog") -> changelog = valueAsString + it.string("web") -> web = valueAsString + it.string("tracker") -> tracker = valueAsString + it.number("added") -> added = valueAsLong + it.number("updated") -> updated = valueAsLong + it.number("suggestedVersionCode") -> suggestedVersionCode = valueAsLong + it.array("categories") -> categories = collectNotNullStrings() + it.array("antiFeatures") -> antiFeatures = collectNotNullStrings() + it.array("licenses") -> licenses = collectNotNullStrings() + it.array("donates") -> donates = collectNotNull(JsonToken.START_OBJECT) { + var type = "" + var url = "" + var address = "" + var id = "" + forEachKey { + when { + it.string("type") -> type = valueAsString + it.string("url") -> url = valueAsString + it.string("address") -> address = valueAsString + it.string("id") -> id = valueAsString + else -> skipChildren() + } + } + when (type) { + "" -> Donate.Regular(url) + "bitcoin" -> Donate.Bitcoin(address) + "litecoin" -> Donate.Litecoin(address) + "flattr" -> Donate.Flattr(id) + "liberapay" -> Donate.Liberapay(id) + else -> null + } + } + it.array("screenshots") -> screenshots = collectNotNull(JsonToken.START_OBJECT) { + var locale = "" + var type = "" + var path = "" + forEachKey { + when { + it.string("locale") -> locale = valueAsString + it.string("type") -> type = valueAsString + it.string("path") -> path = valueAsString + else -> skipChildren() + } + } + Screenshot.Type.values().find { it.jsonName == type }?.let { Screenshot(locale, it, path) } + } + it.array("releases") -> releases = collectNotNull(JsonToken.START_OBJECT, Release.Companion::deserialize) + else -> skipChildren() + } + } + return Product(repositoryId, packageName, name, summary, description, whatsNew, icon, + Author(authorName, authorEmail, authorWeb), source, changelog, web, tracker, added, updated, + suggestedVersionCode, categories, antiFeatures, licenses, donates, screenshots, releases) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductItem.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductItem.kt new file mode 100644 index 0000000..d198247 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductItem.kt @@ -0,0 +1,32 @@ +package nya.kitsunyan.foxydroid.entity + +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.core.JsonParser +import nya.kitsunyan.foxydroid.utility.extension.json.* + +data class ProductItem(val repositoryId: Long, val packageName: String, + val name: String, val summary: String, val icon: String, val version: String, val installedVersion: String, + val compatible: Boolean, val canUpdate: Boolean) { + fun serialize(generator: JsonGenerator) { + generator.writeNumberField("serialVersion", 1) + generator.writeStringField("icon", icon) + generator.writeStringField("version", version) + } + + companion object { + fun deserialize(repositoryId: Long, packageName: String, name: String, summary: String, + installedVersion: String, compatible: Boolean, canUpdate: Boolean, parser: JsonParser): ProductItem { + var icon = "" + var version = "" + parser.forEachKey { + when { + it.string("icon") -> icon = valueAsString + it.string("version") -> version = valueAsString + else -> skipChildren() + } + } + return ProductItem(repositoryId, packageName, name, summary, icon, + version, installedVersion, compatible, canUpdate) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductPreference.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductPreference.kt new file mode 100644 index 0000000..fc9896d --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/ProductPreference.kt @@ -0,0 +1,31 @@ +package nya.kitsunyan.foxydroid.entity + +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.core.JsonParser +import nya.kitsunyan.foxydroid.utility.extension.json.* + +data class ProductPreference(val ignoreUpdates: Boolean, val ignoreVersionCode: Long) { + fun shouldIgnoreUpdate(versionCode: Long): Boolean { + return ignoreUpdates || ignoreVersionCode == versionCode + } + + fun serialize(generator: JsonGenerator) { + generator.writeBooleanField("ignoreUpdates", ignoreUpdates) + generator.writeNumberField("ignoreVersionCode", ignoreVersionCode) + } + + companion object { + fun deserialize(parser: JsonParser): ProductPreference { + var ignoreUpdates = false + var ignoreVersionCode = 0L + parser.forEachKey { + when { + it.boolean("ignoreUpdates") -> ignoreUpdates = valueAsBoolean + it.number("ignoreVersionCode") -> ignoreVersionCode = valueAsLong + else -> skipChildren() + } + } + return ProductPreference(ignoreUpdates, ignoreVersionCode) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Release.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Release.kt new file mode 100644 index 0000000..6556b98 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Release.kt @@ -0,0 +1,156 @@ +package nya.kitsunyan.foxydroid.entity + +import android.net.Uri +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.core.JsonParser +import com.fasterxml.jackson.core.JsonToken +import nya.kitsunyan.foxydroid.utility.extension.json.* + +data class Release(val selected: Boolean, val version: String, val versionCode: Long, + val added: Long, val size: Long, val minSdkVersion: Int, val targetSdkVersion: Int, val maxSdkVersion: Int, + val source: String, val release: String, val hash: String, val hashType: String, val signature: String, + val obbMain: String, val obbMainHash: String, val obbMainHashType: String, + val obbPatch: String, val obbPatchHash: String, val obbPatchHashType: String, + val permissions: List, val features: List, val platforms: List, + val incompatibilities: List) { + sealed class Incompatibility { + object MinSdk: Incompatibility() + object MaxSdk: Incompatibility() + object Platform: Incompatibility() + class Feature(val feature: String): Incompatibility() + } + + val identifier: String + get() = "$versionCode.$hash" + + fun getDownloadUrl(repository: Repository): String { + return Uri.parse(repository.address).buildUpon().appendPath(release).build().toString() + } + + val cacheFileName: String + get() = "${hash.replace('/', '-')}.apk" + + fun serialize(generator: JsonGenerator) { + generator.writeNumberField("serialVersion", 1) + generator.writeBooleanField("selected", selected) + generator.writeStringField("version", version) + generator.writeNumberField("versionCode", versionCode) + generator.writeNumberField("added", added) + generator.writeNumberField("size", size) + generator.writeNumberField("minSdkVersion", minSdkVersion) + generator.writeNumberField("targetSdkVersion", targetSdkVersion) + generator.writeNumberField("maxSdkVersion", maxSdkVersion) + generator.writeStringField("source", source) + generator.writeStringField("release", release) + generator.writeStringField("hash", hash) + generator.writeStringField("hashType", hashType) + generator.writeStringField("signature", signature) + generator.writeStringField("obbMain", obbMain) + generator.writeStringField("obbMainHash", obbMainHash) + generator.writeStringField("obbMainHashType", obbMainHashType) + generator.writeStringField("obbPatch", obbPatch) + generator.writeStringField("obbPatchHash", obbPatchHash) + generator.writeStringField("obbPatchHashType", obbPatchHashType) + generator.writeArray("permissions") { permissions.forEach { writeString(it) } } + generator.writeArray("features") { features.forEach { writeString(it) } } + generator.writeArray("platforms") { platforms.forEach { writeString(it) } } + generator.writeArray("incompatibilities") { + incompatibilities.forEach { + writeDictionary { + when (it) { + is Incompatibility.MinSdk -> { + writeStringField("type", "minSdk") + } + is Incompatibility.MaxSdk -> { + writeStringField("type", "maxSdk") + } + is Incompatibility.Platform -> { + writeStringField("type", "platform") + } + is Incompatibility.Feature -> { + writeStringField("type", "feature") + writeStringField("feature", it.feature) + } + }::class + } + } + } + } + + companion object { + fun deserialize(parser: JsonParser): Release { + var selected = false + var version = "" + var versionCode = 0L + var added = 0L + var size = 0L + var minSdkVersion = 0 + var targetSdkVersion = 0 + var maxSdkVersion = 0 + var source = "" + var release = "" + var hash = "" + var hashType = "" + var signature = "" + var obbMain = "" + var obbMainHash = "" + var obbMainHashType = "" + var obbPatch = "" + var obbPatchHash = "" + var obbPatchHashType = "" + var permissions = emptyList() + var features = emptyList() + var platforms = emptyList() + var incompatibilities = emptyList() + parser.forEachKey { + when { + it.boolean("selected") -> selected = valueAsBoolean + it.string("version") -> version = valueAsString + it.number("versionCode") -> versionCode = valueAsLong + it.number("added") -> added = valueAsLong + it.number("size") -> size = valueAsLong + it.number("minSdkVersion") -> minSdkVersion = valueAsInt + it.number("targetSdkVersion") -> targetSdkVersion = valueAsInt + it.number("maxSdkVersion") -> maxSdkVersion = valueAsInt + it.string("source") -> source = valueAsString + it.string("release") -> release = valueAsString + it.string("hash") -> hash = valueAsString + it.string("hashType") -> hashType = valueAsString + it.string("signature") -> signature = valueAsString + it.string("obbMain") -> obbMain = valueAsString + it.string("obbMainHash") -> obbMainHash = valueAsString + it.string("obbMainHashType") -> obbMainHashType = valueAsString + it.string("obbPatch") -> obbPatch = valueAsString + it.string("obbPatchHash") -> obbPatchHash = valueAsString + it.string("obbPatchHashType") -> obbPatchHashType = valueAsString + it.array("permissions") -> permissions = collectNotNullStrings() + it.array("features") -> features = collectNotNullStrings() + it.array("platforms") -> platforms = collectNotNullStrings() + it.array("incompatibilities") -> incompatibilities = collectNotNull(JsonToken.START_OBJECT) { + var type = "" + var feature = "" + forEachKey { + when { + it.string("type") -> type = valueAsString + it.string("feature") -> feature = valueAsString + else -> skipChildren() + } + } + when (type) { + "minSdk" -> Incompatibility.MinSdk + "maxSdk" -> Incompatibility.MaxSdk + "platform" -> Incompatibility.Platform + "feature" -> Incompatibility.Feature(feature) + else -> null + } + } + else -> skipChildren() + } + } + return Release(selected, version, versionCode, added, size, + minSdkVersion, targetSdkVersion, maxSdkVersion, source, release, hash, hashType, signature, + obbMain, obbMainHash, obbMainHashType, obbPatch, obbPatchHash, obbPatchHashType, + permissions, features, platforms, incompatibilities) + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Repository.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Repository.kt new file mode 100644 index 0000000..6debcf0 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/entity/Repository.kt @@ -0,0 +1,118 @@ +package nya.kitsunyan.foxydroid.entity + +import com.fasterxml.jackson.core.JsonGenerator +import com.fasterxml.jackson.core.JsonParser +import nya.kitsunyan.foxydroid.utility.extension.json.* +import java.net.URL + +data class Repository(val id: Long, val address: String, val mirrors: List, + val name: String, val description: String, val version: Int, val enabled: Boolean, + val fingerprint: String, val lastModified: String, val entityTag: String, + val updated: Long, val timestamp: Long, val authentication: String) { + fun edit(address: String, fingerprint: String, authentication: String): Repository { + val addressChanged = this.address != address + val fingerprintChanged = this.fingerprint != fingerprint + val changed = addressChanged || fingerprintChanged + return copy(address = address, fingerprint = fingerprint, lastModified = if (changed) "" else lastModified, + entityTag = if (changed) "" else entityTag, authentication = authentication) + } + + fun update(mirrors: List, name: String, description: String, version: Int, + lastModified: String, entityTag: String, timestamp: Long): Repository { + return copy(mirrors = mirrors, name = name, description = description, + version = if (version >= 0) version else this.version, lastModified = lastModified, + entityTag = entityTag, updated = System.currentTimeMillis(), timestamp = timestamp) + } + + fun enable(enabled: Boolean): Repository { + return copy(enabled = enabled, lastModified = "", entityTag = "") + } + + fun serialize(generator: JsonGenerator) { + generator.writeNumberField("serialVersion", 1) + generator.writeStringField("address", address) + generator.writeArray("mirrors") { mirrors.forEach { writeString(it) } } + generator.writeStringField("name", name) + generator.writeStringField("description", description) + generator.writeNumberField("version", version) + generator.writeBooleanField("enabled", enabled) + generator.writeStringField("fingerprint", fingerprint) + generator.writeStringField("lastModified", lastModified) + generator.writeStringField("entityTag", entityTag) + generator.writeNumberField("updated", updated) + generator.writeNumberField("timestamp", timestamp) + generator.writeStringField("authentication", authentication) + } + + companion object { + fun deserialize(id: Long, parser: JsonParser): Repository { + var address = "" + var mirrors = emptyList() + var name = "" + var description = "" + var version = 0 + var enabled = false + var fingerprint = "" + var lastModified = "" + var entityTag = "" + var updated = 0L + var timestamp = 0L + var authentication = "" + parser.forEachKey { + when { + it.string("address") -> address = valueAsString + it.array("mirrors") -> mirrors = collectNotNullStrings() + it.string("name") -> name = valueAsString + it.string("description") -> description = valueAsString + it.number("version") -> version = valueAsInt + it.boolean("enabled") -> enabled = valueAsBoolean + it.string("fingerprint") -> fingerprint = valueAsString + it.string("lastModified") -> lastModified = valueAsString + it.string("entityTag") -> entityTag = valueAsString + it.number("updated") -> updated = valueAsLong + it.number("timestamp") -> timestamp = valueAsLong + it.string("authentication") -> authentication = valueAsString + else -> skipChildren() + } + } + return Repository(id, address, mirrors, name, description, version, enabled, fingerprint, + lastModified, entityTag, updated, timestamp, authentication) + } + + fun newRepository(address: String, fingerprint: String, authentication: String): Repository { + val name = try { + URL(address).let { "${it.host}${it.path}" } + } catch (e: Exception) { + address + } + return defaultRepository(address, name, "", 0, true, fingerprint, authentication) + } + + private fun defaultRepository(address: String, name: String, description: String, + version: Int, enabled: Boolean, fingerprint: String, authentication: String): Repository { + return Repository(-1, address, emptyList(), name, description, version, enabled, + fingerprint, "", "", 0L, 0L, authentication) + } + + val defaultRepositories = listOf(run { + defaultRepository("https://f-droid.org/repo", "F-Droid", "The official F-Droid Free Software repository. " + + "Everything in this repository is always built from the source code.", + 21, true, "43238D512C1E5EB2D6569F4A3AFBF5523418B82E0A3ED1552770ABB9A9C9CCAB", "") + }, run { + defaultRepository("https://f-droid.org/archive", "F-Droid Archive", "The archive of the official F-Droid Free " + + "Software repository. Apps here are old and can contain known vulnerabilities and security issues!", + 21, false, "43238D512C1E5EB2D6569F4A3AFBF5523418B82E0A3ED1552770ABB9A9C9CCAB", "") + }, run { + defaultRepository("https://guardianproject.info/fdroid/repo", "Guardian Project Official Releases", "The " + + "official repository of The Guardian Project apps for use with the F-Droid client. Applications in this " + + "repository are official binaries built by the original application developers and signed by the same key as " + + "the APKs that are released in the Google Play Store.", + 21, false, "B7C2EEFD8DAC7806AF67DFCD92EB18126BC08312A7F2D6F3862E46013C7A6135", "") + }, run { + defaultRepository("https://guardianproject.info/fdroid/archive", "Guardian Project Archive", "The official " + + "repository of The Guardian Project apps for use with the F-Droid client. This contains older versions of " + + "applications from the main repository.", 21, false, + "B7C2EEFD8DAC7806AF67DFCD92EB18126BC08312A7F2D6F3862E46013C7A6135", "") + }) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/graphics/DrawableWrapper.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/graphics/DrawableWrapper.kt new file mode 100644 index 0000000..ab2e1e5 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/graphics/DrawableWrapper.kt @@ -0,0 +1,56 @@ +package nya.kitsunyan.foxydroid.graphics + +import android.graphics.Canvas +import android.graphics.ColorFilter +import android.graphics.Rect +import android.graphics.drawable.Drawable + +open class DrawableWrapper(val drawable: Drawable): Drawable() { + init { + drawable.callback = object: Callback { + override fun invalidateDrawable(who: Drawable) { + callback?.invalidateDrawable(who) + } + + override fun scheduleDrawable(who: Drawable, what: Runnable, `when`: Long) { + callback?.scheduleDrawable(who, what, `when`) + } + + override fun unscheduleDrawable(who: Drawable, what: Runnable) { + callback?.unscheduleDrawable(who, what) + } + } + } + + override fun onBoundsChange(bounds: Rect) { + drawable.bounds = bounds + } + + override fun getIntrinsicWidth(): Int = drawable.intrinsicWidth + override fun getIntrinsicHeight(): Int = drawable.intrinsicHeight + override fun getMinimumWidth(): Int = drawable.minimumWidth + override fun getMinimumHeight(): Int = drawable.minimumHeight + + override fun draw(canvas: Canvas) { + drawable.draw(canvas) + } + + override fun getAlpha(): Int { + return drawable.alpha + } + + override fun setAlpha(alpha: Int) { + drawable.alpha = alpha + } + + override fun getColorFilter(): ColorFilter? { + return drawable.colorFilter + } + + override fun setColorFilter(colorFilter: ColorFilter?) { + drawable.colorFilter = colorFilter + } + + @Suppress("DEPRECATION") + override fun getOpacity(): Int = drawable.opacity +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/graphics/PaddingDrawable.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/graphics/PaddingDrawable.kt new file mode 100644 index 0000000..5f6db03 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/graphics/PaddingDrawable.kt @@ -0,0 +1,19 @@ +package nya.kitsunyan.foxydroid.graphics + +import android.graphics.Rect +import android.graphics.drawable.Drawable +import kotlin.math.* + +class PaddingDrawable(drawable: Drawable, private val factor: Float): DrawableWrapper(drawable) { + override fun getIntrinsicWidth(): Int = (factor * super.getIntrinsicWidth()).roundToInt() + override fun getIntrinsicHeight(): Int = (factor * super.getIntrinsicHeight()).roundToInt() + + override fun onBoundsChange(bounds: Rect) { + val width = (bounds.width() / factor).roundToInt() + val height = (bounds.height() / factor).roundToInt() + val left = (bounds.width() - width) / 2 + val top = (bounds.height() - height) / 2 + drawable.setBounds(bounds.left + left, bounds.top + top, + bounds.left + left + width, bounds.top + top + height) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexHandler.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexHandler.kt new file mode 100644 index 0000000..13aa518 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexHandler.kt @@ -0,0 +1,259 @@ +package nya.kitsunyan.foxydroid.index + +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.Release +import nya.kitsunyan.foxydroid.utility.extension.android.* +import org.xml.sax.Attributes +import org.xml.sax.helpers.DefaultHandler +import java.text.SimpleDateFormat +import java.util.Locale +import java.util.TimeZone + +class IndexHandler(private val repositoryId: Long, private val callback: Callback): DefaultHandler() { + companion object { + private val dateFormat = SimpleDateFormat("yyyy-MM-dd", Locale.US) + .apply { timeZone = TimeZone.getTimeZone("UTC") } + + private fun String.parseDate(): Long { + return try { + dateFormat.parse(this)?.time ?: 0L + } catch (e: Exception) { + 0L + } + } + } + + interface Callback { + fun onRepository(mirrors: List, name: String, description: String, + certificate: String, version: Int, timestamp: Long) + fun onProduct(product: Product) + } + + internal object DonateComparator: Comparator { + private val classes = listOf(Product.Donate.Regular::class, Product.Donate.Bitcoin::class, + Product.Donate.Litecoin::class, Product.Donate.Flattr::class, Product.Donate.Liberapay::class) + + override fun compare(donate1: Product.Donate, donate2: Product.Donate): Int { + val index1 = classes.indexOf(donate1::class) + val index2 = classes.indexOf(donate2::class) + return when { + index1 >= 0 && index2 == -1 -> -1 + index2 >= 0 && index1 == -1 -> 1 + else -> index1.compareTo(index2) + } + } + } + + private class RepositoryBuilder { + var address = "" + val mirrors = mutableListOf() + var name = "" + var description = "" + var certificate = "" + var version = -1 + var timestamp = 0L + } + + private class ProductBuilder(val repositoryId: Long, val packageName: String) { + var name = "" + var summary = "" + var description = "" + var icon = "" + var authorName = "" + var authorEmail = "" + var source = "" + var changelog = "" + var web = "" + var tracker = "" + var added = 0L + var updated = 0L + var suggestedVersionCode = 0L + val categories = linkedSetOf() + val antiFeatures = linkedSetOf() + val licenses = mutableListOf() + val donates = mutableListOf() + val releases = mutableListOf() + + fun build(): Product { + return Product(repositoryId, packageName, name, summary, description, "", icon, + Product.Author(authorName, authorEmail, ""), source, changelog, web, tracker, added, updated, + suggestedVersionCode, categories.toList(), antiFeatures.toList(), + licenses, donates.sortedWith(DonateComparator), emptyList(), releases) + } + } + + private class ReleaseBuilder { + var version = "" + var versionCode = 0L + var added = 0L + var size = 0L + var minSdkVersion = 0 + var targetSdkVersion = 0 + var maxSdkVersion = 0 + var source = "" + var release = "" + var hash = "" + var hashType = "" + var signature = "" + var obbMain = "" + var obbMainHash = "" + var obbPatch = "" + var obbPatchHash = "" + val permissions = linkedSetOf() + val features = linkedSetOf() + val platforms = linkedSetOf() + + fun build(): Release { + val hashType = if (hash.isNotEmpty() && hashType.isEmpty()) "sha256" else hashType + val obbMainHashType = if (obbMainHash.isNotEmpty()) "sha256" else "" + val obbPatchHashType = if (obbPatchHash.isNotEmpty()) "sha256" else "" + return Release(false, version, versionCode, added, size, + minSdkVersion, targetSdkVersion, maxSdkVersion, source, release, hash, hashType, signature, + obbMain, obbMainHash, obbMainHashType, obbPatch, obbPatchHash, obbPatchHashType, + permissions.toList(), features.toList(), platforms.toList(), emptyList()) + } + } + + private val contentBuilder = StringBuilder() + + private var repositoryBuilder: RepositoryBuilder? = RepositoryBuilder() + private var productBuilder: ProductBuilder? = null + private var releaseBuilder: ReleaseBuilder? = null + + private fun Attributes.get(localName: String): String = getValue("", localName).orEmpty() + private fun String.cleanWhiteSpace(): String = replace("\\s".toRegex(), " ") + + override fun startElement(uri: String, localName: String, qName: String, attributes: Attributes) { + super.startElement(uri, localName, qName, attributes) + + val repositoryBuilder = repositoryBuilder + val productBuilder = productBuilder + val releaseBuilder = releaseBuilder + contentBuilder.setLength(0) + + when { + localName == "repo" -> { + if (repositoryBuilder != null) { + repositoryBuilder.address = attributes.get("url").cleanWhiteSpace() + repositoryBuilder.name = attributes.get("name").cleanWhiteSpace() + repositoryBuilder.description = attributes.get("description").cleanWhiteSpace() + repositoryBuilder.certificate = attributes.get("pubkey") + repositoryBuilder.version = attributes.get("version").toIntOrNull() ?: 0 + repositoryBuilder.timestamp = (attributes.get("timestamp").toLongOrNull() ?: 0L) * 1000L + } + } + localName == "application" && productBuilder == null -> { + this.productBuilder = ProductBuilder(repositoryId, attributes.get("id")) + } + localName == "package" && productBuilder != null && releaseBuilder == null -> { + this.releaseBuilder = ReleaseBuilder() + } + localName == "hash" && releaseBuilder != null -> { + releaseBuilder.hashType = attributes.get("type") + } + (localName == "uses-permission" || localName.startsWith("uses-permission-")) && releaseBuilder != null -> { + val minSdkVersion = if (localName != "uses-permission") { + "uses-permission-sdk-(\\d+)".toRegex().matchEntire(localName) + ?.destructured?.let { (version) -> version.toIntOrNull() } + } else { + null + } ?: 0 + val maxSdkVersion = attributes.get("maxSdkVersion").toIntOrNull() ?: Int.MAX_VALUE + if (Android.sdk in minSdkVersion .. maxSdkVersion) { + releaseBuilder.permissions.add(attributes.get("name")) + } else { + releaseBuilder.permissions.remove(attributes.get("name")) + } + } + } + } + + override fun endElement(uri: String, localName: String, qName: String) { + super.endElement(uri, localName, qName) + + val repositoryBuilder = repositoryBuilder + val productBuilder = productBuilder + val releaseBuilder = releaseBuilder + val content = contentBuilder.toString() + + when { + localName == "repo" -> { + if (repositoryBuilder != null) { + val mirrors = (listOf(repositoryBuilder.address) + repositoryBuilder.mirrors) + .filter { it.isNotEmpty() }.distinct() + callback.onRepository(mirrors, repositoryBuilder.name, repositoryBuilder.description, + repositoryBuilder.certificate, repositoryBuilder.version, repositoryBuilder.timestamp) + this.repositoryBuilder = null + } + } + localName == "application" && productBuilder != null -> { + val product = productBuilder.build() + this.productBuilder = null + callback.onProduct(product) + } + localName == "package" && productBuilder != null && releaseBuilder != null -> { + productBuilder.releases.add(releaseBuilder.build()) + this.releaseBuilder = null + } + repositoryBuilder != null -> { + when (localName) { + "description" -> repositoryBuilder.description = content.cleanWhiteSpace() + "mirror" -> repositoryBuilder.mirrors += content + } + } + productBuilder != null && releaseBuilder != null -> { + when (localName) { + "version" -> releaseBuilder.version = content + "versioncode" -> releaseBuilder.versionCode = content.toLongOrNull() ?: 0L + "added" -> releaseBuilder.added = content.parseDate() + "size" -> releaseBuilder.size = content.toLongOrNull() ?: 0 + "sdkver" -> releaseBuilder.minSdkVersion = content.toIntOrNull() ?: 0 + "targetSdkVersion" -> releaseBuilder.targetSdkVersion = content.toIntOrNull() ?: 0 + "maxsdkver" -> releaseBuilder.maxSdkVersion = content.toIntOrNull() ?: 0 + "srcname" -> releaseBuilder.source = content + "apkname" -> releaseBuilder.release = content + "hash" -> releaseBuilder.hash = content + "sig" -> releaseBuilder.signature = content + "obbMainFile" -> releaseBuilder.obbMain = content + "obbMainFileSha256" -> releaseBuilder.obbMainHash = content + "obbPatchFile" -> releaseBuilder.obbPatch = content + "obbPatchFileSha256" -> releaseBuilder.obbPatchHash = content + "permissions" -> releaseBuilder.permissions += content.split(',') + "features" -> releaseBuilder.features += content.split(',') + "nativecode" -> releaseBuilder.platforms += content.split(',') + } + } + productBuilder != null -> { + when (localName) { + "name" -> productBuilder.name = content + "summary" -> productBuilder.summary = content + "description" -> productBuilder.description = "

$content

" + "desc" -> productBuilder.description = content.replace("\n", "
") + "icon" -> productBuilder.icon = content + "author" -> productBuilder.authorName = content + "email" -> productBuilder.authorEmail = content + "source" -> productBuilder.source = content + "changelog" -> productBuilder.changelog = content + "web" -> productBuilder.web = content + "tracker" -> productBuilder.tracker = content + "added" -> productBuilder.added = content.parseDate() + "lastupdated" -> productBuilder.updated = content.parseDate() + "marketvercode" -> productBuilder.suggestedVersionCode = content.toLongOrNull() ?: 0L + "categories" -> productBuilder.categories += content.split(',') + "antifeatures" -> productBuilder.antiFeatures += content.split(',') + "license" -> productBuilder.licenses += content.split(',') + "donate" -> productBuilder.donates += Product.Donate.Regular(content) + "bitcoin" -> productBuilder.donates += Product.Donate.Bitcoin(content) + "litecoin" -> productBuilder.donates += Product.Donate.Litecoin(content) + "flattr" -> productBuilder.donates += Product.Donate.Flattr(content) + "liberapay" -> productBuilder.donates += Product.Donate.Liberapay(content) + } + } + } + } + + override fun characters(ch: CharArray, start: Int, length: Int) { + super.characters(ch, start, length) + contentBuilder.append(ch, start, length) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexMerger.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexMerger.kt new file mode 100644 index 0000000..f5e7bee --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexMerger.kt @@ -0,0 +1,81 @@ +package nya.kitsunyan.foxydroid.index + +import android.content.ContentValues +import android.database.sqlite.SQLiteDatabase +import com.fasterxml.jackson.core.JsonToken +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.Release +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.json.* +import java.io.ByteArrayOutputStream +import java.io.Closeable +import java.io.File + +class IndexMerger(file: File): Closeable { + private val db = SQLiteDatabase.openOrCreateDatabase(file, null) + + init { + db.execWithResult("PRAGMA synchronous = OFF") + db.execWithResult("PRAGMA journal_mode = OFF") + db.execSQL("CREATE TABLE product (package_name TEXT PRIMARY KEY, data BLOB NOT NULL)") + db.execSQL("CREATE TABLE releases (package_name TEXT PRIMARY KEY, data BLOB NOT NULL)") + db.beginTransaction() + } + + fun addProducts(products: List) { + for (product in products) { + val outputStream = ByteArrayOutputStream() + Json.factory.createGenerator(outputStream).use { it.writeDictionary(product::serialize) } + db.insert("product", null, ContentValues().apply { + put("package_name", product.packageName) + put("data", outputStream.toByteArray()) + }) + } + } + + fun addReleases(pairs: List>>) { + for (pair in pairs) { + val (packageName, releases) = pair + val outputStream = ByteArrayOutputStream() + Json.factory.createGenerator(outputStream).use { + it.writeStartArray() + for (release in releases) { + it.writeDictionary(release::serialize) + } + it.writeEndArray() + } + db.insert("releases", null, ContentValues().apply { + put("package_name", packageName) + put("data", outputStream.toByteArray()) + }) + } + } + + private fun closeTransaction() { + if (db.inTransaction()) { + db.setTransactionSuccessful() + db.endTransaction() + } + } + + fun forEach(repositoryId: Long, windowSize: Int, callback: (List, Int) -> Unit) { + closeTransaction() + db.rawQuery("""SELECT product.data AS p, releases.data AS d FROM product + LEFT JOIN releases ON product.package_name = releases.package_name""", null) + ?.use { it.asSequence().map { + val product = Json.factory.createParser(it.getBlob(0)).use { + it.nextToken() + Product.deserialize(repositoryId, it) + } + val releases = it.getBlob(1)?.let { Json.factory.createParser(it).use { + it.nextToken() + it.collectNotNull(JsonToken.START_OBJECT, Release.Companion::deserialize) + } }.orEmpty() + product.copy(releases = releases) + }.windowed(windowSize, windowSize, true).forEach { products -> callback(products, it.count) } } + } + + override fun close() { + db.use { closeTransaction() } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexV1Parser.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexV1Parser.kt new file mode 100644 index 0000000..2fb1169 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/index/IndexV1Parser.kt @@ -0,0 +1,255 @@ +package nya.kitsunyan.foxydroid.index + +import com.fasterxml.jackson.core.JsonParser +import com.fasterxml.jackson.core.JsonToken +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.Release +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.json.* +import nya.kitsunyan.foxydroid.utility.extension.text.* +import java.io.InputStream + +object IndexV1Parser { + interface Callback { + fun onRepository(mirrors: List, name: String, description: String, version: Int, timestamp: Long) + fun onProduct(product: Product) + fun onReleases(packageName: String, releases: List) + } + + private class Screenshots(val phone: List, val smallTablet: List, val largeTablet: List) + private class Localized(val name: String, val summary: String, val description: String, + val whatsNew: String, val screenshots: Screenshots?) + + private fun Map.getAndCall(key: String, callback: (String, Localized) -> T?): T? { + return this[key]?.let { callback(key, it) } + } + + private fun Map.find(callback: (String, Localized) -> T?): T? { + return getAndCall("en-US", callback) ?: getAndCall("en_US", callback) ?: getAndCall("en", callback) + } + + private fun Map.findString(fallback: String, callback: (Localized) -> String): String { + return (find { _, localized -> callback(localized).nullIfEmpty() } ?: fallback).trim() + } + + fun parse(repositoryId: Long, inputStream: InputStream, callback: Callback) { + val jsonParser = Json.factory.createParser(inputStream) + if (jsonParser.nextToken() != JsonToken.START_OBJECT) { + jsonParser.illegal() + } else { + jsonParser.forEachKey { + when { + it.dictionary("repo") -> { + var address = "" + var mirrors = emptyList() + var name = "" + var description = "" + var version = 0 + var timestamp = 0L + forEachKey { + when { + it.string("address") -> address = valueAsString + it.array("mirrors") -> mirrors = collectNotNullStrings() + it.string("name") -> name = valueAsString + it.string("description") -> description = valueAsString + it.number("version") -> version = valueAsInt + it.number("timestamp") -> timestamp = valueAsLong + else -> skipChildren() + } + } + val realMirrors = ((if (address.isNotEmpty()) listOf(address) else emptyList()) + mirrors).distinct() + callback.onRepository(realMirrors, name, description, version, timestamp) + } + it.array("apps") -> forEach(JsonToken.START_OBJECT) { + val product = parseProduct(repositoryId) + callback.onProduct(product) + } + it.dictionary("packages") -> forEachKey { + if (it.token == JsonToken.START_ARRAY) { + val packageName = it.key + val releases = collectNotNull(JsonToken.START_OBJECT) { parseRelease() } + callback.onReleases(packageName, releases) + } else { + skipChildren() + } + } + else -> skipChildren() + } + } + } + } + + private fun JsonParser.parseProduct(repositoryId: Long): Product { + var packageName = "" + var nameFallback = "" + var summaryFallback = "" + var descriptionFallback = "" + var icon = "" + var authorName = "" + var authorEmail = "" + var authorWeb = "" + var source = "" + var changelog = "" + var web = "" + var tracker = "" + var added = 0L + var updated = 0L + var suggestedVersionCode = 0L + var categories = emptyList() + var antiFeatures = emptyList() + val licenses = mutableListOf() + val donates = mutableListOf() + val localizedMap = mutableMapOf() + forEachKey { + when { + it.string("packageName") -> packageName = valueAsString + it.string("name") -> nameFallback = valueAsString + it.string("summary") -> summaryFallback = valueAsString + it.string("description") -> descriptionFallback = valueAsString + it.string("icon") -> icon = valueAsString + it.string("authorName") -> authorName = valueAsString + it.string("authorEmail") -> authorEmail = valueAsString + it.string("authorWebSite") -> authorWeb = valueAsString + it.string("sourceCode") -> source = valueAsString + it.string("changelog") -> changelog = valueAsString + it.string("webSite") -> web = valueAsString + it.string("issueTracker") -> tracker = valueAsString + it.number("added") -> added = valueAsLong + it.number("lastUpdated") -> updated = valueAsLong + it.string("suggestedVersionCode") -> suggestedVersionCode = valueAsString.toLongOrNull() ?: 0L + it.array("categories") -> categories = collectNotNullStrings() + it.array("antiFeatures") -> antiFeatures = collectNotNullStrings() + it.string("license") -> licenses += valueAsString.split(',') + it.string("donate") -> donates += Product.Donate.Regular(valueAsString) + it.string("bitcoin") -> donates += Product.Donate.Bitcoin(valueAsString) + it.string("flattrID") -> donates += Product.Donate.Flattr(valueAsString) + it.string("liberapayID") -> donates += Product.Donate.Liberapay(valueAsString) + it.dictionary("localized") -> forEachKey { + if (it.token == JsonToken.START_OBJECT) { + val locale = it.key + var name = "" + var summary = "" + var description = "" + var whatsNew = "" + var phone = emptyList() + var smallTablet = emptyList() + var largeTablet = emptyList() + forEachKey { + when { + it.string("name") -> name = valueAsString + it.string("summary") -> summary = valueAsString + it.string("description") -> description = valueAsString + it.string("whatsNew") -> whatsNew = valueAsString + it.array("phoneScreenshots") -> phone = collectNotNullStrings() + it.array("sevenInchScreenshots") -> smallTablet = collectNotNullStrings() + it.array("tenInchScreenshots") -> largeTablet = collectNotNullStrings() + else -> skipChildren() + } + } + val screenshots = if (sequenceOf(phone, smallTablet, largeTablet).any { it.isNotEmpty() }) + Screenshots(phone, smallTablet, largeTablet) else null + localizedMap[locale] = Localized(name, summary, description, whatsNew, screenshots) + } else { + skipChildren() + } + } + else -> skipChildren() + } + } + val name = localizedMap.findString(nameFallback) { it.name } + val summary = localizedMap.findString(summaryFallback) { it.summary } + val description = localizedMap.findString(descriptionFallback) { it.description }.replace("\n", "
") + val whatsNew = localizedMap.findString("") { it.whatsNew }.replace("\n", "
") + val screenshotPairs = localizedMap.find { key, localized -> localized.screenshots?.let { Pair(key, it) } } + val screenshots = screenshotPairs + ?.let { (key, screenshots) -> screenshots.phone.asSequence() + .map { Product.Screenshot(key, Product.Screenshot.Type.PHONE, it) } + + screenshots.smallTablet.asSequence() + .map { Product.Screenshot(key, Product.Screenshot.Type.SMALL_TABLET, it) } + + screenshots.largeTablet.asSequence() + .map { Product.Screenshot(key, Product.Screenshot.Type.LARGE_TABLET, it) } } + .orEmpty().toList() + return Product(repositoryId, packageName, name, summary, description, whatsNew, icon, + Product.Author(authorName, authorEmail, authorWeb), source, changelog, web, tracker, added, updated, + suggestedVersionCode, categories, antiFeatures, licenses, + donates.sortedWith(IndexHandler.DonateComparator), screenshots, emptyList()) + } + + private fun JsonParser.parseRelease(): Release { + var version = "" + var versionCode = 0L + var added = 0L + var size = 0L + var minSdkVersion = 0 + var targetSdkVersion = 0 + var maxSdkVersion = 0 + var source = "" + var release = "" + var hash = "" + var hashTypeCandidate = "" + var signature = "" + var obbMain = "" + var obbMainHash = "" + var obbPatch = "" + var obbPatchHash = "" + val permissions = linkedSetOf() + var features = emptyList() + var platforms = emptyList() + forEachKey { + when { + it.string("versionName") -> version = valueAsString + it.number("versionCode") -> versionCode = valueAsLong + it.number("added") -> added = valueAsLong + it.number("size") -> size = valueAsLong + it.number("minSdkVersion") -> minSdkVersion = valueAsInt + it.number("targetSdkVersion") -> targetSdkVersion = valueAsInt + it.number("maxSdkVersion") -> maxSdkVersion = valueAsInt + it.string("srcname") -> source = valueAsString + it.string("apkName") -> release = valueAsString + it.string("hash") -> hash = valueAsString + it.string("hashType") -> hashTypeCandidate = valueAsString + it.string("sig") -> signature = valueAsString + it.string("obbMainFile") -> obbMain = valueAsString + it.string("obbMainFileSha256") -> obbMainHash = valueAsString + it.string("obbPatchFile") -> obbPatch = valueAsString + it.string("obbPatchFileSha256") -> obbPatchHash = valueAsString + it.array("uses-permission") -> collectPermissions(permissions, 0) + it.array("uses-permission-sdk-23") -> collectPermissions(permissions, 23) + it.array("features") -> features = collectNotNullStrings() + it.array("nativecode") -> platforms = collectNotNullStrings() + else -> skipChildren() + } + } + val hashType = if (hash.isNotEmpty() && hashTypeCandidate.isEmpty()) "sha256" else hashTypeCandidate + val obbMainHashType = if (obbMainHash.isNotEmpty()) "sha256" else "" + val obbPatchHashType = if (obbPatchHash.isNotEmpty()) "sha256" else "" + return Release(false, version, versionCode, added, size, + minSdkVersion, targetSdkVersion, maxSdkVersion, source, release, hash, hashType, signature, + obbMain, obbMainHash, obbMainHashType, obbPatch, obbPatchHash, obbPatchHashType, + permissions.toList(), features, platforms, emptyList()) + } + + private fun JsonParser.collectPermissions(permissions: LinkedHashSet, minSdk: Int) { + forEach(JsonToken.START_ARRAY) { + val firstToken = nextToken() + val permission = if (firstToken == JsonToken.VALUE_STRING) valueAsString else "" + if (firstToken != JsonToken.END_ARRAY) { + val secondToken = nextToken() + val maxSdk = if (secondToken == JsonToken.VALUE_NUMBER_INT) valueAsInt else 0 + if (permission.isNotEmpty() && Android.sdk >= minSdk && (maxSdk <= 0 || Android.sdk <= maxSdk)) { + permissions.add(permission) + } + if (secondToken != JsonToken.END_ARRAY) { + while (true) { + val token = nextToken() + if (token == JsonToken.END_ARRAY) { + break + } else if (token.isStructStart) { + skipChildren() + } + } + } + } + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/index/RepositoryUpdater.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/index/RepositoryUpdater.kt new file mode 100644 index 0000000..06f59dd --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/index/RepositoryUpdater.kt @@ -0,0 +1,343 @@ +package nya.kitsunyan.foxydroid.index + +import android.content.Context +import android.net.Uri +import io.reactivex.rxjava3.core.Observable +import io.reactivex.rxjava3.core.Single +import io.reactivex.rxjava3.schedulers.Schedulers +import nya.kitsunyan.foxydroid.content.Cache +import nya.kitsunyan.foxydroid.database.Database +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.Release +import nya.kitsunyan.foxydroid.entity.Repository +import nya.kitsunyan.foxydroid.network.Downloader +import nya.kitsunyan.foxydroid.utility.ProgressInputStream +import nya.kitsunyan.foxydroid.utility.RxUtils +import nya.kitsunyan.foxydroid.utility.Utils +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.text.* +import org.xml.sax.InputSource +import java.io.File +import java.security.cert.X509Certificate +import java.util.Locale +import java.util.jar.JarEntry +import java.util.jar.JarFile +import javax.xml.parsers.SAXParserFactory + +object RepositoryUpdater { + enum class Stage { + DOWNLOAD, PROCESS, MERGE, COMMIT + } + + private enum class IndexType(val jarName: String, val contentName: String, val certificateFromIndex: Boolean) { + INDEX("index.jar", "index.xml", true), + INDEX_V1("index-v1.jar", "index-v1.json", false) + } + + enum class ErrorType { + NETWORK, HTTP, VALIDATION, PARSING + } + + class UpdateException: Exception { + val errorType: ErrorType + + constructor(errorType: ErrorType, message: String): super(message) { + this.errorType = errorType + } + + constructor(errorType: ErrorType, message: String, cause: Exception): super(message, cause) { + this.errorType = errorType + } + } + + private lateinit var context: Context + private val updaterLock = Any() + private val cleanupLock = Any() + + fun init(context: Context) { + this.context = context + + var lastDisabled = setOf() + Observable.just(Unit) + .concatWith(Database.observable(Database.Subject.Repositories)) + .observeOn(Schedulers.io()) + .flatMapSingle { RxUtils.querySingle { Database.RepositoryAdapter.getAllDisabledDeleted(it) } } + .forEach { + val newDisabled = it.asSequence().filter { !it.second }.map { it.first }.toSet() + val disabled = newDisabled - lastDisabled + lastDisabled = newDisabled + val deleted = it.asSequence().filter { it.second }.map { it.first }.toSet() + if (disabled.isNotEmpty() || deleted.isNotEmpty()) { + val pairs = (disabled.asSequence().map { Pair(it, false) } + + deleted.asSequence().map { Pair(it, true) }).toSet() + synchronized(cleanupLock) { Database.RepositoryAdapter.cleanup(pairs) } + } + } + } + + fun await() { + synchronized(updaterLock) { } + } + + fun update(repository: Repository, unstable: Boolean, + callback: (Stage, Long, Long?) -> Unit): Single { + return update(repository, listOf(IndexType.INDEX_V1, IndexType.INDEX), unstable, callback) + } + + private fun update(repository: Repository, indexTypes: List, unstable: Boolean, + callback: (Stage, Long, Long?) -> Unit): Single { + val indexType = indexTypes[0] + return downloadIndex(repository, indexType, callback) + .flatMap { (result, file) -> + when { + result.isNotChanged -> { + file.delete() + Single.just(false) + } + !result.success -> { + file.delete() + if (result.code == 404 && indexTypes.isNotEmpty()) { + update(repository, indexTypes.subList(1, indexTypes.size), unstable, callback) + } else { + Single.error(UpdateException(ErrorType.HTTP, "Invalid response: HTTP ${result.code}")) + } + } + else -> { + RxUtils.managedSingle { processFile(repository, indexType, unstable, + file, result.lastModified, result.entityTag, callback) } + } + } + } + } + + private fun downloadIndex(repository: Repository, indexType: IndexType, + callback: (Stage, Long, Long?) -> Unit): Single> { + return Single.just(Unit) + .map { Cache.getTemporaryFile(context) } + .flatMap { file -> Downloader + .download(Uri.parse(repository.address).buildUpon() + .appendPath(indexType.jarName).build().toString(), file, repository.lastModified, repository.entityTag, + repository.authentication) { read, total -> callback(Stage.DOWNLOAD, read, total) } + .subscribeOn(Schedulers.io()) + .map { Pair(it, file) } + .onErrorResumeNext { + file.delete() + when (it) { + is InterruptedException, is RuntimeException, is Error -> Single.error(it) + is Exception -> Single.error(UpdateException(ErrorType.NETWORK, "Network error", it)) + else -> Single.error(it) + } + } } + } + + private fun processFile(repository: Repository, indexType: IndexType, unstable: Boolean, + file: File, lastModified: String, entityTag: String, callback: (Stage, Long, Long?) -> Unit): Boolean { + var rollback = true + return synchronized(updaterLock) { + try { + val jarFile = JarFile(file, true) + val indexEntry = jarFile.getEntry(indexType.contentName) as JarEntry + val total = indexEntry.size + Database.UpdaterAdapter.createTemporaryTable() + val features = context.packageManager.systemAvailableFeatures + .asSequence().map { it.name }.toSet() + setOf("android.hardware.touchscreen") + + val (changedRepository, certificateFromIndex) = when (indexType) { + IndexType.INDEX -> { + val factory = SAXParserFactory.newInstance() + factory.isNamespaceAware = true + val parser = factory.newSAXParser() + val reader = parser.xmlReader + var changedRepository: Repository? = null + var certificateFromIndex: String? = null + val products = mutableListOf() + + reader.contentHandler = IndexHandler(repository.id, object: IndexHandler.Callback { + override fun onRepository(mirrors: List, name: String, description: String, + certificate: String, version: Int, timestamp: Long) { + changedRepository = repository.update(mirrors, name, description, version, + lastModified, entityTag, timestamp) + certificateFromIndex = certificate.toLowerCase(Locale.US) + } + + override fun onProduct(product: Product) { + if (Thread.interrupted()) { + throw InterruptedException() + } + products += transformProduct(product, features, unstable) + if (products.size >= 50) { + Database.UpdaterAdapter.putTemporary(products) + products.clear() + } + } + }) + + ProgressInputStream(jarFile.getInputStream(indexEntry)) { callback(Stage.PROCESS, it, total) } + .use { reader.parse(InputSource(it)) } + if (Thread.interrupted()) { + throw InterruptedException() + } + if (products.isNotEmpty()) { + Database.UpdaterAdapter.putTemporary(products) + products.clear() + } + Pair(changedRepository, certificateFromIndex) + } + IndexType.INDEX_V1 -> { + var changedRepository: Repository? = null + + val mergerFile = Cache.getTemporaryFile(context) + try { + val unmergedProducts = mutableListOf() + val unmergedReleases = mutableListOf>>() + IndexMerger(mergerFile).use { indexMerger -> + ProgressInputStream(jarFile.getInputStream(indexEntry)) { callback(Stage.PROCESS, it, total) }.use { + IndexV1Parser.parse(repository.id, it, object: IndexV1Parser.Callback { + override fun onRepository(mirrors: List, name: String, description: String, + version: Int, timestamp: Long) { + changedRepository = repository.update(mirrors, name, description, version, + lastModified, entityTag, timestamp) + } + + override fun onProduct(product: Product) { + if (Thread.interrupted()) { + throw InterruptedException() + } + unmergedProducts += product + if (unmergedProducts.size >= 50) { + indexMerger.addProducts(unmergedProducts) + unmergedProducts.clear() + } + } + + override fun onReleases(packageName: String, releases: List) { + if (Thread.interrupted()) { + throw InterruptedException() + } + unmergedReleases += Pair(packageName, releases) + if (unmergedReleases.size >= 50) { + indexMerger.addReleases(unmergedReleases) + unmergedReleases.clear() + } + } + }) + + if (Thread.interrupted()) { + throw InterruptedException() + } + if (unmergedProducts.isNotEmpty()) { + indexMerger.addProducts(unmergedProducts) + unmergedProducts.clear() + } + if (unmergedReleases.isNotEmpty()) { + indexMerger.addReleases(unmergedReleases) + unmergedReleases.clear() + } + var progress = 0 + indexMerger.forEach(repository.id, 50) { products, totalCount -> + if (Thread.interrupted()) { + throw InterruptedException() + } + progress += products.size + callback(Stage.MERGE, progress.toLong(), totalCount.toLong()) + Database.UpdaterAdapter.putTemporary(products + .map { transformProduct(it, features, unstable) }) + } + } + } + } finally { + mergerFile.delete() + } + Pair(changedRepository, null) + } + } + + val workRepository = changedRepository ?: repository + if (workRepository.timestamp < repository.timestamp) { + throw UpdateException(ErrorType.VALIDATION, "New index is older than current index: " + + "${workRepository.timestamp} < ${repository.timestamp}") + } else { + val fingerprint = run { + val certificateFromJar = run { + val codeSigners = indexEntry.codeSigners + if (codeSigners == null || codeSigners.size != 1) { + throw UpdateException(ErrorType.VALIDATION, "index.jar must be signed by a single code signer") + } else { + val certificates = codeSigners[0].signerCertPath?.certificates.orEmpty() + if (certificates.size != 1) { + throw UpdateException(ErrorType.VALIDATION, "index.jar code signer should have only one certificate") + } else { + certificates[0] as X509Certificate + } + } + } + val fingerprintFromJar = Utils.calculateFingerprint(certificateFromJar) + if (indexType.certificateFromIndex) { + val fingerprintFromIndex = certificateFromIndex?.unhex()?.let(Utils::calculateFingerprint) + if (fingerprintFromIndex == null || fingerprintFromJar != fingerprintFromIndex) { + throw UpdateException(ErrorType.VALIDATION, "index.xml contains invalid public key") + } + fingerprintFromIndex + } else { + fingerprintFromJar + } + } + + val commitRepository = if (workRepository.fingerprint != fingerprint) { + if (workRepository.fingerprint.isEmpty()) { + workRepository.copy(fingerprint = fingerprint) + } else { + throw UpdateException(ErrorType.VALIDATION, "Certificate fingerprints do not match") + } + } else { + workRepository + } + if (Thread.interrupted()) { + throw InterruptedException() + } + callback(Stage.COMMIT, 0, null) + synchronized(cleanupLock) { Database.UpdaterAdapter.finishTemporary(commitRepository, true) } + rollback = false + true + } + } catch (e: Exception) { + throw when (e) { + is UpdateException, is InterruptedException -> e + else -> UpdateException(ErrorType.PARSING, "Error parsing index", e) + } + } finally { + file.delete() + if (rollback) { + Database.UpdaterAdapter.finishTemporary(repository, false) + } + } + } + } + + private fun transformProduct(product: Product, features: Set, unstable: Boolean): Product { + val releasePairs = product.releases.distinctBy { it.identifier }.sortedByDescending { it.versionCode }.map { + val incompatibilities = mutableListOf() + if (it.minSdkVersion > 0 && Android.sdk < it.minSdkVersion) { + incompatibilities += Release.Incompatibility.MinSdk + } + if (it.maxSdkVersion > 0 && Android.sdk > it.maxSdkVersion) { + incompatibilities += Release.Incompatibility.MaxSdk + } + if (it.platforms.isNotEmpty() && it.platforms.intersect(Android.platforms).isEmpty()) { + incompatibilities += Release.Incompatibility.Platform + } + incompatibilities += (it.features - features).map { Release.Incompatibility.Feature(it) } + Pair(it, incompatibilities as List) + }.toMutableList() + + val predicate: (Release) -> Boolean = { unstable || product.suggestedVersionCode <= 0 || + it.versionCode <= product.suggestedVersionCode } + val compatibleReleaseIndex = releasePairs.indexOfFirst { it.second.isEmpty() && predicate(it.first) } + val releaseIndex = if (compatibleReleaseIndex >= 0) compatibleReleaseIndex else + releasePairs.indexOfFirst { predicate(it.first) } + + val releases = releasePairs.mapIndexed { index, (release, incompatibilities) -> release + .copy(incompatibilities = incompatibilities, selected = index == releaseIndex) } + return product.copy(releases = releases) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/network/CoilDownloader.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/network/CoilDownloader.kt new file mode 100644 index 0000000..5c1c85b --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/network/CoilDownloader.kt @@ -0,0 +1,106 @@ +package nya.kitsunyan.foxydroid.network + +import android.content.Context +import android.net.Uri +import android.view.View +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.Repository +import nya.kitsunyan.foxydroid.utility.extension.text.* +import okhttp3.Cache +import okhttp3.Call +import okhttp3.HttpUrl.Companion.toHttpUrl +import java.io.File +import kotlin.math.* + +object CoilDownloader { + private const val HOST_ICON = "icon" + private const val HOST_SCREENSHOT = "screenshot" + private const val QUERY_ADDRESS = "address" + private const val QUERY_AUTHENTICATION = "authentication" + private const val QUERY_ICON = "icon" + private const val QUERY_PACKAGE_NAME = "packageName" + private const val QUERY_LOCALE = "locale" + private const val QUERY_DEVICE = "device" + private const val QUERY_SCREENSHOT = "screenshot" + private const val QUERY_DPI = "dpi" + + private val supportedDpis = listOf(120, 160, 240, 320, 480, 640) + + class Factory(cacheDir: File): Call.Factory { + private val cache = Cache(cacheDir, 50_000_000L) + + override fun newCall(request: okhttp3.Request): Call { + return when (request.url.host) { + HOST_ICON -> { + val address = request.url.queryParameter(QUERY_ADDRESS) + val authentication = request.url.queryParameter(QUERY_AUTHENTICATION) + val icon = request.url.queryParameter(QUERY_ICON) + val dpi = request.url.queryParameter(QUERY_DPI)?.nullIfEmpty() + if (address.isNullOrEmpty() || icon.isNullOrEmpty()) { + Downloader.createCall(request.newBuilder(), "", null) + } else { + Downloader.createCall(request.newBuilder().url(address.toHttpUrl() + .newBuilder().addPathSegment(if (dpi != null) "icons-$dpi" else "icons") + .addPathSegment(icon).build()), authentication.orEmpty(), cache) + } + } + HOST_SCREENSHOT -> { + val address = request.url.queryParameter(QUERY_ADDRESS) + val authentication = request.url.queryParameter(QUERY_AUTHENTICATION) + val packageName = request.url.queryParameter(QUERY_PACKAGE_NAME) + val locale = request.url.queryParameter(QUERY_LOCALE) + val device = request.url.queryParameter(QUERY_DEVICE) + val screenshot = request.url.queryParameter(QUERY_SCREENSHOT) + if (screenshot.isNullOrEmpty() || address.isNullOrEmpty()) { + Downloader.createCall(request.newBuilder(), "", null) + } else { + Downloader.createCall(request.newBuilder().url(address.toHttpUrl() + .newBuilder().addPathSegment(packageName.orEmpty()).addPathSegment(locale.orEmpty()) + .addPathSegment(device.orEmpty()).addPathSegment(screenshot.orEmpty()).build()), + authentication.orEmpty(), cache) + } + } + else -> { + Downloader.createCall(request.newBuilder(), "", null) + } + } + } + } + + fun createScreenshotUri(repository: Repository, packageName: String, screenshot: Product.Screenshot): Uri { + return Uri.Builder().scheme("https").authority(HOST_SCREENSHOT) + .appendQueryParameter(QUERY_ADDRESS, repository.address) + .appendQueryParameter(QUERY_AUTHENTICATION, repository.authentication) + .appendQueryParameter(QUERY_PACKAGE_NAME, packageName) + .appendQueryParameter(QUERY_LOCALE, screenshot.locale) + .appendQueryParameter(QUERY_DEVICE, when (screenshot.type) { + Product.Screenshot.Type.PHONE -> "phoneScreenshots" + Product.Screenshot.Type.SMALL_TABLET -> "sevenInchScreenshots" + Product.Screenshot.Type.LARGE_TABLET -> "tenInchScreenshots" + }) + .appendQueryParameter(QUERY_SCREENSHOT, screenshot.path) + .build() + } + + fun createIconUri(view: View, icon: String, repository: Repository): Uri { + val size = (view.layoutParams.let { min(it.width, it.height) } / + view.resources.displayMetrics.density).roundToInt() + return createIconUri(view.context, icon, size, repository) + } + + private fun createIconUri(context: Context, icon: String, targetSizeDp: Int, repository: Repository): Uri { + return Uri.Builder().scheme("https").authority(HOST_ICON) + .appendQueryParameter(QUERY_ADDRESS, repository.address) + .appendQueryParameter(QUERY_AUTHENTICATION, repository.authentication) + .appendQueryParameter(QUERY_ICON, icon) + .apply { + if (repository.version >= 11) { + val displayDpi = context.resources.displayMetrics.densityDpi + val requiredDpi = displayDpi * targetSizeDp / 48 + val iconDpi = supportedDpis.find { it >= requiredDpi } ?: supportedDpis.last() + appendQueryParameter(QUERY_DPI, iconDpi.toString()) + } + } + .build() + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/network/Downloader.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/network/Downloader.kt new file mode 100644 index 0000000..12cd0ab --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/network/Downloader.kt @@ -0,0 +1,114 @@ +package nya.kitsunyan.foxydroid.network + +import io.reactivex.rxjava3.core.Single +import io.reactivex.rxjava3.schedulers.Schedulers +import nya.kitsunyan.foxydroid.utility.ProgressInputStream +import nya.kitsunyan.foxydroid.utility.RxUtils +import okhttp3.Cache +import okhttp3.Call +import okhttp3.OkHttpClient +import okhttp3.Request +import java.io.File +import java.io.FileOutputStream +import java.net.InetSocketAddress +import java.net.Proxy +import java.util.concurrent.TimeUnit + +object Downloader { + private data class ClientConfiguration(val cache: Cache?, val onion: Boolean) + + private val clients = mutableMapOf() + private val onionProxy = Proxy(Proxy.Type.SOCKS, InetSocketAddress("127.0.0.1", 9050)) + + var proxy: Proxy? = null + set(value) { + if (field != value) { + synchronized(clients) { + field = value + clients.keys.removeAll { !it.onion } + } + } + } + + private fun createClient(proxy: Proxy?, cache: Cache?): OkHttpClient { + return OkHttpClient.Builder() + .connectTimeout(30L, TimeUnit.SECONDS) + .readTimeout(15L, TimeUnit.SECONDS) + .writeTimeout(15L, TimeUnit.SECONDS) + .proxy(proxy).cache(cache).build() + } + + class Result(val code: Int, val lastModified: String, val entityTag: String) { + val success: Boolean + get() = code == 200 || code == 206 + + val isNotChanged: Boolean + get() = code == 304 + } + + fun createCall(request: Request.Builder, authentication: String, cache: Cache?): Call { + val oldRequest = request.build() + val newRequest = if (authentication.isNotEmpty()) { + request.addHeader("Authorization", authentication).build() + } else { + request.build() + } + val onion = oldRequest.url.host.endsWith(".onion") + val client = synchronized(clients) { + val proxy = if (onion) onionProxy else proxy + val clientConfiguration = ClientConfiguration(cache, onion) + clients[clientConfiguration] ?: run { + val client = createClient(proxy, cache) + clients[clientConfiguration] = client + client + } + } + return client.newCall(newRequest) + } + + fun download(url: String, target: File, lastModified: String, entityTag: String, authentication: String, + callback: ((read: Long, total: Long?) -> Unit)?): Single { + val start = if (target.exists()) target.length().let { if (it > 0L) it else null } else null + val request = Request.Builder().url(url) + .apply { + if (entityTag.isNotEmpty()) { + addHeader("If-None-Match", entityTag) + } else if (lastModified.isNotEmpty()) { + addHeader("If-Modified-Since", lastModified) + } + if (start != null) { + addHeader("Range", "bytes=$start-") + } + } + + return RxUtils + .callSingle { createCall(request, authentication, null) } + .subscribeOn(Schedulers.io()) + .flatMap { result -> RxUtils + .managedSingle { result.use { + if (result.code == 304) { + Result(it.code, lastModified, entityTag) + } else { + val body = it.body!! + val append = start != null && it.header("Content-Range") != null + val progressStart = if (append && start != null) start else 0L + val progressTotal = body.contentLength().let { if (it >= 0L) it else null } + ?.let { progressStart + it } + val inputStream = ProgressInputStream(body.byteStream()) { + if (Thread.interrupted()) { + throw InterruptedException() + } + callback?.invoke(progressStart + it, progressTotal) + } + inputStream.use { input -> + val outputStream = if (append) FileOutputStream(target, true) else FileOutputStream(target) + outputStream.use { output -> + input.copyTo(output) + output.fd.sync() + } + } + Result(it.code, it.header("Last-Modified").orEmpty(), it.header("ETag").orEmpty()) + } + } } } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/screen/Common.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/Common.kt new file mode 100644 index 0000000..8bac67f --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/Common.kt @@ -0,0 +1,6 @@ +package nya.kitsunyan.foxydroid.screen + +import androidx.fragment.app.Fragment + +val Fragment.screenActivity: ScreenActivity + get() = requireActivity() as ScreenActivity diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/screen/EditRepositoryFragment.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/EditRepositoryFragment.kt new file mode 100644 index 0000000..8056f63 --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/EditRepositoryFragment.kt @@ -0,0 +1,485 @@ +package nya.kitsunyan.foxydroid.screen + +import android.content.ClipboardManager +import android.content.Context +import android.graphics.PorterDuff +import android.graphics.PorterDuffColorFilter +import android.net.Uri +import android.os.Bundle +import android.text.Editable +import android.text.Selection +import android.text.TextWatcher +import android.util.Base64 +import android.view.LayoutInflater +import android.view.MenuItem +import android.view.View +import android.view.ViewGroup +import android.widget.EditText +import android.widget.FrameLayout +import android.widget.TextView +import androidx.appcompat.app.AlertDialog +import androidx.appcompat.widget.Toolbar +import androidx.fragment.app.DialogFragment +import androidx.fragment.app.Fragment +import io.reactivex.rxjava3.android.schedulers.AndroidSchedulers +import io.reactivex.rxjava3.core.Observable +import io.reactivex.rxjava3.core.Single +import io.reactivex.rxjava3.disposables.Disposable +import io.reactivex.rxjava3.schedulers.Schedulers +import nya.kitsunyan.foxydroid.R +import nya.kitsunyan.foxydroid.database.Database +import nya.kitsunyan.foxydroid.entity.Repository +import nya.kitsunyan.foxydroid.network.Downloader +import nya.kitsunyan.foxydroid.service.Connection +import nya.kitsunyan.foxydroid.service.SyncService +import nya.kitsunyan.foxydroid.utility.RxUtils +import nya.kitsunyan.foxydroid.utility.Utils +import nya.kitsunyan.foxydroid.utility.extension.resources.* +import nya.kitsunyan.foxydroid.utility.extension.text.* +import okhttp3.HttpUrl.Companion.toHttpUrl +import okhttp3.Request +import java.net.URI +import java.net.URL +import java.nio.charset.Charset +import java.util.Locale +import kotlin.math.* + +class EditRepositoryFragment(): Fragment() { + companion object { + private const val EXTRA_REPOSITORY_ID = "repositoryId" + + private val checkPaths = listOf("", "fdroid/repo", "repo") + } + + constructor(repositoryId: Long?): this() { + arguments = Bundle().apply { + repositoryId?.let { putLong(EXTRA_REPOSITORY_ID, it) } + } + } + + private class Layout(view: View) { + val address = view.findViewById(R.id.address)!! + val addressMirror = view.findViewById(R.id.address_mirror)!! + val addressError = view.findViewById(R.id.address_error)!! + val fingerprint = view.findViewById(R.id.fingerprint)!! + val fingerprintError = view.findViewById(R.id.fingerprint_error)!! + val username = view.findViewById(R.id.username)!! + val usernameError = view.findViewById(R.id.username_error)!! + val password = view.findViewById(R.id.password)!! + val passwordError = view.findViewById(R.id.password_error)!! + val overlay = view.findViewById(R.id.overlay)!! + val skip = view.findViewById(R.id.skip)!! + } + + private val repositoryId: Long? + get() = requireArguments().let { if (it.containsKey(EXTRA_REPOSITORY_ID)) + it.getLong(EXTRA_REPOSITORY_ID) else null } + + private lateinit var errorColorFilter: PorterDuffColorFilter + + private var saveMenuItem: MenuItem? = null + private var layout: Layout? = null + + private val syncConnection = Connection(SyncService::class.java) + private var repositoriesDisposable: Disposable? = null + private var checkDisposable: Disposable? = null + + private var takenAddresses = emptySet() + + override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View { + return inflater.inflate(R.layout.fragment, container, false) + } + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + + syncConnection.bind(requireContext()) + + val toolbar = view.findViewById(R.id.toolbar) + screenActivity.onFragmentViewCreated(toolbar) + if (repositoryId != null) { + toolbar.setTitle(R.string.edit_repository) + } else { + toolbar.setTitle(R.string.add_repository) + } + + toolbar.menu.apply { + saveMenuItem = add(R.string.save) + .setIcon(Utils.getToolbarIcon(toolbar.context, R.drawable.ic_save)) + .setEnabled(false) + .setShowAsActionFlags(MenuItem.SHOW_AS_ACTION_ALWAYS) + .setOnMenuItemClickListener { + onSaveRepositoryClick(true) + true + } + } + + val content = view.findViewById(R.id.fragment_content) + errorColorFilter = PorterDuffColorFilter(content.context + .getColorFromAttr(R.attr.colorError).defaultColor, PorterDuff.Mode.SRC_IN) + + content.addView(content.inflate(R.layout.edit_repository)) + val layout = Layout(content) + this.layout = layout + + layout.fingerprint.hint = generateSequence { "FF" }.take(32).joinToString(separator = " ") + layout.fingerprint.addTextChangedListener(object: TextWatcher { + override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) = Unit + override fun onTextChanged(s: CharSequence, start: Int, count: Int, after: Int) = Unit + + private val validChar: (Char) -> Boolean = { it in '0' .. '9' || it in 'a' .. 'f' || it in 'A' .. 'F' } + + private fun logicalPosition(s: String, position: Int): Int { + return if (position > 0) s.asSequence().take(position).count(validChar) else position + } + + private fun realPosition(s: String, position: Int): Int { + return if (position > 0) { + var left = position + val index = s.indexOfFirst { + validChar(it) && run { + left -= 1 + left <= 0 + } + } + if (index >= 0) min(index + 1, s.length) else s.length + } else { + position + } + } + + override fun afterTextChanged(s: Editable) { + val inputString = s.toString() + val outputString = inputString.toUpperCase(Locale.US) + .filter(validChar).windowed(2, 2, true).take(32).joinToString(separator = " ") + if (inputString != outputString) { + val inputStart = logicalPosition(inputString, Selection.getSelectionStart(s)) + val inputEnd = logicalPosition(inputString, Selection.getSelectionEnd(s)) + s.replace(0, s.length, outputString) + Selection.setSelection(s, realPosition(outputString, inputStart), realPosition(outputString, inputEnd)) + } + } + }) + + if (savedInstanceState == null) { + val repository = repositoryId?.let(Database.RepositoryAdapter::get) + if (repository == null) { + val clipboardManager = requireContext().getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager + val text = clipboardManager.primaryClip + ?.let { if (it.itemCount > 0) it else null } + ?.getItemAt(0)?.text?.toString().orEmpty() + val (addressText, fingerprintText) = try { + val uri = Uri.parse(URL(text).toString()) + val fingerprintText = uri.getQueryParameter("fingerprint")?.nullIfEmpty() + ?: uri.getQueryParameter("FINGERPRINT")?.nullIfEmpty() + Pair(uri.buildUpon().path(uri.path?.pathCropped) + .query(null).fragment(null).build().toString(), fingerprintText) + } catch (e: Exception) { + Pair(null, null) + } + layout.address.setText(addressText?.nullIfEmpty() ?: layout.address.hint) + layout.fingerprint.setText(fingerprintText) + } else { + layout.address.setText(repository.address) + val mirrors = repository.mirrors.map { it.withoutKnownPath } + if (mirrors.isNotEmpty()) { + layout.addressMirror.visibility = View.VISIBLE + layout.address.apply { setPaddingRelative(paddingStart, paddingTop, + paddingEnd + layout.addressMirror.layoutParams.width, paddingBottom) } + layout.addressMirror.setOnClickListener { SelectMirrorDialog(mirrors) + .show(childFragmentManager, SelectMirrorDialog::class.java.name) } + } + layout.fingerprint.setText(repository.fingerprint) + val (usernameText, passwordText) = repository.authentication.nullIfEmpty() + ?.let { if (it.startsWith("Basic ")) it.substring(6) else null } + ?.let { + try { + Base64.decode(it, Base64.NO_WRAP).toString(Charset.defaultCharset()) + } catch (e: Exception) { + e.printStackTrace() + null + } + } + ?.let { + val index = it.indexOf(':') + if (index >= 0) Pair(it.substring(0, index), it.substring(index + 1)) else null + } + ?: Pair(null, null) + layout.username.setText(usernameText) + layout.password.setText(passwordText) + } + } + + layout.address.addTextChangedListener(SimpleTextWatcher { invalidateAddress() }) + layout.fingerprint.addTextChangedListener(SimpleTextWatcher { invalidateFingerprint() }) + layout.username.addTextChangedListener(SimpleTextWatcher { invalidateUsernamePassword() }) + layout.password.addTextChangedListener(SimpleTextWatcher { invalidateUsernamePassword() }) + + (layout.overlay.parent as ViewGroup).layoutTransition?.setDuration(200L) + layout.overlay.background!!.apply { + mutate() + alpha = 0xcc + } + layout.skip.setOnClickListener { + if (checkDisposable != null) { + checkDisposable?.dispose() + checkDisposable = null + onSaveRepositoryClick(false) + } + } + + repositoriesDisposable = Observable.just(Unit) + .concatWith(Database.observable(Database.Subject.Repositories)) + .observeOn(Schedulers.io()) + .flatMapSingle { RxUtils.querySingle { Database.RepositoryAdapter.getAll(it) } } + .observeOn(AndroidSchedulers.mainThread()) + .subscribe { + takenAddresses = it.asSequence().filter { it.id != repositoryId } + .flatMap { (it.mirrors + it.address).asSequence() } + .map { it.withoutKnownPath }.toSet() + invalidateAddress() + } + } + + override fun onDestroyView() { + super.onDestroyView() + + saveMenuItem = null + layout = null + + syncConnection.unbind(requireContext()) + repositoriesDisposable?.dispose() + repositoriesDisposable = null + checkDisposable?.dispose() + checkDisposable = null + } + + override fun onActivityCreated(savedInstanceState: Bundle?) { + super.onActivityCreated(savedInstanceState) + + invalidateAddress() + invalidateFingerprint() + invalidateUsernamePassword() + } + + private var addressError = false + private var fingerprintError = false + private var usernamePasswordError = false + + private fun invalidateAddress() { + invalidateAddress(layout!!.address.text.toString()) + } + + private fun invalidateAddress(addressText: String) { + val layout = layout!! + val normalizedAddress = normalizeAddress(addressText) + val addressErrorResId = if (normalizedAddress != null) { + if (normalizedAddress.withoutKnownPath in takenAddresses) { + R.string.already_exists + } else { + null + } + } else { + R.string.invalid_address + } + layout.address.setError(addressErrorResId != null) + layout.addressError.visibility = if (addressErrorResId != null) View.VISIBLE else View.GONE + if (addressErrorResId != null) { + layout.addressError.setText(addressErrorResId) + } + addressError = addressErrorResId != null + invalidateState() + } + + private fun invalidateFingerprint() { + val layout = layout!! + val fingerprint = layout.fingerprint.text.toString().replace(" ", "") + val fingerprintInvalid = fingerprint.isNotEmpty() && fingerprint.length != 64 + layout.fingerprintError.visibility = if (fingerprintInvalid) View.VISIBLE else View.GONE + if (fingerprintInvalid) { + layout.fingerprintError.setText(R.string.invalid_fingerprint_format) + } + layout.fingerprint.setError(fingerprintInvalid) + fingerprintError = fingerprintInvalid + invalidateState() + } + + private fun invalidateUsernamePassword() { + val layout = layout!! + val username = layout.username.text.toString() + val password = layout.password.text.toString() + val usernameInvalid = username.contains(':') + val usernameEmpty = username.isEmpty() && password.isNotEmpty() + val passwordEmpty = username.isNotEmpty() && password.isEmpty() + layout.usernameError.visibility = if (usernameInvalid || usernameEmpty) View.VISIBLE else View.GONE + layout.passwordError.visibility = if (passwordEmpty) View.VISIBLE else View.GONE + if (usernameInvalid) { + layout.usernameError.setText(R.string.invalid_username_format) + } else if (usernameEmpty) { + layout.usernameError.setText(R.string.username_is_not_specified) + } + layout.username.setError(usernameEmpty) + if (passwordEmpty) { + layout.passwordError.setText(R.string.password_is_not_specified) + } + layout.password.setError(passwordEmpty) + usernamePasswordError = usernameInvalid || usernameEmpty || passwordEmpty + invalidateState() + } + + private fun invalidateState() { + val layout = layout!! + saveMenuItem!!.isEnabled = !addressError && !fingerprintError && + !usernamePasswordError && checkDisposable == null + layout.apply { sequenceOf(address, addressMirror, fingerprint, username, password) + .forEach { it.isEnabled = checkDisposable == null } } + layout.overlay.visibility = if (checkDisposable != null) View.VISIBLE else View.GONE + } + + private val String.pathCropped: String + get() { + val index = indexOfLast { it != '/' } + return if (index >= 0 && index < length - 1) substring(0, index + 1) else this + } + + private val String.withoutKnownPath: String + get() { + val cropped = pathCropped + val endsWith = checkPaths.asSequence().filter { it.isNotEmpty() } + .sortedByDescending { it.length }.find { cropped.endsWith("/$it") } + return if (endsWith != null) cropped.substring(0, cropped.length - endsWith.length - 1) else cropped + } + + private fun normalizeAddress(address: String): String? { + val uri = try { + val uri = URI(address) + if (uri.isAbsolute) uri.normalize() else null + } catch (e: Exception) { + null + } + val path = uri?.path?.pathCropped + return if (uri != null && path != null) { + try { + URI(uri.scheme, uri.userInfo, uri.host, uri.port, path, uri.query, uri.fragment).toString() + } catch (e: Exception) { + null + } + } else { + null + } + } + + private fun setMirror(address: String) { + layout?.address?.setText(address) + } + + private fun EditText.setError(error: Boolean) { + val drawable = background.mutate() + drawable.colorFilter = if (error) errorColorFilter else null + } + + private fun onSaveRepositoryClick(check: Boolean) { + if (checkDisposable == null) { + val layout = layout!! + val address = normalizeAddress(layout.address.text.toString())!! + val fingerprint = layout.fingerprint.text.toString().replace(" ", "") + val username = layout.username.text.toString().nullIfEmpty() + val password = layout.password.text.toString().nullIfEmpty() + val paths = sequenceOf("", "fdroid/repo", "repo") + val authentication = username?.let { u -> password + ?.let { p -> Base64.encodeToString("$u:$p".toByteArray(Charset.defaultCharset()), Base64.NO_WRAP) } } + ?.let { "Basic $it" }.orEmpty() + + if (check) { + checkDisposable = paths + .fold(Single.just("")) { oldAddressSingle, checkPath -> oldAddressSingle + .flatMap { oldAddress -> + if (oldAddress.isEmpty()) { + val builder = Uri.parse(address).buildUpon() + .let { if (checkPath.isEmpty()) it else it.appendEncodedPath(checkPath) } + val newAddress = builder.build() + val indexAddress = builder.appendPath("index.jar").build() + RxUtils + .callSingle { Downloader + .createCall(Request.Builder().method("HEAD", null) + .url(indexAddress.toString().toHttpUrl()), authentication, null) } + .subscribeOn(Schedulers.io()) + .map { if (it.code == 200) newAddress.toString() else "" } + } else { + Single.just(oldAddress) + } + } + } + .observeOn(AndroidSchedulers.mainThread()) + .subscribe { result, throwable -> + checkDisposable = null + throwable?.printStackTrace() + val resultAddress = result?.let { if (it.isEmpty()) null else it } ?: address + val allow = resultAddress == address || run { + layout.address.setText(resultAddress) + invalidateAddress(resultAddress) + !addressError + } + if (allow) { + onSaveRepositoryProceedInvalidate(resultAddress, fingerprint, authentication) + } else { + invalidateState() + } + } + invalidateState() + } else { + onSaveRepositoryProceedInvalidate(address, fingerprint, authentication) + } + } + } + + private fun onSaveRepositoryProceedInvalidate(address: String, fingerprint: String, authentication: String) { + val binder = syncConnection.binder + if (binder != null) { + val repositoryId = repositoryId + if (repositoryId != null && binder.isCurrentlySyncing(repositoryId)) { + MessageDialog(MessageDialog.Message.CantEditSyncing).show(childFragmentManager) + invalidateState() + } else { + val repository = repositoryId?.let(Database.RepositoryAdapter::get) + ?.edit(address, fingerprint, authentication) + ?: Repository.newRepository(address, fingerprint, authentication) + val changedRepository = Database.RepositoryAdapter.put(repository) + if (repositoryId == null && changedRepository.enabled) { + binder.sync(changedRepository) + } + requireActivity().onBackPressed() + } + } else { + invalidateState() + } + } + + private class SimpleTextWatcher(private val callback: (Editable) -> Unit): TextWatcher { + override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) = Unit + override fun onTextChanged(s: CharSequence, start: Int, count: Int, after: Int) = Unit + override fun afterTextChanged(s: Editable) = callback(s) + } + + class SelectMirrorDialog(): DialogFragment() { + companion object { + private const val EXTRA_MIRRORS = "mirrors" + } + + constructor(mirrors: List): this() { + arguments = Bundle().apply { + putStringArrayList(EXTRA_MIRRORS, ArrayList(mirrors)) + } + } + + override fun onCreateDialog(savedInstanceState: Bundle?): AlertDialog { + val mirrors = requireArguments().getStringArrayList(EXTRA_MIRRORS)!! + return AlertDialog.Builder(requireContext()) + .setTitle(R.string.select_the_mirror) + .setItems(mirrors.toTypedArray()) { _, position -> (parentFragment as EditRepositoryFragment) + .setMirror(mirrors[position]) } + .setNegativeButton(R.string.cancel, null) + .create() + } + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/screen/MessageDialog.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/MessageDialog.kt new file mode 100644 index 0000000..f77c2dc --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/MessageDialog.kt @@ -0,0 +1,231 @@ +package nya.kitsunyan.foxydroid.screen + +import android.content.ActivityNotFoundException +import android.content.Intent +import android.net.Uri +import android.os.Bundle +import android.os.Parcel +import androidx.appcompat.app.AlertDialog +import androidx.fragment.app.DialogFragment +import androidx.fragment.app.FragmentManager +import nya.kitsunyan.foxydroid.R +import nya.kitsunyan.foxydroid.entity.Release +import nya.kitsunyan.foxydroid.utility.KParcelable +import nya.kitsunyan.foxydroid.utility.PackageItemResolver +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.text.* + +class MessageDialog(): DialogFragment() { + companion object { + private const val EXTRA_MESSAGE = "message" + } + + sealed class Message: KParcelable { + object DeleteRepositoryConfirm: Message() { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { DeleteRepositoryConfirm } + } + + object CantEditSyncing: Message() { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { CantEditSyncing } + } + + class Link(val uri: Uri): Message() { + override fun writeToParcel(dest: Parcel, flags: Int) { + dest.writeString(uri.toString()) + } + + companion object { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { + val uri = Uri.parse(it.readString()!!) + Link(uri) + } + } + } + + class Permissions(val group: String?, val permissions: List): Message() { + override fun writeToParcel(dest: Parcel, flags: Int) { + dest.writeString(group) + dest.writeStringList(permissions) + } + + companion object { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { + val group = it.readString() + val permissions = it.createStringArrayList()!! + Permissions(group, permissions) + } + } + } + + class ReleaseIncompatible(val incompatibilities: List, + val platforms: List, val minSdkVersion: Int, val maxSdkVersion: Int): Message() { + override fun writeToParcel(dest: Parcel, flags: Int) { + dest.writeInt(incompatibilities.size) + for (incompatibility in incompatibilities) { + when (incompatibility) { + is Release.Incompatibility.MinSdk -> { + dest.writeInt(0) + } + is Release.Incompatibility.MaxSdk -> { + dest.writeInt(1) + } + is Release.Incompatibility.Platform -> { + dest.writeInt(2) + } + is Release.Incompatibility.Feature -> { + dest.writeInt(3) + dest.writeString(incompatibility.feature) + } + }::class + } + dest.writeStringList(platforms) + dest.writeInt(minSdkVersion) + dest.writeInt(maxSdkVersion) + } + + companion object { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { + val count = it.readInt() + val incompatibilities = generateSequence { + when (it.readInt()) { + 0 -> Release.Incompatibility.MinSdk + 1 -> Release.Incompatibility.MaxSdk + 2 -> Release.Incompatibility.Platform + 3 -> Release.Incompatibility.Feature(it.readString()!!) + else -> throw RuntimeException() + } + }.take(count).toList() + val platforms = it.createStringArrayList()!! + val minSdkVersion = it.readInt() + val maxSdkVersion = it.readInt() + ReleaseIncompatible(incompatibilities, platforms, minSdkVersion, maxSdkVersion) + } + } + } + + object ReleaseOlder: Message() { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { ReleaseOlder } + } + + object ReleaseSignatureMismatch: Message() { + @Suppress("unused") @JvmField val CREATOR = KParcelable.creator { ReleaseSignatureMismatch } + } + } + + constructor(message: Message): this() { + arguments = Bundle().apply { + putParcelable(EXTRA_MESSAGE, message) + } + } + + fun show(fragmentManager: FragmentManager) { + show(fragmentManager, this::class.java.name) + } + + override fun onCreateDialog(savedInstanceState: Bundle?): AlertDialog { + val dialog = AlertDialog.Builder(requireContext()) + when (val message = requireArguments().getParcelable(EXTRA_MESSAGE)!!) { + is Message.DeleteRepositoryConfirm -> { + dialog.setTitle(R.string.confirm_action) + dialog.setMessage(R.string.delete_repository_confirm) + dialog.setPositiveButton(R.string.delete) { _, _ -> (parentFragment as RepositoryFragment).onDeleteConfirm() } + dialog.setNegativeButton(R.string.cancel, null) + } + is Message.CantEditSyncing -> { + dialog.setTitle(R.string.action_failed) + dialog.setMessage(R.string.cant_edit_sync_description) + dialog.setPositiveButton(R.string.ok, null) + } + is Message.Link -> { + dialog.setTitle(R.string.confirm_action) + dialog.setMessage(getString(R.string.open_link_confirm_format, message.uri.toString())) + dialog.setPositiveButton(R.string.ok) { _, _ -> + try { + startActivity(Intent(Intent.ACTION_VIEW, message.uri)) + } catch (e: ActivityNotFoundException) { + e.printStackTrace() + } + } + dialog.setNegativeButton(R.string.cancel, null) + } + is Message.Permissions -> { + val packageManager = requireContext().packageManager + val builder = StringBuilder() + val localCache = PackageItemResolver.LocalCache() + val title = if (message.group != null) { + val name = try { + val permissionGroupInfo = packageManager.getPermissionGroupInfo(message.group, 0) + PackageItemResolver.loadLabel(requireContext(), localCache, permissionGroupInfo) + ?.nullIfEmpty()?.let { if (it == message.group) null else it } + } catch (e: Exception) { + null + } + name ?: getString(R.string.unknown) + } else { + getString(R.string.other) + } + for (permission in message.permissions) { + val description = try { + val permissionInfo = packageManager.getPermissionInfo(permission, 0) + PackageItemResolver.loadDescription(requireContext(), localCache, permissionInfo) + ?.nullIfEmpty()?.let { if (it == permission) null else it } + } catch (e: Exception) { + null + } + description?.let { builder.append(it).append("\n\n") } + } + if (builder.isNotEmpty()) { + builder.delete(builder.length - 2, builder.length) + } else { + builder.append(getString(R.string.no_description_available_description)) + } + dialog.setTitle(title) + dialog.setMessage(builder) + dialog.setPositiveButton(R.string.ok, null) + } + is Message.ReleaseIncompatible -> { + val builder = StringBuilder() + val minSdkVersion = if (Release.Incompatibility.MinSdk in message.incompatibilities) + message.minSdkVersion else null + val maxSdkVersion = if (Release.Incompatibility.MaxSdk in message.incompatibilities) + message.maxSdkVersion else null + if (minSdkVersion != null || maxSdkVersion != null) { + val versionMessage = minSdkVersion?.let { getString(R.string.incompatible_sdk_min_description_format, it) } + ?: maxSdkVersion?.let { getString(R.string.incompatible_sdk_max_description_format, it) } + builder.append(getString(R.string.incompatible_sdk_description_format, + Android.name, Android.sdk, versionMessage.orEmpty())).append("\n\n") + } + if (Release.Incompatibility.Platform in message.incompatibilities) { + builder.append(getString(R.string.incompatible_platforms_description_format, + Android.primaryPlatform ?: getString(R.string.unknown), + message.platforms.joinToString(separator = ", "))).append("\n\n") + } + val features = message.incompatibilities.mapNotNull { it as? Release.Incompatibility.Feature } + if (features.isNotEmpty()) { + builder.append(getString(R.string.incompatible_features_description)) + for (feature in features) { + builder.append("\n\u2022 ").append(feature.feature) + } + builder.append("\n\n") + } + if (builder.isNotEmpty()) { + builder.delete(builder.length - 2, builder.length) + } + dialog.setTitle(R.string.incompatible_version) + dialog.setMessage(builder) + dialog.setPositiveButton(R.string.ok, null) + } + is Message.ReleaseOlder -> { + dialog.setTitle(R.string.incompatible_version) + dialog.setMessage(R.string.incompatible_older_description) + dialog.setPositiveButton(R.string.ok, null) + } + is Message.ReleaseSignatureMismatch -> { + dialog.setTitle(R.string.incompatible_version) + dialog.setMessage(R.string.incompatible_signature_description) + dialog.setPositiveButton(R.string.ok, null) + } + }::class + return dialog.create() + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/screen/PreferencesFragment.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/PreferencesFragment.kt new file mode 100644 index 0000000..86516ca --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/PreferencesFragment.kt @@ -0,0 +1,182 @@ +package nya.kitsunyan.foxydroid.screen + +import android.os.Bundle +import android.text.InputFilter +import android.text.InputType +import android.view.LayoutInflater +import android.view.View +import android.view.ViewGroup +import android.widget.FrameLayout +import androidx.appcompat.widget.Toolbar +import androidx.preference.EditTextPreference +import androidx.preference.ListPreference +import androidx.preference.Preference +import androidx.preference.PreferenceCategory +import androidx.preference.PreferenceFragmentCompat +import androidx.preference.PreferenceGroup +import androidx.preference.SwitchPreference +import io.reactivex.rxjava3.disposables.Disposable +import nya.kitsunyan.foxydroid.R +import nya.kitsunyan.foxydroid.content.Preferences + +class PreferencesFragment: PreferenceFragmentCompat() { + private var disposable: Disposable? = null + + override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View { + val view = inflater.inflate(R.layout.fragment, container, false) + val content = view.findViewById(R.id.fragment_content) + val child = super.onCreateView(LayoutInflater.from(content.context), content, savedInstanceState) + content.addView(child, FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT) + return view + } + + override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) { + preferenceScreen = preferenceManager.createPreferenceScreen(requireContext()) + preferenceScreen.addCategory(getString(R.string.updates)).apply { + addEnumeration(Preferences.Key.AutoSync, getString(R.string.sync_repositories_automatically)) { + when (it) { + Preferences.AutoSync.Never -> getString(R.string.never) + Preferences.AutoSync.Wifi -> getString(R.string.over_wifi) + Preferences.AutoSync.Always -> getString(R.string.always) + } + } + addSwitch(Preferences.Key.UpdateNotify, getString(R.string.update_notifications), + getString(R.string.update_notifications_summary)) + addSwitch(Preferences.Key.UpdateUnstable, getString(R.string.unstable_updates), + getString(R.string.unstable_updates_summary)) + } + preferenceScreen.addCategory(getString(R.string.proxy)).apply { + addEnumeration(Preferences.Key.ProxyType, getString(R.string.proxy_type)) { + when (it) { + is Preferences.ProxyType.Direct -> getString(R.string.no_proxy) + is Preferences.ProxyType.Http -> getString(R.string.http_proxy) + is Preferences.ProxyType.Socks -> getString(R.string.socks_proxy) + } + } + addEditString(Preferences.Key.ProxyHost, getString(R.string.proxy_host)) + addEditInt(Preferences.Key.ProxyPort, getString(R.string.proxy_port), 1 .. 65535) + } + preferenceScreen.addCategory(getString(R.string.other)).apply { + addEnumeration(Preferences.Key.Theme, getString(R.string.theme)) { + when (it) { + is Preferences.Theme.Light -> getString(R.string.light) + is Preferences.Theme.Dark -> getString(R.string.dark) + } + } + addSwitch(Preferences.Key.IncompatibleVersions, getString(R.string.incompatible_versions), + getString(R.string.incompatible_versions_summary)) + } + } + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + + val toolbar = view.findViewById(R.id.toolbar) + screenActivity.onFragmentViewCreated(toolbar) + toolbar.setTitle(R.string.preferences) + + disposable = Preferences.observable.subscribe(this::updatePreference) + updatePreference(null) + } + + override fun onDestroyView() { + super.onDestroyView() + + disposable?.dispose() + disposable = null + } + + private fun updatePreference(key: Preferences.Key<*>?) { + if (key == null || key == Preferences.Key.ProxyType) { + val enabled = when (Preferences[Preferences.Key.ProxyType]) { + is Preferences.ProxyType.Direct -> false + is Preferences.ProxyType.Http, is Preferences.ProxyType.Socks -> true + } + findPreference(Preferences.Key.ProxyHost.name)!!.isEnabled = enabled + findPreference(Preferences.Key.ProxyPort.name)!!.isEnabled = enabled + } + if (key == Preferences.Key.Theme) { + requireActivity().recreate() + } + } + + private fun PreferenceGroup.addCategory(title: String): PreferenceCategory { + val preference = PreferenceCategory(context) + preference.isIconSpaceReserved = false + preference.title = title + addPreference(preference) + return preference + } + + private fun PreferenceGroup.addSwitch(key: Preferences.Key, title: String, summary: String?) { + val preference = SwitchPreference(context) + preference.isIconSpaceReserved = false + preference.title = title + preference.summary = summary + preference.key = key.name + preference.setDefaultValue(key.default.value) + addPreference(preference) + } + + private fun PreferenceGroup.addEditString(key: Preferences.Key, title: String) { + val preference = EditTextPreference(context) + preference.isIconSpaceReserved = false + preference.title = title + preference.dialogTitle = title + preference.summaryProvider = Preference.SummaryProvider { it.text } + preference.key = key.name + preference.setDefaultValue(key.default.value) + addPreference(preference) + } + + private fun PreferenceGroup.addEditInt(key: Preferences.Key, title: String, range: IntRange?) { + val preference = object: EditTextPreference(context) { + override fun persistString(value: String?): Boolean { + val intValue = value.orEmpty().toIntOrNull() ?: key.default.value + val result = persistInt(intValue) + if (intValue.toString() != value) { + text = intValue.toString() + } + return result + } + + override fun onSetInitialValue(defaultValue: Any?) { + text = getPersistedInt((defaultValue as? Int) ?: key.default.value).toString() + } + } + preference.isIconSpaceReserved = false + preference.title = title + preference.dialogTitle = title + preference.summaryProvider = Preference.SummaryProvider { it.text } + preference.key = key.name + preference.setDefaultValue(key.default.value) + preference.setOnBindEditTextListener { + it.inputType = InputType.TYPE_CLASS_NUMBER or InputType.TYPE_NUMBER_FLAG_DECIMAL + if (range != null) { + it.filters = arrayOf(InputFilter { source, start, end, dest, dstart, dend -> + val value = (dest.substring(0, dstart) + source.substring(start, end) + + dest.substring(dend, dest.length)).toIntOrNull() + if (value != null && value in range) null else "" + }) + } + } + addPreference(preference) + } + + private fun > PreferenceGroup + .addEnumeration(key: Preferences.Key, title: String, valueString: (T) -> String) { + val preference = ListPreference(context) + preference.isIconSpaceReserved = false + preference.title = title + preference.dialogTitle = title + preference.summaryProvider = Preference.SummaryProvider { p -> + val index = p.entryValues.indexOfFirst { it == p.value } + if (index >= 0) p.entries[index] else valueString(key.default.value) + } + preference.key = key.name + preference.setDefaultValue(key.default.value.valueString) + preference.entryValues = key.default.value.values.map { it.valueString }.toTypedArray() + preference.entries = key.default.value.values.map(valueString).toTypedArray() + addPreference(preference) + } +} diff --git a/src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductAdapter.kt b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductAdapter.kt new file mode 100644 index 0000000..ca0190b --- /dev/null +++ b/src/main/kotlin/nya/kitsunyan/foxydroid/screen/ProductAdapter.kt @@ -0,0 +1,1270 @@ +package nya.kitsunyan.foxydroid.screen + +import android.annotation.SuppressLint +import android.content.ClipData +import android.content.ClipboardManager +import android.content.Context +import android.content.pm.PermissionGroupInfo +import android.content.pm.PermissionInfo +import android.content.res.Resources +import android.graphics.Canvas +import android.graphics.Paint +import android.graphics.Rect +import android.graphics.drawable.Drawable +import android.graphics.drawable.GradientDrawable +import android.net.Uri +import android.os.Parcel +import android.text.Html +import android.text.SpannableStringBuilder +import android.text.format.DateFormat +import android.text.style.BulletSpan +import android.text.style.ClickableSpan +import android.text.style.RelativeSizeSpan +import android.text.style.ReplacementSpan +import android.text.style.TypefaceSpan +import android.text.style.URLSpan +import android.text.util.Linkify +import android.view.Gravity +import android.view.MotionEvent +import android.view.View +import android.view.ViewGroup +import android.widget.Button +import android.widget.FrameLayout +import android.widget.ImageView +import android.widget.LinearLayout +import android.widget.ProgressBar +import android.widget.TextView +import android.widget.Toast +import androidx.appcompat.widget.AppCompatImageView +import androidx.appcompat.widget.AppCompatTextView +import androidx.appcompat.widget.SwitchCompat +import androidx.core.content.ContextCompat +import androidx.core.graphics.ColorUtils +import androidx.core.text.util.LinkifyCompat +import androidx.recyclerview.widget.RecyclerView +import coil.api.* +import nya.kitsunyan.foxydroid.R +import nya.kitsunyan.foxydroid.content.Preferences +import nya.kitsunyan.foxydroid.content.ProductPreferences +import nya.kitsunyan.foxydroid.entity.InstalledItem +import nya.kitsunyan.foxydroid.entity.Product +import nya.kitsunyan.foxydroid.entity.ProductPreference +import nya.kitsunyan.foxydroid.entity.Release +import nya.kitsunyan.foxydroid.entity.Repository +import nya.kitsunyan.foxydroid.graphics.PaddingDrawable +import nya.kitsunyan.foxydroid.network.CoilDownloader +import nya.kitsunyan.foxydroid.utility.KParcelable +import nya.kitsunyan.foxydroid.utility.PackageItemResolver +import nya.kitsunyan.foxydroid.utility.Utils +import nya.kitsunyan.foxydroid.utility.extension.android.* +import nya.kitsunyan.foxydroid.utility.extension.resources.* +import nya.kitsunyan.foxydroid.utility.extension.text.* +import nya.kitsunyan.foxydroid.widget.ClickableMovementMethod +import nya.kitsunyan.foxydroid.widget.DividerItemDecoration +import nya.kitsunyan.foxydroid.widget.StableRecyclerAdapter +import java.lang.ref.WeakReference +import java.util.Locale +import kotlin.math.* + +class ProductAdapter(private val callbacks: Callbacks, private val columns: Int): + StableRecyclerAdapter() { + companion object { + private const val GRID_SPACING_OUTER_DP = 16 + private const val GRID_SPACING_INNER_DP = 4 + } + + interface Callbacks { + fun onActionClick(action: Action) + fun onPreferenceChanged(preference: ProductPreference) + fun onPermissionsClick(group: String?, permissions: List) + fun onScreenshotClick(screenshot: Product.Screenshot) + fun onReleaseClick(release: Release) + fun onUriClick(uri: Uri, shouldConfirm: Boolean): Boolean + } + + enum class Action(val titleResId: Int) { + INSTALL(R.string.install), + UPDATE(R.string.update), + LAUNCH(R.string.launch), + DETAILS(R.string.details), + UNINSTALL(R.string.uninstall), + CANCEL(R.string.cancel) + } + + sealed class Status { + object Pending: Status() + object Connecting: Status() + data class Downloading(val read: Long, val total: Long?): Status() + } + + enum class ViewType { HEADER, SWITCH, SECTION, EXPAND, TEXT, LINK, PERMISSIONS, SCREENSHOT, RELEASE, EMPTY } + + private enum class SwitchType(val titleResId: Int) { + IGNORE_ALL_UPDATES(R.string.ignore_all_updates), + IGNORE_THIS_UPDATE(R.string.ignore_this_update) + } + + private enum class SectionType(val titleResId: Int, val colorAttrResId: Int) { + ANTI_FEATURES(R.string.anti_features, R.attr.colorError), + WHATS_NEW(R.string.whats_new, R.attr.colorAccent), + LINKS(R.string.links, R.attr.colorAccent), + DONATE(R.string.donate, R.attr.colorAccent), + PERMISSIONS(R.string.permissions, R.attr.colorAccent), + SCREENSHOTS(R.string.screenshots, R.attr.colorAccent), + RELEASES(R.string.releases, R.attr.colorAccent) + } + + internal enum class ExpandType { NOTHING, DESCRIPTION, WHATS_NEW, + LINKS, DONATES, PERMISSIONS, SCREENSHOTS, RELEASES } + private enum class TextType { DESCRIPTION, ANTI_FEATURES, WHATS_NEW } + + private enum class LinkType(val iconResId: Int, val titleResId: Int, + val format: ((Context, String) -> String)? = null) { + AUTHOR(R.drawable.ic_person, R.string.authors_website), + EMAIL(R.drawable.ic_email, R.string.authors_email), + LICENSE(R.drawable.ic_copyright, R.string.license, + format = { context, text -> context.getString(R.string.license_format, text) }), + SOURCE(R.drawable.ic_code, R.string.source_code), + TRACKER(R.drawable.ic_bug_report, R.string.bug_tracker), + CHANGELOG(R.drawable.ic_history, R.string.changelog), + WEB(R.drawable.ic_public, R.string.project_website) + } + + private sealed class Item { + abstract val descriptor: String + abstract val viewType: ViewType + + class HeaderItem(val repository: Repository, val product: Product): Item() { + override val descriptor: String + get() = "header" + + override val viewType: ViewType + get() = ViewType.HEADER + } + + class SwitchItem(val switchType: SwitchType, val packageName: String, val versionCode: Long): Item() { + override val descriptor: String + get() = "switch.${switchType.name}" + + override val viewType: ViewType + get() = ViewType.SWITCH + } + + class SectionItem(val sectionType: SectionType, val expandType: ExpandType, + val items: List, val collapseCount: Int): Item() { + constructor(sectionType: SectionType): this(sectionType, ExpandType.NOTHING, emptyList(), 0) + + override val descriptor: String + get() = "section.${sectionType.name}" + + override val viewType: ViewType + get() = ViewType.SECTION + } + + class ExpandItem(val expandType: ExpandType, val replace: Boolean, val items: List): Item() { + override val descriptor: String + get() = "expand.${expandType.name}" + + override val viewType: ViewType + get() = ViewType.EXPAND + } + + class TextItem(val textType: TextType, val text: CharSequence): Item() { + override val descriptor: String + get() = "text.${textType.name}" + + override val viewType: ViewType + get() = ViewType.TEXT + } + + sealed class LinkItem: Item() { + override val viewType: ViewType + get() = ViewType.LINK + + abstract val iconResId: Int + abstract fun getTitle(context: Context): String + abstract val uri: Uri? + + val displayLink: String? + get() = uri?.schemeSpecificPart?.nullIfEmpty() + ?.let { if (it.startsWith("//")) null else it } ?: uri?.toString() + + class Typed(val linkType: LinkType, val text: String, override val uri: Uri?): LinkItem() { + override val descriptor: String + get() = "link.typed.${linkType.name}" + + override val iconResId: Int + get() = linkType.iconResId + + override fun getTitle(context: Context): String { + return text.nullIfEmpty()?.let { linkType.format?.invoke(context, it) ?: it } + ?: context.getString(linkType.titleResId) + } + } + + class Donate(val donate: Product.Donate): LinkItem() { + override val descriptor: String + get() = "link.donate.$donate" + + override val iconResId: Int + get() = when (donate) { + is Product.Donate.Regular -> R.drawable.ic_public + is Product.Donate.Bitcoin -> R.drawable.ic_donate_bitcoin + is Product.Donate.Litecoin -> R.drawable.ic_donate_litecoin + is Product.Donate.Flattr -> R.drawable.ic_donate_flattr + is Product.Donate.Liberapay -> R.drawable.ic_donate_liberapay + } + + override fun getTitle(context: Context): String = when (donate) { + is Product.Donate.Regular -> context.getString(R.string.website) + is Product.Donate.Bitcoin -> "Bitcoin" + is Product.Donate.Litecoin -> "Litecoin" + is Product.Donate.Flattr -> "Flattr" + is Product.Donate.Liberapay -> "Liberapay" + } + + override val uri: Uri? = when (donate) { + is Product.Donate.Regular -> Uri.parse(donate.url) + is Product.Donate.Bitcoin -> Uri.parse("bitcoin:${donate.address}") + is Product.Donate.Litecoin -> Uri.parse("liberapay:${donate.address}") + is Product.Donate.Flattr -> Uri.parse("https://flattr.com/thing/${donate.id}") + is Product.Donate.Liberapay -> Uri.parse("https://liberapay.com/~${donate.id}") + } + } + } + + class PermissionsItem(val group: PermissionGroupInfo?, val permissions: List): Item() { + override val descriptor: String + get() = "permissions.${group?.name}.${permissions.joinToString(separator = ".") { it.name }}" + + override val viewType: ViewType + get() = ViewType.PERMISSIONS + } + + class ScreenshotItem(val repository: Repository, val packageName: String, + val screenshot: Product.Screenshot): Item() { + override val descriptor: String + get() = "screenshot.${repository.id}.${screenshot.identifier}" + + override val viewType: ViewType + get() = ViewType.SCREENSHOT + } + + class ReleaseItem(val repository: Repository, val release: Release, + val selectedRepository: Boolean): Item() { + override val descriptor: String + get() = "release.${repository.id}.${release.identifier}" + + override val viewType: ViewType + get() = ViewType.RELEASE + } + + class EmptyItem(val packageName: String): Item() { + override val descriptor: String + get() = "empty" + + override val viewType: ViewType + get() = ViewType.EMPTY + } + } + + private class Measurement { + private var density = 0f + private var scaledDensity = 0f + private lateinit var metric: T + + fun measure(view: View) { + View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED).let { view.measure(it, it) } + } + + fun invalidate(resources: Resources, callback: () -> T): T { + val (density, scaledDensity) = resources.displayMetrics.let { Pair(it.density, it.scaledDensity) } + if (this.density != density || this.scaledDensity != scaledDensity) { + this.density = density + this.scaledDensity = scaledDensity + metric = callback() + } + return metric + } + } + + private class HeaderViewHolder(itemView: View): RecyclerView.ViewHolder(itemView) { + val icon = itemView.findViewById(R.id.icon)!! + val name = itemView.findViewById(R.id.name)!! + val version = itemView.findViewById(R.id.version)!! + val packageName = itemView.findViewById(R.id.package_name)!! + val action = itemView.findViewById