├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ ├── EgorAnd.xml │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── me │ │ └── egorand │ │ └── mysecrets │ │ ├── MySecretsApp.java │ │ ├── data │ │ ├── db │ │ │ ├── SecretsDatabaseKeyGenerator.java │ │ │ ├── SecretsDatabaseKeyHolder.java │ │ │ └── SecretsRepository.java │ │ ├── gen │ │ │ ├── DaoMaster.java │ │ │ ├── DaoSession.java │ │ │ ├── Secret.java │ │ │ └── SecretDao.java │ │ └── loaders │ │ │ └── SecretsLoader.java │ │ ├── di │ │ ├── components │ │ │ └── AppComponent.java │ │ └── modules │ │ │ └── AppModule.java │ │ └── ui │ │ ├── activities │ │ └── SecretsActivity.java │ │ ├── adapters │ │ └── SecretsAdapter.java │ │ └── dialogs │ │ └── NewSecretDialogFragment.java │ └── res │ ├── drawable │ └── ic_add.xml │ ├── layout │ ├── activity_secrets.xml │ ├── content_secrets.xml │ ├── row_secret.xml │ └── view_new_secret_dialog.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-v21 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── dao-generator ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── me │ └── egorand │ └── mysecrets │ └── MySecretsDaoGenerator.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pull-db.sh └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | tmp -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | My Secrets -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/EgorAnd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 24 | 25 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 46 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # android-greendao-database-encryption 2 | 3 | An example of configuring greenDAO with database encryption to store sensitive data. 4 | Check [Keeping Your Secrets Safe With greenDAO's Database Encryption](http://blog.egorand.me/keeping-your-secrets-safe-with-greendaos-database-encryption/) 5 | 6 | License 7 | ------- 8 | 9 | Copyright 2016 Egor Andreevici 10 | 11 | Licensed under the Apache License, Version 2.0 (the "License"); 12 | you may not use this file except in compliance with the License. 13 | You may obtain a copy of the License at 14 | 15 | http://www.apache.org/licenses/LICENSE-2.0 16 | 17 | Unless required by applicable law or agreed to in writing, software 18 | distributed under the License is distributed on an "AS IS" BASIS, 19 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 20 | See the License for the specific language governing permissions and 21 | limitations under the License. 22 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | apply plugin: 'com.android.application' 18 | apply plugin: 'com.neenbedankt.android-apt' 19 | 20 | android { 21 | compileSdkVersion 23 22 | buildToolsVersion "23.0.3" 23 | 24 | defaultConfig { 25 | applicationId "me.egorand.mysecrets" 26 | minSdkVersion 16 27 | targetSdkVersion 23 28 | versionCode 1 29 | versionName "1.0" 30 | } 31 | buildTypes { 32 | release { 33 | minifyEnabled false 34 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 35 | } 36 | } 37 | dataBinding { 38 | enabled = true 39 | } 40 | } 41 | 42 | dependencies { 43 | compile "com.android.support:appcompat-v7:$support_version" 44 | compile "com.android.support:design:$support_version" 45 | compile "com.android.support:recyclerview-v7:$support_version" 46 | 47 | compile "org.greenrobot:greendao-encryption:$greendao_version" 48 | compile "net.zetetic:android-database-sqlcipher:$sqlcipher_version" 49 | 50 | compile "com.google.dagger:dagger:$dagger_version" 51 | apt "com.google.dagger:dagger-compiler:$dagger_version" 52 | provided 'org.glassfish:javax.annotation:10.0-b28' 53 | } 54 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/Egor/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 20 | 21 | 28 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/MySecretsApp.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets; 18 | 19 | import android.app.Application; 20 | 21 | import me.egorand.mysecrets.di.components.AppComponent; 22 | import me.egorand.mysecrets.di.components.DaggerAppComponent; 23 | import me.egorand.mysecrets.di.modules.AppModule; 24 | 25 | /** 26 | * @author Egor 27 | */ 28 | public class MySecretsApp extends Application { 29 | 30 | private AppComponent appComponent; 31 | 32 | public AppComponent appComponent() { 33 | if (appComponent == null) { 34 | appComponent = DaggerAppComponent.builder() 35 | .appModule(new AppModule(this)) 36 | .build(); 37 | } 38 | return appComponent; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/db/SecretsDatabaseKeyGenerator.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.db; 18 | 19 | import android.util.Base64; 20 | 21 | import java.security.NoSuchAlgorithmException; 22 | import java.security.SecureRandom; 23 | 24 | import javax.crypto.KeyGenerator; 25 | import javax.crypto.SecretKey; 26 | 27 | /** 28 | * @author Egor 29 | */ 30 | public class SecretsDatabaseKeyGenerator { 31 | 32 | public static final int DEFAULT_KEY_LENGTH = 256; 33 | 34 | public static String generateKey() { 35 | try { 36 | SecretKey secretKey = internalGenerateKey(); 37 | return Base64.encodeToString(secretKey.getEncoded(), Base64.NO_WRAP); 38 | } catch (NoSuchAlgorithmException ignored) { 39 | } 40 | return null; 41 | } 42 | 43 | private static SecretKey internalGenerateKey() throws NoSuchAlgorithmException { 44 | SecureRandom random = new SecureRandom(); 45 | KeyGenerator keyGenerator = KeyGenerator.getInstance("AES"); 46 | keyGenerator.init(DEFAULT_KEY_LENGTH, random); 47 | return keyGenerator.generateKey(); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/db/SecretsDatabaseKeyHolder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.db; 18 | 19 | import android.content.Context; 20 | import android.content.SharedPreferences; 21 | import android.util.Log; 22 | 23 | import javax.inject.Singleton; 24 | 25 | import me.egorand.mysecrets.BuildConfig; 26 | 27 | /** 28 | * @author Egor 29 | */ 30 | @Singleton 31 | public class SecretsDatabaseKeyHolder { 32 | 33 | private static final String LOG_TAG = "KeyHolder"; 34 | 35 | private static final String PREFS_NAME = "default"; 36 | 37 | private static final String KEY_DB_KEY = "db_key"; 38 | 39 | private final SharedPreferences prefs; 40 | 41 | public SecretsDatabaseKeyHolder(Context context) { 42 | this.prefs = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE); 43 | } 44 | 45 | public String getKey() { 46 | String key = prefs.getString(KEY_DB_KEY, null); 47 | if (key == null) { 48 | key = SecretsDatabaseKeyGenerator.generateKey(); 49 | prefs.edit().putString(KEY_DB_KEY, key).apply(); 50 | } 51 | if (BuildConfig.DEBUG) { 52 | Log.d(LOG_TAG, "DB key: " + key); 53 | } 54 | return key; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/db/SecretsRepository.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.db; 18 | 19 | import java.util.Date; 20 | import java.util.List; 21 | 22 | import javax.inject.Singleton; 23 | 24 | import me.egorand.mysecrets.data.gen.DaoSession; 25 | import me.egorand.mysecrets.data.gen.Secret; 26 | import me.egorand.mysecrets.data.gen.SecretDao; 27 | 28 | /** 29 | * @author Egor 30 | */ 31 | @Singleton 32 | public class SecretsRepository { 33 | 34 | private final SecretDao secretDao; 35 | 36 | public SecretsRepository(DaoSession session) { 37 | this.secretDao = session.getSecretDao(); 38 | } 39 | 40 | public List loadAllSecrets() { 41 | return secretDao.loadAll(); 42 | } 43 | 44 | public void storeSecret(String secretText) { 45 | Secret secret = new Secret(); 46 | secret.setText(secretText); 47 | secret.setAddedDate(new Date()); 48 | secretDao.insert(secret); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/gen/DaoMaster.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.gen; 18 | 19 | import android.content.Context; 20 | import android.database.sqlite.SQLiteDatabase; 21 | import android.database.sqlite.SQLiteDatabase.CursorFactory; 22 | import android.util.Log; 23 | 24 | import de.greenrobot.dao.AbstractDaoMaster; 25 | import de.greenrobot.dao.database.StandardDatabase; 26 | import de.greenrobot.dao.database.Database; 27 | import de.greenrobot.dao.database.EncryptedDatabaseOpenHelper; 28 | import de.greenrobot.dao.database.DatabaseOpenHelper; 29 | import de.greenrobot.dao.identityscope.IdentityScopeType; 30 | 31 | import me.egorand.mysecrets.data.gen.SecretDao; 32 | 33 | // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. 34 | /** 35 | * Master of DAO (schema version 1): knows all DAOs. 36 | */ 37 | public class DaoMaster extends AbstractDaoMaster { 38 | public static final int SCHEMA_VERSION = 1; 39 | 40 | /** Creates underlying database table using DAOs. */ 41 | public static void createAllTables(Database db, boolean ifNotExists) { 42 | SecretDao.createTable(db, ifNotExists); 43 | } 44 | 45 | /** Drops underlying database table using DAOs. */ 46 | public static void dropAllTables(Database db, boolean ifExists) { 47 | SecretDao.dropTable(db, ifExists); 48 | } 49 | 50 | public static abstract class OpenHelper extends DatabaseOpenHelper { 51 | public OpenHelper(Context context, String name) { 52 | super(context, name, SCHEMA_VERSION); 53 | } 54 | public OpenHelper(Context context, String name, CursorFactory factory) { 55 | super(context, name, factory, SCHEMA_VERSION); 56 | } 57 | 58 | @Override 59 | public void onCreate(Database db) { 60 | Log.i("greenDAO", "Creating tables for schema version " + SCHEMA_VERSION); 61 | createAllTables(db, false); 62 | } 63 | } 64 | 65 | /** WARNING: Drops all table on Upgrade! Use only during development. */ 66 | public static class DevOpenHelper extends OpenHelper { 67 | public DevOpenHelper(Context context, String name) { 68 | super(context, name); 69 | } 70 | 71 | @Override 72 | public void onUpgrade(Database db, int oldVersion, int newVersion) { 73 | Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by dropping all tables"); 74 | dropAllTables(db, true); 75 | onCreate(db); 76 | } 77 | } 78 | 79 | public static abstract class EncryptedOpenHelper extends EncryptedDatabaseOpenHelper { 80 | public EncryptedOpenHelper(Context context, String name) { 81 | super(context, name, SCHEMA_VERSION); 82 | } 83 | 84 | public EncryptedOpenHelper(Context context, String name, Object cursorFactory, boolean loadNativeLibs) { 85 | super(context, name, cursorFactory, SCHEMA_VERSION, loadNativeLibs); 86 | } 87 | 88 | @Override 89 | public void onCreate(Database db) { 90 | Log.i("greenDAO", "Creating tables for schema version " + SCHEMA_VERSION); 91 | createAllTables(db, false); 92 | } 93 | } 94 | 95 | /** WARNING: Drops all table on Upgrade! Use only during development. */ 96 | public static class EncryptedDevOpenHelper extends EncryptedOpenHelper { 97 | public EncryptedDevOpenHelper(Context context, String name) { 98 | super(context, name); 99 | } 100 | 101 | public EncryptedDevOpenHelper(Context context, String name, Object cursorFactory, boolean loadNativeLibs) { 102 | super(context, name, cursorFactory, loadNativeLibs); 103 | } 104 | 105 | @Override 106 | public void onUpgrade(Database db, int oldVersion, int newVersion) { 107 | Log.i("greenDAO", "Upgrading schema from version " + oldVersion + " to " + newVersion + " by dropping all tables"); 108 | dropAllTables(db, true); 109 | onCreate(db); 110 | } 111 | } 112 | 113 | public DaoMaster(SQLiteDatabase db) { 114 | this(new StandardDatabase(db)); 115 | } 116 | 117 | public DaoMaster(Database db) { 118 | super(db, SCHEMA_VERSION); 119 | registerDaoClass(SecretDao.class); 120 | } 121 | 122 | public DaoSession newSession() { 123 | return new DaoSession(db, IdentityScopeType.Session, daoConfigMap); 124 | } 125 | 126 | public DaoSession newSession(IdentityScopeType type) { 127 | return new DaoSession(db, type, daoConfigMap); 128 | } 129 | 130 | } 131 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/gen/DaoSession.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.gen; 18 | 19 | import java.util.Map; 20 | 21 | import de.greenrobot.dao.AbstractDao; 22 | import de.greenrobot.dao.AbstractDaoSession; 23 | import de.greenrobot.dao.database.Database; 24 | import de.greenrobot.dao.identityscope.IdentityScopeType; 25 | import de.greenrobot.dao.internal.DaoConfig; 26 | 27 | import me.egorand.mysecrets.data.gen.Secret; 28 | 29 | import me.egorand.mysecrets.data.gen.SecretDao; 30 | 31 | // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. 32 | 33 | /** 34 | * {@inheritDoc} 35 | * 36 | * @see de.greenrobot.dao.AbstractDaoSession 37 | */ 38 | public class DaoSession extends AbstractDaoSession { 39 | 40 | private final DaoConfig secretDaoConfig; 41 | 42 | private final SecretDao secretDao; 43 | 44 | public DaoSession(Database db, IdentityScopeType type, Map>, DaoConfig> 45 | daoConfigMap) { 46 | super(db); 47 | 48 | secretDaoConfig = daoConfigMap.get(SecretDao.class).clone(); 49 | secretDaoConfig.initIdentityScope(type); 50 | 51 | secretDao = new SecretDao(secretDaoConfig, this); 52 | 53 | registerDao(Secret.class, secretDao); 54 | } 55 | 56 | public void clear() { 57 | secretDaoConfig.getIdentityScope().clear(); 58 | } 59 | 60 | public SecretDao getSecretDao() { 61 | return secretDao; 62 | } 63 | 64 | } 65 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/gen/Secret.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.gen; 18 | 19 | // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. Enable "keep" sections if you want to edit. 20 | /** 21 | * Entity mapped to table "SECRET". 22 | */ 23 | public class Secret { 24 | 25 | private Long id; 26 | /** Not-null value. */ 27 | private String text; 28 | /** Not-null value. */ 29 | private java.util.Date addedDate; 30 | 31 | public Secret() { 32 | } 33 | 34 | public Secret(Long id) { 35 | this.id = id; 36 | } 37 | 38 | public Secret(Long id, String text, java.util.Date addedDate) { 39 | this.id = id; 40 | this.text = text; 41 | this.addedDate = addedDate; 42 | } 43 | 44 | public Long getId() { 45 | return id; 46 | } 47 | 48 | public void setId(Long id) { 49 | this.id = id; 50 | } 51 | 52 | /** Not-null value. */ 53 | public String getText() { 54 | return text; 55 | } 56 | 57 | /** Not-null value; ensure this value is available before it is saved to the database. */ 58 | public void setText(String text) { 59 | this.text = text; 60 | } 61 | 62 | /** Not-null value. */ 63 | public java.util.Date getAddedDate() { 64 | return addedDate; 65 | } 66 | 67 | /** Not-null value; ensure this value is available before it is saved to the database. */ 68 | public void setAddedDate(java.util.Date addedDate) { 69 | this.addedDate = addedDate; 70 | } 71 | 72 | } 73 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/gen/SecretDao.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.gen; 18 | 19 | import android.database.Cursor; 20 | 21 | import de.greenrobot.dao.AbstractDao; 22 | import de.greenrobot.dao.Property; 23 | import de.greenrobot.dao.internal.DaoConfig; 24 | import de.greenrobot.dao.database.Database; 25 | import de.greenrobot.dao.database.DatabaseStatement; 26 | 27 | import me.egorand.mysecrets.data.gen.Secret; 28 | 29 | // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. 30 | /** 31 | * DAO for table "SECRET". 32 | */ 33 | public class SecretDao extends AbstractDao { 34 | 35 | public static final String TABLENAME = "SECRET"; 36 | 37 | /** 38 | * Properties of entity Secret.
39 | * Can be used for QueryBuilder and for referencing column names. 40 | */ 41 | public static class Properties { 42 | public final static Property Id = new Property(0, Long.class, "id", true, "_id"); 43 | public final static Property Text = new Property(1, String.class, "text", false, "TEXT"); 44 | public final static Property AddedDate = new Property(2, java.util.Date.class, "addedDate", false, "ADDED_DATE"); 45 | }; 46 | 47 | 48 | public SecretDao(DaoConfig config) { 49 | super(config); 50 | } 51 | 52 | public SecretDao(DaoConfig config, DaoSession daoSession) { 53 | super(config, daoSession); 54 | } 55 | 56 | /** Creates the underlying database table. */ 57 | public static void createTable(Database db, boolean ifNotExists) { 58 | String constraint = ifNotExists? "IF NOT EXISTS ": ""; 59 | db.execSQL("CREATE TABLE " + constraint + "\"SECRET\" (" + // 60 | "\"_id\" INTEGER PRIMARY KEY ," + // 0: id 61 | "\"TEXT\" TEXT NOT NULL ," + // 1: text 62 | "\"ADDED_DATE\" INTEGER NOT NULL );"); // 2: addedDate 63 | } 64 | 65 | /** Drops the underlying database table. */ 66 | public static void dropTable(Database db, boolean ifExists) { 67 | String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"SECRET\""; 68 | db.execSQL(sql); 69 | } 70 | 71 | /** @inheritdoc */ 72 | @Override 73 | protected void bindValues(DatabaseStatement stmt, Secret entity) { 74 | stmt.clearBindings(); 75 | 76 | Long id = entity.getId(); 77 | if (id != null) { 78 | stmt.bindLong(1, id); 79 | } 80 | stmt.bindString(2, entity.getText()); 81 | stmt.bindLong(3, entity.getAddedDate().getTime()); 82 | } 83 | 84 | /** @inheritdoc */ 85 | @Override 86 | public Long readKey(Cursor cursor, int offset) { 87 | return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); 88 | } 89 | 90 | /** @inheritdoc */ 91 | @Override 92 | public Secret readEntity(Cursor cursor, int offset) { 93 | Secret entity = new Secret( // 94 | cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id 95 | cursor.getString(offset + 1), // text 96 | new java.util.Date(cursor.getLong(offset + 2)) // addedDate 97 | ); 98 | return entity; 99 | } 100 | 101 | /** @inheritdoc */ 102 | @Override 103 | public void readEntity(Cursor cursor, Secret entity, int offset) { 104 | entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); 105 | entity.setText(cursor.getString(offset + 1)); 106 | entity.setAddedDate(new java.util.Date(cursor.getLong(offset + 2))); 107 | } 108 | 109 | /** @inheritdoc */ 110 | @Override 111 | protected Long updateKeyAfterInsert(Secret entity, long rowId) { 112 | entity.setId(rowId); 113 | return rowId; 114 | } 115 | 116 | /** @inheritdoc */ 117 | @Override 118 | public Long getKey(Secret entity) { 119 | if(entity != null) { 120 | return entity.getId(); 121 | } else { 122 | return null; 123 | } 124 | } 125 | 126 | /** @inheritdoc */ 127 | @Override 128 | protected boolean isEntityUpdateable() { 129 | return true; 130 | } 131 | 132 | } 133 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/data/loaders/SecretsLoader.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.data.loaders; 18 | 19 | import android.content.Context; 20 | import android.support.v4.content.AsyncTaskLoader; 21 | 22 | import java.util.List; 23 | 24 | import javax.inject.Inject; 25 | 26 | import me.egorand.mysecrets.data.db.SecretsRepository; 27 | import me.egorand.mysecrets.data.gen.Secret; 28 | 29 | /** 30 | * @author Egor 31 | */ 32 | public class SecretsLoader extends AsyncTaskLoader> { 33 | 34 | private final SecretsRepository secretsRepository; 35 | 36 | private List cachedSecrets; 37 | 38 | @Inject public SecretsLoader(Context context, SecretsRepository secretsRepository) { 39 | super(context); 40 | this.secretsRepository = secretsRepository; 41 | } 42 | 43 | @Override protected void onStartLoading() { 44 | if (cachedSecrets != null) { 45 | deliverResult(cachedSecrets); 46 | } else { 47 | forceLoad(); 48 | } 49 | } 50 | 51 | @Override public List loadInBackground() { 52 | return secretsRepository.loadAllSecrets(); 53 | } 54 | 55 | @Override public void deliverResult(List data) { 56 | cachedSecrets = data; 57 | super.deliverResult(data); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/di/components/AppComponent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.di.components; 18 | 19 | import android.content.Context; 20 | 21 | import javax.inject.Singleton; 22 | 23 | import dagger.Component; 24 | import me.egorand.mysecrets.data.db.SecretsDatabaseKeyHolder; 25 | import me.egorand.mysecrets.data.db.SecretsRepository; 26 | import me.egorand.mysecrets.data.loaders.SecretsLoader; 27 | import me.egorand.mysecrets.di.modules.AppModule; 28 | import me.egorand.mysecrets.ui.activities.SecretsActivity; 29 | 30 | /** 31 | * @author Egor 32 | */ 33 | @Singleton 34 | @Component(modules = AppModule.class) 35 | public interface AppComponent { 36 | 37 | void inject(SecretsActivity activity); 38 | 39 | Context appContext(); 40 | 41 | @Singleton SecretsDatabaseKeyHolder secretsDatabaseKeyHolder(); 42 | 43 | @Singleton SecretsRepository secretsRepository(); 44 | 45 | SecretsLoader secretsLoader(); 46 | } 47 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/di/modules/AppModule.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.di.modules; 18 | 19 | import android.content.Context; 20 | import android.support.annotation.NonNull; 21 | 22 | import javax.inject.Singleton; 23 | 24 | import dagger.Module; 25 | import dagger.Provides; 26 | import de.greenrobot.dao.database.Database; 27 | import me.egorand.mysecrets.data.db.SecretsDatabaseKeyHolder; 28 | import me.egorand.mysecrets.data.db.SecretsRepository; 29 | import me.egorand.mysecrets.data.gen.DaoMaster; 30 | import me.egorand.mysecrets.data.gen.DaoMaster.EncryptedDevOpenHelper; 31 | 32 | /** 33 | * @author Egor 34 | */ 35 | @Module 36 | public class AppModule { 37 | 38 | private final Context context; 39 | 40 | public AppModule(@NonNull Context context) { 41 | this.context = context.getApplicationContext(); 42 | } 43 | 44 | @Provides public Context provideContext() { 45 | return context; 46 | } 47 | 48 | @Provides @Singleton public SecretsDatabaseKeyHolder provideSecretsDatabaseKeyHolder(Context context) { 49 | return new SecretsDatabaseKeyHolder(context); 50 | } 51 | 52 | @Provides @Singleton public SecretsRepository provideSecretsRepository(SecretsDatabaseKeyHolder 53 | secretsDatabaseKeyHolder) { 54 | EncryptedDevOpenHelper helper = new EncryptedDevOpenHelper(context, "secrets.db"); 55 | Database database = helper.getWritableDatabase(secretsDatabaseKeyHolder.getKey()); 56 | DaoMaster daoMaster = new DaoMaster(database); 57 | return new SecretsRepository(daoMaster.newSession()); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/ui/activities/SecretsActivity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.ui.activities; 18 | 19 | import android.databinding.DataBindingUtil; 20 | import android.os.Bundle; 21 | import android.support.v4.app.LoaderManager; 22 | import android.support.v4.content.Loader; 23 | import android.support.v7.app.AppCompatActivity; 24 | import android.support.v7.widget.RecyclerView; 25 | import android.util.Log; 26 | import android.view.View; 27 | 28 | import java.util.Collections; 29 | import java.util.List; 30 | 31 | import javax.inject.Inject; 32 | 33 | import me.egorand.mysecrets.MySecretsApp; 34 | import me.egorand.mysecrets.R; 35 | import me.egorand.mysecrets.data.db.SecretsRepository; 36 | import me.egorand.mysecrets.data.gen.Secret; 37 | import me.egorand.mysecrets.databinding.ActivitySecretsBinding; 38 | import me.egorand.mysecrets.ui.adapters.SecretsAdapter; 39 | import me.egorand.mysecrets.ui.dialogs.NewSecretDialogFragment; 40 | 41 | public class SecretsActivity extends AppCompatActivity implements LoaderManager.LoaderCallbacks>, 42 | NewSecretDialogFragment.OnKeepNewSecretListener { 43 | 44 | private static final String LOG_TAG = "SecretsActivity"; 45 | 46 | private static final String NEW_SECRET_DIALOG_TAG = "new_secret_dialog"; 47 | 48 | private static final int LOADER_SECRETS = 0x01; 49 | 50 | @Inject SecretsRepository secretsRepository; 51 | 52 | private SecretsAdapter secretsAdapter; 53 | 54 | @Override protected void onCreate(Bundle savedInstanceState) { 55 | super.onCreate(savedInstanceState); 56 | ((MySecretsApp) getApplication()).appComponent().inject(this); 57 | 58 | ActivitySecretsBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_secrets); 59 | initToolbar(binding); 60 | initFab(binding); 61 | initSecretsList(binding); 62 | 63 | getSupportLoaderManager().initLoader(LOADER_SECRETS, null, this); 64 | } 65 | 66 | private void initToolbar(ActivitySecretsBinding binding) { 67 | setSupportActionBar(binding.toolbar); 68 | } 69 | 70 | private void initFab(ActivitySecretsBinding binding) { 71 | binding.fab.setOnClickListener(new View.OnClickListener() { 72 | @Override 73 | public void onClick(View view) { 74 | NewSecretDialogFragment fragment = new NewSecretDialogFragment(); 75 | fragment.show(getSupportFragmentManager(), NEW_SECRET_DIALOG_TAG); 76 | } 77 | }); 78 | } 79 | 80 | private void initSecretsList(ActivitySecretsBinding binding) { 81 | RecyclerView secretsList = (RecyclerView) binding.content.findViewById(R.id.secrets_list); 82 | this.secretsAdapter = new SecretsAdapter(); 83 | secretsList.setAdapter(secretsAdapter); 84 | } 85 | 86 | @Override public void onKeepNewSecret(String secretText) { 87 | secretsRepository.storeSecret(secretText); 88 | getSupportLoaderManager().restartLoader(LOADER_SECRETS, null, this); 89 | } 90 | 91 | @Override public Loader> onCreateLoader(int id, Bundle args) { 92 | return ((MySecretsApp) getApplication()).appComponent().secretsLoader(); 93 | } 94 | 95 | @Override public void onLoadFinished(Loader> loader, List data) { 96 | Log.d(LOG_TAG, "Loaded " + data.size() + " secrets from DB"); 97 | secretsAdapter.setSecrets(data); 98 | } 99 | 100 | @Override public void onLoaderReset(Loader> loader) { 101 | secretsAdapter.setSecrets(Collections.emptyList()); 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/ui/adapters/SecretsAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.ui.adapters; 18 | 19 | import android.databinding.DataBindingUtil; 20 | import android.databinding.ViewDataBinding; 21 | import android.support.v7.widget.RecyclerView; 22 | import android.view.LayoutInflater; 23 | import android.view.View; 24 | import android.view.ViewGroup; 25 | 26 | import java.util.ArrayList; 27 | import java.util.List; 28 | 29 | import me.egorand.mysecrets.BR; 30 | import me.egorand.mysecrets.R; 31 | import me.egorand.mysecrets.data.gen.Secret; 32 | 33 | /** 34 | * @author Egor 35 | */ 36 | public class SecretsAdapter extends RecyclerView.Adapter { 37 | 38 | private final List secrets; 39 | 40 | public SecretsAdapter() { 41 | this.secrets = new ArrayList<>(); 42 | } 43 | 44 | public void setSecrets(List secrets) { 45 | int oldSize = this.secrets.size(); 46 | this.secrets.clear(); 47 | notifyItemRangeRemoved(0, oldSize); 48 | this.secrets.addAll(secrets); 49 | notifyItemRangeInserted(0, secrets.size()); 50 | } 51 | 52 | @Override public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { 53 | LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext()); 54 | return new ViewHolder(layoutInflater.inflate(R.layout.row_secret, parent, false)); 55 | } 56 | 57 | @Override public void onBindViewHolder(ViewHolder holder, int position) { 58 | Secret secret = secrets.get(position); 59 | holder.binding.setVariable(BR.secret, secret); 60 | holder.binding.executePendingBindings(); 61 | } 62 | 63 | @Override public int getItemCount() { 64 | return secrets.size(); 65 | } 66 | 67 | static class ViewHolder extends RecyclerView.ViewHolder { 68 | 69 | final ViewDataBinding binding; 70 | 71 | public ViewHolder(View itemView) { 72 | super(itemView); 73 | binding = DataBindingUtil.bind(itemView); 74 | } 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /app/src/main/java/me/egorand/mysecrets/ui/dialogs/NewSecretDialogFragment.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Egor Andreevici 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package me.egorand.mysecrets.ui.dialogs; 18 | 19 | import android.app.Activity; 20 | import android.app.Dialog; 21 | import android.content.DialogInterface; 22 | import android.os.Bundle; 23 | import android.support.annotation.NonNull; 24 | import android.support.v4.app.DialogFragment; 25 | import android.support.v7.app.AlertDialog; 26 | import android.util.Log; 27 | import android.view.LayoutInflater; 28 | import android.view.View; 29 | import android.widget.EditText; 30 | 31 | import me.egorand.mysecrets.R; 32 | 33 | /** 34 | * @author Egor 35 | */ 36 | public class NewSecretDialogFragment extends DialogFragment { 37 | 38 | private static final String LOG_TAG = "NewSecretDialogFragment"; 39 | 40 | private OnKeepNewSecretListener listener; 41 | 42 | @Override public void onAttach(Activity activity) { 43 | super.onAttach(activity); 44 | try { 45 | listener = (OnKeepNewSecretListener) getActivity(); 46 | } catch (ClassCastException e) { 47 | Log.e(LOG_TAG, activity + "must implement OnKeepNewSecretListener!"); 48 | } 49 | } 50 | 51 | @NonNull @Override public Dialog onCreateDialog(Bundle savedInstanceState) { 52 | AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); 53 | builder.setTitle(R.string.new_secret_dialog_title); 54 | LayoutInflater layoutInflater = LayoutInflater.from(getActivity()); 55 | View view = layoutInflater.inflate(R.layout.view_new_secret_dialog, null); 56 | final EditText input = (EditText) view.findViewById(R.id.input); 57 | builder.setView(view); 58 | builder.setPositiveButton(R.string.new_secret_dialog_button_ok, new DialogInterface.OnClickListener() { 59 | @Override public void onClick(DialogInterface dialog, int which) { 60 | listener.onKeepNewSecret(input.getText().toString()); 61 | } 62 | }); 63 | builder.setNegativeButton(android.R.string.cancel, null); 64 | return builder.create(); 65 | } 66 | 67 | public interface OnKeepNewSecretListener { 68 | 69 | void onKeepNewSecret(String secretText); 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 22 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_secrets.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 30 | 31 | 35 | 36 | 42 | 43 | 44 | 45 | 48 | 49 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /app/src/main/res/layout/content_secrets.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 27 | 28 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/res/layout/row_secret.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 21 | 22 | 23 | 24 | 27 | 28 | 29 | 34 | 35 | 43 | 44 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /app/src/main/res/layout/view_new_secret_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | 24 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egorand/android-greendao-database-encryption/1bbf39b4a71ed8d81e78c3f4f094ba0ee6524d86/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egorand/android-greendao-database-encryption/1bbf39b4a71ed8d81e78c3f4f094ba0ee6524d86/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egorand/android-greendao-database-encryption/1bbf39b4a71ed8d81e78c3f4f094ba0ee6524d86/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egorand/android-greendao-database-encryption/1bbf39b4a71ed8d81e78c3f4f094ba0ee6524d86/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egorand/android-greendao-database-encryption/1bbf39b4a71ed8d81e78c3f4f094ba0ee6524d86/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | #3F51B5 20 | #303F9F 21 | #FF4081 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 4dp 20 | 8dp 21 | 16dp 22 | 23 | 16dp 24 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | My Secrets 19 | Settings 20 | Added on %s 21 | What\'s your secret? 22 | Keep 23 | Type here 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | 26 | 27 | 31 | 32 |