]> git.ktnx.net Git - mobile-ledger.git/commitdiff
JSON API for adding transactions
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 4 Apr 2019 04:13:14 +0000 (07:13 +0300)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Thu, 4 Apr 2019 04:13:14 +0000 (07:13 +0300)
app/src/main/java/net/ktnx/mobileledger/async/SaveTransactionTask.java [deleted file]
app/src/main/java/net/ktnx/mobileledger/async/SendTransactionTask.java [new file with mode: 0644]
app/src/main/java/net/ktnx/mobileledger/ui/activity/NewTransactionActivity.java

diff --git a/app/src/main/java/net/ktnx/mobileledger/async/SaveTransactionTask.java b/app/src/main/java/net/ktnx/mobileledger/async/SaveTransactionTask.java
deleted file mode 100644 (file)
index bad55ee..0000000
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * Copyright © 2019 Damyan Ivanov.
- * This file is part of MoLe.
- * MoLe is free software: you can distribute it and/or modify it
- * under the term of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your opinion), any later version.
- *
- * MoLe 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 terms for details.
- *
- * You should have received a copy of the GNU General Public License
- * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
- */
-
-package net.ktnx.mobileledger.async;
-
-import android.os.AsyncTask;
-import android.util.Log;
-
-import net.ktnx.mobileledger.model.Data;
-import net.ktnx.mobileledger.model.LedgerTransaction;
-import net.ktnx.mobileledger.model.LedgerTransactionAccount;
-import net.ktnx.mobileledger.utils.Globals;
-import net.ktnx.mobileledger.utils.NetworkUtil;
-import net.ktnx.mobileledger.utils.UrlEncodedFormData;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.io.OutputStream;
-import java.net.HttpURLConnection;
-import java.nio.charset.StandardCharsets;
-import java.util.List;
-import java.util.Locale;
-import java.util.Map;
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
-
-import static java.lang.Thread.sleep;
-
-public class SaveTransactionTask extends AsyncTask<LedgerTransaction, Void, Void> {
-    private final TaskCallback taskCallback;
-    protected String error;
-    private String token;
-    private String session;
-    private String backendUrl;
-    private LedgerTransaction ltr;
-
-    public SaveTransactionTask(TaskCallback callback) {
-        taskCallback = callback;
-    }
-    private boolean sendOK() throws IOException {
-        HttpURLConnection http = NetworkUtil.prepareConnection(Data.profile.get(), "add");
-        http.setRequestMethod("POST");
-        http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
-        http.setRequestProperty("Accept", "*/*");
-        if ((session != null) && !session.isEmpty()) {
-            http.setRequestProperty("Cookie", String.format("_SESSION=%s", session));
-        }
-        http.setDoOutput(true);
-        http.setDoInput(true);
-
-        UrlEncodedFormData params = new UrlEncodedFormData();
-        params.addPair("_formid", "identify-add");
-        if (token != null) params.addPair("_token", token);
-        params.addPair("date", Globals.formatLedgerDate(ltr.getDate()));
-        params.addPair("description", ltr.getDescription());
-        for (LedgerTransactionAccount acc : ltr.getAccounts()) {
-            params.addPair("account", acc.getAccountName());
-            if (acc.isAmountSet())
-                params.addPair("amount", String.format(Locale.US, "%1.2f", acc.getAmount()));
-            else params.addPair("amount", "");
-        }
-
-        String body = params.toString();
-        http.addRequestProperty("Content-Length", String.valueOf(body.length()));
-
-        Log.d("network", "request header: " + http.getRequestProperties().toString());
-
-        try (OutputStream req = http.getOutputStream()) {
-            Log.d("network", "Request body: " + body);
-            req.write(body.getBytes(StandardCharsets.US_ASCII));
-
-            try (InputStream resp = http.getInputStream()) {
-                Log.d("update_accounts", String.valueOf(http.getResponseCode()));
-                if (http.getResponseCode() == 303) {
-                    // everything is fine
-                    return true;
-                }
-                else if (http.getResponseCode() == 200) {
-                    // get the new cookie
-                    {
-                        Pattern reSessionCookie = Pattern.compile("_SESSION=([^;]+);.*");
-
-                        Map<String, List<String>> header = http.getHeaderFields();
-                        List<String> cookieHeader = header.get("Set-Cookie");
-                        if (cookieHeader != null) {
-                            String cookie = cookieHeader.get(0);
-                            Matcher m = reSessionCookie.matcher(cookie);
-                            if (m.matches()) {
-                                session = m.group(1);
-                                Log.d("network", "new session is " + session);
-                            }
-                            else {
-                                Log.d("network", "set-cookie: " + cookie);
-                                Log.w("network",
-                                        "Response Set-Cookie headers is not a _SESSION one");
-                            }
-                        }
-                        else {
-                            Log.w("network", "Response has no Set-Cookie header");
-                        }
-                    }
-                    // the token needs to be updated
-                    BufferedReader reader = new BufferedReader(new InputStreamReader(resp));
-                    Pattern re = Pattern.compile(
-                            "<input type=\"hidden\" name=\"_token\" value=\"([^\"]+)\">");
-                    String line;
-                    while ((line = reader.readLine()) != null) {
-                        //Log.d("dump", line);
-                        Matcher m = re.matcher(line);
-                        if (m.matches()) {
-                            token = m.group(1);
-                            Log.d("save-transaction", line);
-                            Log.d("save-transaction", "Token=" + token);
-                            return false;       // retry
-                        }
-                    }
-                    throw new IOException("Can't find _token string");
-                }
-                else {
-                    throw new IOException(
-                            String.format("Error response code %d", http.getResponseCode()));
-                }
-            }
-        }
-    }
-
-    @Override
-    protected Void doInBackground(LedgerTransaction... ledgerTransactions) {
-        error = null;
-        try {
-            backendUrl = Data.profile.get().getUrl();
-            ltr = ledgerTransactions[0];
-
-            int tried = 0;
-            while (!sendOK()) {
-                try {
-                    tried++;
-                    if (tried >= 2)
-                        throw new IOException(String.format("aborting after %d tries", tried));
-                    sleep(100);
-                }
-                catch (InterruptedException e) {
-                    e.printStackTrace();
-                }
-            }
-        }
-        catch (Exception e) {
-            e.printStackTrace();
-            error = e.getMessage();
-        }
-
-        return null;
-    }
-
-    @Override
-    protected void onPostExecute(Void aVoid) {
-        super.onPostExecute(aVoid);
-        taskCallback.done(error);
-    }
-}
diff --git a/app/src/main/java/net/ktnx/mobileledger/async/SendTransactionTask.java b/app/src/main/java/net/ktnx/mobileledger/async/SendTransactionTask.java
new file mode 100644 (file)
index 0000000..fa69f86
--- /dev/null
@@ -0,0 +1,222 @@
+/*
+ * Copyright © 2019 Damyan Ivanov.
+ * This file is part of MoLe.
+ * MoLe is free software: you can distribute it and/or modify it
+ * under the term of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your opinion), any later version.
+ *
+ * MoLe 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 terms for details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package net.ktnx.mobileledger.async;
+
+import android.os.AsyncTask;
+import android.util.Log;
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.ObjectWriter;
+
+import net.ktnx.mobileledger.json.ParsedLedgerTransaction;
+import net.ktnx.mobileledger.model.Data;
+import net.ktnx.mobileledger.model.LedgerTransaction;
+import net.ktnx.mobileledger.model.LedgerTransactionAccount;
+import net.ktnx.mobileledger.utils.Globals;
+import net.ktnx.mobileledger.utils.NetworkUtil;
+import net.ktnx.mobileledger.utils.UrlEncodedFormData;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.OutputStream;
+import java.net.HttpURLConnection;
+import java.nio.charset.StandardCharsets;
+import java.util.List;
+import java.util.Locale;
+import java.util.Map;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import static android.os.SystemClock.sleep;
+
+public class SendTransactionTask extends AsyncTask<LedgerTransaction, Void, Void> {
+    private final TaskCallback taskCallback;
+    protected String error;
+    private String token;
+    private String session;
+    private LedgerTransaction ltr;
+
+    public SendTransactionTask(TaskCallback callback) {
+        taskCallback = callback;
+    }
+    private boolean sendOK() throws IOException {
+        HttpURLConnection http = NetworkUtil.prepareConnection(Data.profile.get(), "add");
+        http.setRequestMethod("PUT");
+        http.setRequestProperty("Content-Type", "application/json");
+        http.setRequestProperty("Accept", "*/*");
+
+        ParsedLedgerTransaction jsonTransaction;
+        jsonTransaction = ltr.toParsedLedgerTransaction();
+        ObjectMapper mapper = new ObjectMapper();
+        ObjectWriter writer = mapper.writerFor(ParsedLedgerTransaction.class);
+        String body = writer.writeValueAsString(jsonTransaction);
+
+        byte[] bodyBytes = body.getBytes(StandardCharsets.UTF_8);
+        http.setDoOutput(true);
+        http.setDoInput(true);
+        http.addRequestProperty("Content-Length", String.valueOf(bodyBytes.length));
+
+        Log.d("network", "request header: " + http.getRequestProperties().toString());
+
+        try (OutputStream req = http.getOutputStream()) {
+            Log.d("network", "Request body: " + body);
+            req.write(bodyBytes);
+
+            final int responseCode = http.getResponseCode();
+            Log.d("network",
+                    String.format("Response: %d %s", responseCode, http.getResponseMessage()));
+
+            try (InputStream resp = http.getErrorStream()) {
+
+                switch (responseCode) {
+                    case 200:
+                    case 201:
+                        break;
+                    case 405:
+                        return false; // will cause a retry with the legacy method
+                    default:
+                        BufferedReader reader = new BufferedReader(new InputStreamReader(resp));
+                        String line = reader.readLine();
+                        Log.d("network", "Response content: " + line);
+                        throw new IOException(
+                                String.format("Error response code %d", responseCode));
+                }
+            }
+        }
+
+        return true;
+    }
+    private boolean legacySendOK() throws IOException {
+        HttpURLConnection http = NetworkUtil.prepareConnection(Data.profile.get(), "add");
+        http.setRequestMethod("POST");
+        http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
+        http.setRequestProperty("Accept", "*/*");
+        if ((session != null) && !session.isEmpty()) {
+            http.setRequestProperty("Cookie", String.format("_SESSION=%s", session));
+        }
+        http.setDoOutput(true);
+        http.setDoInput(true);
+
+        UrlEncodedFormData params = new UrlEncodedFormData();
+        params.addPair("_formid", "identify-add");
+        if (token != null) params.addPair("_token", token);
+        params.addPair("date", Globals.formatLedgerDate(ltr.getDate()));
+        params.addPair("description", ltr.getDescription());
+        for (LedgerTransactionAccount acc : ltr.getAccounts()) {
+            params.addPair("account", acc.getAccountName());
+            if (acc.isAmountSet())
+                params.addPair("amount", String.format(Locale.US, "%1.2f", acc.getAmount()));
+            else params.addPair("amount", "");
+        }
+
+        String body = params.toString();
+        http.addRequestProperty("Content-Length", String.valueOf(body.length()));
+
+        Log.d("network", "request header: " + http.getRequestProperties().toString());
+
+        try (OutputStream req = http.getOutputStream()) {
+            Log.d("network", "Request body: " + body);
+            req.write(body.getBytes(StandardCharsets.US_ASCII));
+
+            try (InputStream resp = http.getInputStream()) {
+                Log.d("update_accounts", String.valueOf(http.getResponseCode()));
+                if (http.getResponseCode() == 303) {
+                    // everything is fine
+                    return true;
+                }
+                else if (http.getResponseCode() == 200) {
+                    // get the new cookie
+                    {
+                        Pattern reSessionCookie = Pattern.compile("_SESSION=([^;]+);.*");
+
+                        Map<String, List<String>> header = http.getHeaderFields();
+                        List<String> cookieHeader = header.get("Set-Cookie");
+                        if (cookieHeader != null) {
+                            String cookie = cookieHeader.get(0);
+                            Matcher m = reSessionCookie.matcher(cookie);
+                            if (m.matches()) {
+                                session = m.group(1);
+                                Log.d("network", "new session is " + session);
+                            }
+                            else {
+                                Log.d("network", "set-cookie: " + cookie);
+                                Log.w("network",
+                                        "Response Set-Cookie headers is not a _SESSION one");
+                            }
+                        }
+                        else {
+                            Log.w("network", "Response has no Set-Cookie header");
+                        }
+                    }
+                    // the token needs to be updated
+                    BufferedReader reader = new BufferedReader(new InputStreamReader(resp));
+                    Pattern re = Pattern.compile(
+                            "<input type=\"hidden\" name=\"_token\" value=\"([^\"]+)\">");
+                    String line;
+                    while ((line = reader.readLine()) != null) {
+                        //Log.d("dump", line);
+                        Matcher m = re.matcher(line);
+                        if (m.matches()) {
+                            token = m.group(1);
+                            Log.d("save-transaction", line);
+                            Log.d("save-transaction", "Token=" + token);
+                            return false;       // retry
+                        }
+                    }
+                    throw new IOException("Can't find _token string");
+                }
+                else {
+                    throw new IOException(
+                            String.format("Error response code %d", http.getResponseCode()));
+                }
+            }
+        }
+    }
+
+    @Override
+    protected Void doInBackground(LedgerTransaction... ledgerTransactions) {
+        error = null;
+        try {
+            ltr = ledgerTransactions[0];
+
+            if (!sendOK()) {
+                int tried = 0;
+                while (!legacySendOK()) {
+                        tried++;
+                        if (tried >= 2)
+                            throw new IOException(String.format("aborting after %d tries", tried));
+                        sleep(100);
+                }
+            }
+        }
+        catch (Exception e) {
+            e.printStackTrace();
+            error = e.getMessage();
+        }
+
+        return null;
+    }
+
+    @Override
+    protected void onPostExecute(Void aVoid) {
+        super.onPostExecute(aVoid);
+        taskCallback.done(error);
+    }
+}
index 6f0ea1a809646c7e5fde31cddd8d32c477786bf0..845afea58c0ddc258b40ca6628fa98649553dcf6 100644 (file)
@@ -47,7 +47,7 @@ import com.google.android.material.snackbar.Snackbar;
 import net.ktnx.mobileledger.BuildConfig;
 import net.ktnx.mobileledger.R;
 import net.ktnx.mobileledger.async.DescriptionSelectedCallback;
-import net.ktnx.mobileledger.async.SaveTransactionTask;
+import net.ktnx.mobileledger.async.SendTransactionTask;
 import net.ktnx.mobileledger.async.TaskCallback;
 import net.ktnx.mobileledger.model.Data;
 import net.ktnx.mobileledger.model.LedgerTransaction;
@@ -77,7 +77,7 @@ import androidx.fragment.app.DialogFragment;
 
 public class NewTransactionActivity extends ProfileThemedActivity
         implements TaskCallback, DescriptionSelectedCallback {
-    private static SaveTransactionTask saver;
+    private static SendTransactionTask saver;
     private TableLayout table;
     private ProgressBar progress;
     private FloatingActionButton fab;
@@ -149,7 +149,7 @@ public class NewTransactionActivity extends ProfileThemedActivity
         progress.setVisibility(View.VISIBLE);
         try {
 
-            saver = new SaveTransactionTask(this);
+            saver = new SendTransactionTask(this);
 
             String dateString = tvDate.getText().toString();
             Date date;
@@ -158,16 +158,29 @@ public class NewTransactionActivity extends ProfileThemedActivity
             LedgerTransaction tr = new LedgerTransaction(date, tvDescription.getText().toString());
 
             TableLayout table = findViewById(R.id.new_transaction_accounts_table);
+            LedgerTransactionAccount emptyAmountAccount = null;
+            float emptyAmountAccountBalance = 0;
             for (int i = 0; i < table.getChildCount(); i++) {
                 TableRow row = (TableRow) table.getChildAt(i);
                 String acc = ((TextView) row.getChildAt(0)).getText().toString();
+                if (acc.isEmpty()) continue;
+
                 String amt = ((TextView) row.getChildAt(1)).getText().toString();
-                LedgerTransactionAccount item =
-                        amt.length() > 0 ? new LedgerTransactionAccount(acc, Float.parseFloat(amt))
-                                         : new LedgerTransactionAccount(acc);
+                LedgerTransactionAccount item;
+                if (amt.length() > 0) {
+                    final float amount = Float.parseFloat(amt);
+                    item = new LedgerTransactionAccount(acc, amount);
+                    emptyAmountAccountBalance += amount;
+                }
+                else {
+                    item = new LedgerTransactionAccount(acc);
+                    emptyAmountAccount = item;
+                }
 
                 tr.addAccount(item);
             }
+
+            if (emptyAmountAccount != null) emptyAmountAccount.setAmount(-emptyAmountAccountBalance);
             saver.execute(tr);
         }
         catch (ParseException e) {