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.
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.
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/>.
18 package net.ktnx.mobileledger.model;
20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
23 import net.ktnx.mobileledger.utils.Digest;
24 import net.ktnx.mobileledger.utils.Globals;
26 import java.nio.charset.Charset;
27 import java.security.NoSuchAlgorithmException;
28 import java.text.ParseException;
29 import java.util.ArrayList;
30 import java.util.Comparator;
31 import java.util.Date;
33 public class LedgerTransaction {
34 private static final String DIGEST_TYPE = "SHA-256";
35 public final Comparator<LedgerTransactionAccount> comparator =
36 new Comparator<LedgerTransactionAccount>() {
38 public int compare(LedgerTransactionAccount o1, LedgerTransactionAccount o2) {
39 int res = o1.getAccountName()
40 .compareTo(o2.getAccountName());
43 res = o1.getCurrency()
44 .compareTo(o2.getCurrency());
47 return Float.compare(o1.getAmount(), o2.getAmount());
50 private String profile;
53 private String description;
54 private String comment;
55 private ArrayList<LedgerTransactionAccount> accounts;
56 private String dataHash;
57 private boolean dataLoaded;
58 public LedgerTransaction(Integer id, String dateString, String description)
59 throws ParseException {
60 this(id, Globals.parseLedgerDate(dateString), description);
62 public LedgerTransaction(Integer id, Date date, String description,
63 MobileLedgerProfile profile) {
64 this.profile = profile.getUuid();
67 this.description = description;
68 this.accounts = new ArrayList<>();
72 public LedgerTransaction(Integer id, Date date, String description) {
73 this(id, date, description, Data.profile.getValue());
75 public LedgerTransaction(Date date, String description) {
76 this(null, date, description);
78 public LedgerTransaction(int id) {
79 this(id, (Date) null, null);
81 public LedgerTransaction(int id, String profileUUID) {
82 this.profile = profileUUID;
85 this.description = null;
86 this.accounts = new ArrayList<>();
88 this.dataLoaded = false;
90 public ArrayList<LedgerTransactionAccount> getAccounts() {
93 public void addAccount(LedgerTransactionAccount item) {
97 public Date getDate() {
100 public void setDate(Date date) {
104 public String getDescription() {
107 public void setDescription(String description) {
108 this.description = description;
111 public String getComment() {
114 public void setComment(String comment) {
115 this.comment = comment;
120 protected void fillDataHash() {
121 if (dataHash != null)
124 Digest sha = new Digest(DIGEST_TYPE);
125 StringBuilder data = new StringBuilder();
126 data.append(profile);
127 data.append(getId());
129 data.append(getDescription());
131 data.append(Globals.formatLedgerDate(getDate()));
133 for (LedgerTransactionAccount item : accounts) {
134 data.append(item.getAccountName());
136 data.append(item.getCurrency());
138 data.append(item.getAmount());
140 data.append(item.getComment());
142 sha.update(data.toString()
143 .getBytes(Charset.forName("UTF-8")));
144 dataHash = sha.digestToHexString();
146 catch (NoSuchAlgorithmException e) {
147 throw new RuntimeException(
148 String.format("Unable to get instance of %s digest", DIGEST_TYPE), e);
151 public boolean existsInDb(SQLiteDatabase db) {
153 try (Cursor c = db.rawQuery("SELECT 1 from transactions where data_hash = ?",
154 new String[]{dataHash}))
156 boolean result = c.moveToFirst();
157 // debug("db", String.format("Transaction %d (%s) %s", id, dataHash,
158 // result ? "already present" : "not present"));
162 public void loadData(SQLiteDatabase db) {
166 try (Cursor cTr = db.rawQuery(
167 "SELECT date, description from transactions WHERE profile=? AND id=?",
168 new String[]{profile, String.valueOf(id)}))
170 if (cTr.moveToFirst()) {
171 String dateString = cTr.getString(0);
173 date = Globals.parseLedgerDate(dateString);
175 catch (ParseException e) {
177 throw new RuntimeException(
178 String.format("Error parsing date '%s' from " + "transaction %d",
181 description = cTr.getString(1);
183 try (Cursor cAcc = db.rawQuery(
184 "SELECT account_name, amount, currency, comment FROM " +
185 "transaction_accounts WHERE profile=? AND transaction_id = ?",
186 new String[]{profile, String.valueOf(id)}))
188 while (cAcc.moveToNext()) {
189 // debug("transactions",
190 // String.format("Loaded %d: %s %1.2f %s", id, cAcc.getString(0),
191 // cAcc.getFloat(1), cAcc.getString(2)));
192 addAccount(new LedgerTransactionAccount(cAcc.getString(0), cAcc.getFloat(1),
193 cAcc.getString(2), cAcc.getString(3)));
202 public String getDataHash() {
205 public void finishLoading() {