2 * Copyright © 2020 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.async;
20 import android.content.res.Resources;
21 import android.os.AsyncTask;
22 import android.util.Log;
23 import android.util.SparseArray;
25 import com.fasterxml.jackson.databind.ObjectMapper;
26 import com.fasterxml.jackson.databind.ObjectWriter;
28 import net.ktnx.mobileledger.R;
29 import net.ktnx.mobileledger.model.LedgerTransaction;
30 import net.ktnx.mobileledger.model.LedgerTransactionAccount;
31 import net.ktnx.mobileledger.model.MobileLedgerProfile;
32 import net.ktnx.mobileledger.utils.Globals;
33 import net.ktnx.mobileledger.utils.Logger;
34 import net.ktnx.mobileledger.utils.NetworkUtil;
35 import net.ktnx.mobileledger.utils.SimpleDate;
36 import net.ktnx.mobileledger.utils.UrlEncodedFormData;
38 import java.io.BufferedReader;
39 import java.io.IOException;
40 import java.io.InputStream;
41 import java.io.InputStreamReader;
42 import java.io.OutputStream;
43 import java.net.HttpURLConnection;
44 import java.nio.charset.StandardCharsets;
45 import java.util.List;
46 import java.util.Locale;
48 import java.util.regex.Matcher;
49 import java.util.regex.Pattern;
51 import static android.os.SystemClock.sleep;
52 import static net.ktnx.mobileledger.utils.Logger.debug;
54 /* TODO: get rid of the custom session/cookie and auth code?
55 * (the last problem with the POST was the missing content-length header)
56 * This will resolve itself when hledger-web 1.14+ is released with Debian/stable,
57 * at which point the HTML form emulation can be dropped entirely
60 public class SendTransactionTask extends AsyncTask<LedgerTransaction, Void, Void> {
61 private final TaskCallback taskCallback;
62 protected String error;
64 private String session;
65 private LedgerTransaction transaction;
66 private MobileLedgerProfile mProfile;
67 private boolean simulate;
69 public SendTransactionTask(TaskCallback callback, MobileLedgerProfile profile,
71 taskCallback = callback;
73 this.simulate = simulate;
75 public SendTransactionTask(TaskCallback callback, MobileLedgerProfile profile) {
76 taskCallback = callback;
80 private boolean send_1_15_OK() throws IOException {
81 HttpURLConnection http = NetworkUtil.prepareConnection(mProfile, "add");
82 http.setRequestMethod("PUT");
83 http.setRequestProperty("Content-Type", "application/json");
84 http.setRequestProperty("Accept", "*/*");
86 net.ktnx.mobileledger.json.v1_15.ParsedLedgerTransaction jsonTransaction =
87 net.ktnx.mobileledger.json.v1_15.ParsedLedgerTransaction.fromLedgerTransaction(
89 ObjectMapper mapper = new ObjectMapper();
91 mapper.writerFor(net.ktnx.mobileledger.json.v1_15.ParsedLedgerTransaction.class);
92 String body = writer.writeValueAsString(jsonTransaction);
94 return sendRequest(http, body);
96 private boolean send_1_14_OK() throws IOException {
97 HttpURLConnection http = NetworkUtil.prepareConnection(mProfile, "add");
98 http.setRequestMethod("PUT");
99 http.setRequestProperty("Content-Type", "application/json");
100 http.setRequestProperty("Accept", "*/*");
102 net.ktnx.mobileledger.json.v1_14.ParsedLedgerTransaction jsonTransaction =
103 net.ktnx.mobileledger.json.v1_14.ParsedLedgerTransaction.fromLedgerTransaction(
105 ObjectMapper mapper = new ObjectMapper();
106 ObjectWriter writer =
107 mapper.writerFor(net.ktnx.mobileledger.json.v1_14.ParsedLedgerTransaction.class);
108 String body = writer.writeValueAsString(jsonTransaction);
110 return sendRequest(http, body);
112 private boolean sendRequest(HttpURLConnection http, String body) throws IOException {
114 debug("network", "The request would be: " + body);
117 if (Math.random() > 0.3)
118 throw new RuntimeException("Simulated test exception");
120 catch (InterruptedException ex) {
121 Logger.debug("network", ex.toString());
127 byte[] bodyBytes = body.getBytes(StandardCharsets.UTF_8);
128 http.setDoOutput(true);
129 http.setDoInput(true);
130 http.addRequestProperty("Content-Length", String.valueOf(bodyBytes.length));
132 debug("network", "request header: " + http.getRequestProperties()
135 try (OutputStream req = http.getOutputStream()) {
136 debug("network", "Request body: " + body);
137 req.write(bodyBytes);
139 final int responseCode = http.getResponseCode();
141 String.format("Response: %d %s", responseCode, http.getResponseMessage()));
143 try (InputStream resp = http.getErrorStream()) {
145 switch (responseCode) {
151 return false; // will cause a retry with the legacy method
153 BufferedReader reader = new BufferedReader(new InputStreamReader(resp));
154 String line = reader.readLine();
155 debug("network", "Response content: " + line);
156 throw new IOException(
157 String.format("Error response code %d", responseCode));
164 private boolean legacySendOK() throws IOException {
165 HttpURLConnection http = NetworkUtil.prepareConnection(mProfile, "add");
166 http.setRequestMethod("POST");
167 http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
168 http.setRequestProperty("Accept", "*/*");
169 if ((session != null) && !session.isEmpty()) {
170 http.setRequestProperty("Cookie", String.format("_SESSION=%s", session));
172 http.setDoOutput(true);
173 http.setDoInput(true);
175 UrlEncodedFormData params = new UrlEncodedFormData();
176 params.addPair("_formid", "identify-add");
178 params.addPair("_token", token);
180 SimpleDate transactionDate = transaction.getDate();
181 if (transactionDate == null) {
182 transactionDate = SimpleDate.today();
185 params.addPair("date", Globals.formatLedgerDate(transactionDate));
186 params.addPair("description", transaction.getDescription());
187 for (LedgerTransactionAccount acc : transaction.getAccounts()) {
188 params.addPair("account", acc.getAccountName());
189 if (acc.isAmountSet())
190 params.addPair("amount", String.format(Locale.US, "%1.2f", acc.getAmount()));
192 params.addPair("amount", "");
195 String body = params.toString();
196 http.addRequestProperty("Content-Length", String.valueOf(body.length()));
198 debug("network", "request header: " + http.getRequestProperties()
201 try (OutputStream req = http.getOutputStream()) {
202 debug("network", "Request body: " + body);
203 req.write(body.getBytes(StandardCharsets.US_ASCII));
205 try (InputStream resp = http.getInputStream()) {
206 debug("update_accounts", String.valueOf(http.getResponseCode()));
207 if (http.getResponseCode() == 303) {
208 // everything is fine
211 else if (http.getResponseCode() == 200) {
212 // get the new cookie
214 Pattern reSessionCookie = Pattern.compile("_SESSION=([^;]+);.*");
216 Map<String, List<String>> header = http.getHeaderFields();
217 List<String> cookieHeader = header.get("Set-Cookie");
218 if (cookieHeader != null) {
219 String cookie = cookieHeader.get(0);
220 Matcher m = reSessionCookie.matcher(cookie);
222 session = m.group(1);
223 debug("network", "new session is " + session);
226 debug("network", "set-cookie: " + cookie);
228 "Response Set-Cookie headers is not a _SESSION one");
232 Log.w("network", "Response has no Set-Cookie header");
235 // the token needs to be updated
236 BufferedReader reader = new BufferedReader(new InputStreamReader(resp));
237 Pattern re = Pattern.compile(
238 "<input type=\"hidden\" name=\"_token\" value=\"([^\"]+)\">");
240 while ((line = reader.readLine()) != null) {
241 //debug("dump", line);
242 Matcher m = re.matcher(line);
245 debug("save-transaction", line);
246 debug("save-transaction", "Token=" + token);
247 return false; // retry
250 throw new IOException("Can't find _token string");
253 throw new IOException(
254 String.format("Error response code %d", http.getResponseCode()));
260 protected Void doInBackground(LedgerTransaction... ledgerTransactions) {
263 transaction = ledgerTransactions[0];
265 switch (mProfile.getApiVersion()) {
267 Logger.debug("network", "Trying version 1.5.");
268 if (!send_1_15_OK()) {
269 Logger.debug("network", "Version 1.5 request failed. Trying with 1.14");
270 if (!send_1_14_OK()) {
271 Logger.debug("network",
272 "Version 1.14 failed too. Trying HTML form emulation");
273 legacySendOkWithRetry();
276 Logger.debug("network", "Version 1.14 request succeeded");
280 Logger.debug("network", "Version 1.15 request succeeded");
284 legacySendOkWithRetry();
293 throw new IllegalStateException(
294 "Unexpected API version: " + mProfile.getApiVersion());
297 catch (Exception e) {
299 error = e.getMessage();
304 private void legacySendOkWithRetry() throws IOException {
306 while (!legacySendOK()) {
309 throw new IOException(String.format("aborting after %d tries", tried));
314 protected void onPostExecute(Void aVoid) {
315 super.onPostExecute(aVoid);
316 taskCallback.done(error);
320 auto(0), html(-1), pre_1_15(-2), post_1_14(-3);
321 private static SparseArray<API> map = new SparseArray<>();
324 for (API item : API.values()) {
325 map.put(item.value, item);
334 public static API valueOf(int i) {
335 return map.get(i, auto);
340 public String getDescription(Resources resources) {
343 return resources.getString(R.string.api_auto);
345 return resources.getString(R.string.api_html);
347 return resources.getString(R.string.api_pre_1_15);
349 return resources.getString(R.string.api_post_1_14);
351 throw new IllegalStateException("Unexpected value: " + value);