From 81ff51148575b9ad4bc16ebf18afa5819174c7e6 Mon Sep 17 00:00:00 2001 From: maks Date: Wed, 26 Oct 2022 12:54:16 +0200 Subject: Initial commit, w/ v1.0.0 --- .gitignore | 15 ++ .idea/.gitignore | 3 + .idea/.name | 1 + .idea/compiler.xml | 6 + .idea/gradle.xml | 19 ++ .idea/misc.xml | 10 + .idea/vcs.xml | 6 + app/.gitignore | 1 + app/build.gradle | 39 ++++ app/proguard-rules.pro | 21 +++ .../ExampleInstrumentedTest.java | 26 +++ app/src/main/AndroidManifest.xml | 32 ++++ .../applicationdevrification/MainActivity.java | 208 +++++++++++++++++++++ .../jopek/applicationdevrification/Requests.java | 105 +++++++++++ .../res/drawable-v24/ic_launcher_foreground.xml | 30 +++ .../main/res/drawable/ic_launcher_background.xml | 170 +++++++++++++++++ app/src/main/res/layout/activity_main.xml | 45 +++++ app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 5 + app/src/main/res/mipmap-hdpi/ic_launcher.webp | Bin 0 -> 1404 bytes .../main/res/mipmap-hdpi/ic_launcher_round.webp | Bin 0 -> 2898 bytes app/src/main/res/mipmap-mdpi/ic_launcher.webp | Bin 0 -> 982 bytes .../main/res/mipmap-mdpi/ic_launcher_round.webp | Bin 0 -> 1772 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.webp | Bin 0 -> 1900 bytes .../main/res/mipmap-xhdpi/ic_launcher_round.webp | Bin 0 -> 3918 bytes app/src/main/res/mipmap-xxhdpi/ic_launcher.webp | Bin 0 -> 2884 bytes .../main/res/mipmap-xxhdpi/ic_launcher_round.webp | Bin 0 -> 5914 bytes app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp | Bin 0 -> 3844 bytes .../main/res/mipmap-xxxhdpi/ic_launcher_round.webp | Bin 0 -> 7778 bytes app/src/main/res/values-night/themes.xml | 16 ++ app/src/main/res/values/colors.xml | 12 ++ app/src/main/res/values/spinner_values.xml | 14 ++ app/src/main/res/values/strings.xml | 3 + app/src/main/res/values/themes.xml | 16 ++ app/src/main/res/xml/backup_rules.xml | 13 ++ app/src/main/res/xml/data_extraction_rules.xml | 19 ++ .../applicationdevrification/ExampleUnitTest.java | 17 ++ build.gradle | 5 + gradle.properties | 21 +++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 59203 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 185 ++++++++++++++++++ gradlew.bat | 89 +++++++++ settings.gradle | 16 ++ 44 files changed, 1179 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/com/jopek/applicationdevrification/MainActivity.java create mode 100644 app/src/main/java/com/jopek/applicationdevrification/Requests.java create mode 100644 app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.webp create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.webp create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.webp create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.webp create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.webp create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.webp create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp create mode 100644 app/src/main/res/values-night/themes.xml create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/spinner_values.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/themes.xml create mode 100644 app/src/main/res/xml/backup_rules.xml create mode 100644 app/src/main/res/xml/data_extraction_rules.xml create mode 100644 app/src/test/java/com/jopek/applicationdevrification/ExampleUnitTest.java create mode 100644 build.gradle 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 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..3eaa0d4 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +application de vérification \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..fb7f4a8 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..a2d7c21 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..bdd9278 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..a07c03a --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,39 @@ +plugins { + id 'com.android.application' +} + +android { + namespace 'com.jopek.applicationdevrification' + compileSdk 32 + + defaultConfig { + applicationId "com.jopek.applicationdevrification" + minSdk 28 + targetSdk 32 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'com.google.android.material:material:1.6.1' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java new file mode 100644 index 0000000..e8f3e38 --- /dev/null +++ b/app/src/androidTest/java/com/jopek/applicationdevrification/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.jopek.applicationdevrification; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.jopek.applicationdevrification", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..d869655 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/jopek/applicationdevrification/MainActivity.java b/app/src/main/java/com/jopek/applicationdevrification/MainActivity.java new file mode 100644 index 0000000..e9c9603 --- /dev/null +++ b/app/src/main/java/com/jopek/applicationdevrification/MainActivity.java @@ -0,0 +1,208 @@ +package com.jopek.applicationdevrification; + +import static android.widget.ArrayAdapter.createFromResource; + +import android.content.Context; +import android.graphics.Color; +import android.os.Bundle; +import android.text.InputFilter; +import android.text.InputType; +import android.util.Log; +import android.view.View; +import android.view.inputmethod.InputMethodManager; +import android.widget.AdapterView; +import android.widget.ArrayAdapter; +import android.widget.Button; +import android.widget.EditText; +import android.widget.Spinner; +import android.widget.TextView; + +import androidx.appcompat.app.AppCompatActivity; + +import java.util.regex.Pattern; + +enum CodeOption { + zipCode, + address, + phone, + email, + pesel, + idcard, + nameNSurname, + password, + censorship, +} + +public class MainActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener { + ArrayAdapter adapter; + EditText input; + TextView output; + CodeOption selOption; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + Spinner spinner = findViewById(R.id.spinner); + adapter = createFromResource(this, R.array.codes_array, android.R.layout.simple_spinner_item); + adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); + spinner.setAdapter(adapter); + spinner.setOnItemSelectedListener(this); + + Button btn = findViewById(R.id.btnValidate); + btn.setOnClickListener(v -> validate()); + + input = findViewById(R.id.txtInput); + + output = findViewById(R.id.txtOutput); + } + + private void validate() { + String in = input.getText().toString(); + String gender = ""; + boolean result = false; + + if (in.length() == 0) { + result = false; + } else if (selOption == CodeOption.zipCode) { + Requests requests = new Requests(); + requests.get("https://jopek.eu/maks/get-city?code=" + in, txt -> { + validateResult(txt.length() != 0, ""); + }); + return; + } else if (selOption == CodeOption.address) { + Pattern p = Pattern.compile("^([a-ząśćżźńłęó]+ )+\\d+[a-z]?$", Pattern.CASE_INSENSITIVE); + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.phone) { + Pattern p; + if (in.charAt(0) == '+') { + p = Pattern.compile("\\+(\\d\\d?\\d?)\\d{9}", Pattern.CASE_INSENSITIVE); + } else { + p = Pattern.compile("\\d{7}(\\d{2})?", Pattern.CASE_INSENSITIVE); + } + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.email) { + Pattern p = Pattern.compile("^[a-zA-Z][\\w.]+[\\w]@[a-z]{2,}\\.[a-z]{2,}$"); + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.pesel) { + int lastDigit = Integer.parseInt(in.substring(10, 11)); + int a = Integer.parseInt(in.substring(0, 1)); + int b = Integer.parseInt(in.substring(1, 2)); + int c = Integer.parseInt(in.substring(2, 3)); + int d = Integer.parseInt(in.substring(3, 4)); + int e = Integer.parseInt(in.substring(4, 5)); + int f = Integer.parseInt(in.substring(5, 6)); + int g = Integer.parseInt(in.substring(6, 7)); + int h = Integer.parseInt(in.substring(7, 8)); + int i = Integer.parseInt(in.substring(8, 9)); + int j = Integer.parseInt(in.substring(9, 10)); + int sum = 9 * a + 7 * b + 3 * c + 1 * d + 9 * e + 7 * f + 3 * g + 1 * h + 9 * i + 7 * j; + result = sum % 10 == lastDigit; + if (result) { + int plec = Integer.parseInt(in.substring(9, 10)); + if (plec % 2 == 0 || plec == 0) { + gender = "K"; + } else { + gender = "M"; + } + } + } else if (selOption == CodeOption.idcard) { + Pattern p = Pattern.compile(".*\\d.*"); + result = p.matcher(in).matches(); + if (result) { + p = Pattern.compile("^[a-z][a-z\\d]+$", Pattern.CASE_INSENSITIVE); + result = p.matcher(in).matches(); + } + } else if (selOption == CodeOption.nameNSurname) { + Pattern p = Pattern.compile("^[a-z]+ [a-z]+(-[a-z]+)?$", Pattern.CASE_INSENSITIVE); + result = p.matcher(in).matches(); + } else if (selOption == CodeOption.password) { + result = in.matches(".*[A-Z].*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".*[a-z].*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".*([^\\w\\s]|_).*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".*\\d.*"); + Log.d("maks", "validate: " + result); + result = result && in.matches(".{7,}"); + Log.d("maks", "validate: " + result); + } else if (selOption == CodeOption.censorship) { + String[] illegal = new String[]{"wtf", "rabarbar", "kobieta", "bezalkoholowe", "kamienskiego"}; + result = true; + for (String ill : illegal) { + result = result && !in.matches(".*" + ill + ".*"); + } + } + + validateResult(result, gender); + } + + private void validateResult(boolean win, String gender) { + View view = this.getCurrentFocus(); + if (view != null) { + InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(view.getWindowToken(), 0); + } + + if (win) { + output.setTextColor(Color.rgb(0, 255, 0)); + if (gender.length() == 0) + output.setText("CORRECT"); + else + output.setText("CORRECT (" + gender + ")"); + } else { + output.setTextColor(Color.rgb(255, 0, 0)); + output.setText("WRONG"); + } + } + + @Override + public void onItemSelected(AdapterView parent, View view, int position, long id) { + CharSequence selectedOption = adapter.getItem(position); + if ("zip-code".contentEquals(selectedOption)) { + selOption = CodeOption.zipCode; + } else if ("address".contentEquals(selectedOption)) { + selOption = CodeOption.address// input.setMinLines(1); +// input.setLines(2); +// input.setMaxLines(10); +; + } else if ("phone".contentEquals(selectedOption)) { + selOption = CodeOption.phone; + } else if ("email".contentEquals(selectedOption)) { + selOption = CodeOption.email; + } else if ("pesel".contentEquals(selectedOption)) { + selOption = CodeOption.pesel; + } else if ("idcard".contentEquals(selectedOption)) { + selOption = CodeOption.idcard; + } else if ("name&surname".contentEquals(selectedOption)) { + selOption = CodeOption.nameNSurname; + } else if ("password".contentEquals(selectedOption)) { + selOption = CodeOption.password; + } else if ("censorship".contentEquals(selectedOption)) { + selOption = CodeOption.censorship; + } + + input.setFilters(new InputFilter[]{}); + input.setInputType(InputType.TYPE_CLASS_TEXT); + input.setSingleLine(true); + if (selOption == CodeOption.zipCode) { + input.setFilters(new InputFilter[]{new InputFilter.LengthFilter(5)}); + input.setInputType(InputType.TYPE_CLASS_NUMBER); + } else if (selOption == CodeOption.phone) { + input.setInputType(InputType.TYPE_CLASS_PHONE); + } else if (selOption == CodeOption.pesel) { + input.setFilters(new InputFilter[]{new InputFilter.LengthFilter(11)}); + input.setInputType(InputType.TYPE_CLASS_NUMBER); + } else if (selOption == CodeOption.password || selOption == CodeOption.censorship) { + input.setInputType(InputType.TYPE_TEXT_FLAG_MULTI_LINE); + input.setSingleLine(false); + } + } + + @Override + public void onNothingSelected(AdapterView parent) { + + } +} \ No newline at end of file diff --git a/app/src/main/java/com/jopek/applicationdevrification/Requests.java b/app/src/main/java/com/jopek/applicationdevrification/Requests.java new file mode 100644 index 0000000..3f494b6 --- /dev/null +++ b/app/src/main/java/com/jopek/applicationdevrification/Requests.java @@ -0,0 +1,105 @@ +package com.jopek.applicationdevrification; + +import android.os.AsyncTask; + +import org.json.JSONException; +import org.json.JSONObject; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.net.URL; +import java.util.function.Consumer; + +//class RequestImage extends AsyncTask { +// ImageView bmImage; +// Consumer cb; +// +// public void setRemoteSrc(ImageView bmImage, String url) { +// this.bmImage = bmImage; +// this.execute(url); +// } +// +// public void getBitmap(String url, Consumer cb) { +// this.cb = cb; +// this.execute(url); +// } +// +// protected Bitmap doInBackground(String... urls) { +// String urldisplay = urls[0]; +// Bitmap bmp = null; +// try { +// InputStream in = new URL(urldisplay).openStream(); +// bmp = BitmapFactory.decodeStream(in); +// } catch (Exception e) { +// e.printStackTrace(); +// } +// return bmp; +// } +// +// protected void onPostExecute(Bitmap result) { +// if (cb == null) +// bmImage.setImageBitmap(result); +// else cb.accept(result); +// } +//} + +public class Requests extends AsyncTask { + Consumer cb; + Consumer cbJson; + boolean retJson = false; + + public void get(String url, Consumer cb) { + this.cb = cb; + this.execute(url); + } + + public void getJson(String url, Consumer cb) { + this.cbJson = cb; + this.retJson = true; + this.execute(url); + } + + protected String doInBackground(String... urls) { + InputStream in = null; + try { + URL url = new URL(urls[0]); + in = url.openStream(); + BufferedReader rd = new BufferedReader(new InputStreamReader(in)); + String content = "", line; + while ((line = rd.readLine()) != null) { + content += line + "\n"; + } + in.close(); + return content; + } catch (IOException exception) { + if (in != null) { + try { + in.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + exception.printStackTrace(); + return "ERROR"; + } + } + + protected void onProgressUpdate(Integer... progress) { + } + + protected void onPostExecute(String result) { + // this is executed on the main thread after the process is over + // update your UI here + if (retJson) { + try { + cbJson.accept(new JSONObject(result)); + } catch (JSONException e) { + e.printStackTrace(); + } + } else { + cb.accept(result); + } + } +} diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..0d2776a --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,45 @@ + + + + + + +