]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/Globals.java
ecbffda495c819d44c2edfed501de486dac8e2e3
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / Globals.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.utils;
19
20 import android.app.Activity;
21 import android.content.Context;
22 import android.support.annotation.ColorInt;
23 import android.view.View;
24 import android.view.inputmethod.InputMethodManager;
25
26 import java.text.ParseException;
27 import java.text.SimpleDateFormat;
28 import java.util.Calendar;
29 import java.util.Date;
30 import java.util.Locale;
31 import java.util.regex.Matcher;
32 import java.util.regex.Pattern;
33
34 public final class Globals {
35     @ColorInt
36     public static int tableRowLightBG;
37     @ColorInt
38     public static int tableRowDarkBG;
39     @ColorInt
40     public static int primaryDark, defaultTextColor;
41     public static String[] monthNames;
42     private static SimpleDateFormat ledgerDateFormatter =
43             new SimpleDateFormat("yyyy/MM/dd", Locale.US);
44     private static Pattern reLedgerDate =
45             Pattern.compile("^(?:(\\d+)/)??(?:(\\d\\d?)/)?(\\d\\d?)$");
46     public static void hideSoftKeyboard(Activity act) {
47         // hide the keyboard
48         View v = act.getCurrentFocus();
49         if (v != null) {
50             InputMethodManager imm =
51                     (InputMethodManager) act.getSystemService(Context.INPUT_METHOD_SERVICE);
52             imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
53         }
54     }
55     public static Date parseLedgerDate(String dateString) throws ParseException {
56         Matcher m = reLedgerDate.matcher(dateString);
57         if (!m.matches()) throw new ParseException(dateString, 0);
58
59         String year = m.group(1);
60         String month = m.group(2);
61         String day = m.group(3);
62
63         String toParse;
64         if (year == null) {
65             Calendar now = Calendar.getInstance();
66             int thisYear = now.get(Calendar.YEAR);
67             if (month == null) {
68                 int thisMonth = now.get(Calendar.MONTH) + 1;
69                 toParse = String.format(Locale.US, "%04d/%02d/%s", thisYear, thisMonth, dateString);
70             }
71             else toParse = String.format(Locale.US, "%04d/%s", thisYear, dateString);
72         }
73         else toParse = dateString;
74
75 //        Log.d("globals", String.format("Parsing date '%s'", toParse));
76         return ledgerDateFormatter.parse(toParse);
77     }
78     public static String formatLedgerDate(Date date) {
79         return ledgerDateFormatter.format(date);
80     }
81 }