/* * Copyright (C) 2010 Nullbyte <http://nullbyte.eu> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.liato.bankdroid.banking.banks; import com.liato.bankdroid.Helpers; import com.liato.bankdroid.banking.Account; import com.liato.bankdroid.banking.Bank; import com.liato.bankdroid.banking.exceptions.BankChoiceException; import com.liato.bankdroid.banking.exceptions.BankException; import com.liato.bankdroid.banking.exceptions.LoginException; import com.liato.bankdroid.legacy.R; import com.liato.bankdroid.provider.IBankTypes; import org.apache.http.HttpResponse; import org.apache.http.entity.StringEntity; import org.apache.http.util.EntityUtils; import org.json.JSONException; import org.json.JSONObject; import android.content.Context; import android.text.InputType; import java.io.IOException; import eu.nullbyte.android.urllib.Urllib; public class BlekingeTrafiken extends Bank { private static final String NAME = "Blekingetrafiken"; private static final String URL = "https://www.blekingetrafiken.se"; private static final int BANKTYPE_ID = IBankTypes.BLEKINGETRAFIKEN; private String response = null; public BlekingeTrafiken(Context context) { super(context, R.drawable.logo_blekingetrafiken); super.url = URL; super.inputTypeUsername = InputType.TYPE_CLASS_PHONE; super.inputHintUsername = "XXXXXXXXXX"; super.inputTitletextUsername = R.string.card_number; super.inputHiddenPassword = true; } @Override public int getBanktypeId() { return BANKTYPE_ID; } @Override public String getName() { return NAME; } public BlekingeTrafiken(String username, String password, Context context) throws BankException, LoginException, BankChoiceException, IOException { this(context); this.update(username, password); } @Override protected LoginPackage preLogin() throws BankException, IOException { urlopen = new Urllib(context); LoginPackage lp = new LoginPackage(urlopen, null, null, URL); lp.setIsLoggedIn(true); //Well we don't support logging in ATM. return lp; } public Urllib login() throws LoginException, BankException, IOException { LoginPackage lp = preLogin(); urlopen.addHeader("Content-Type", "application/json;charset=UTF-8"); urlopen.addHeader("Accept", "application/json"); HttpResponse httpResponse = urlopen.openAsHttpResponse(URL + "/webshop/card/balance/", new StringEntity("{\"cardnr\":\"" + getUsername() + "\"}"), true); if (httpResponse.getStatusLine().getStatusCode() != 200) { throw new BankException(res.getText(R.string.invalid_card_number).toString()); } response = EntityUtils.toString(httpResponse.getEntity()); return urlopen; } @Override public void update() throws BankException, LoginException, BankChoiceException, IOException { super.update(); if (getUsername().isEmpty()) { throw new LoginException(res.getText(R.string.invalid_username_password).toString()); } urlopen = login(); try { JSONObject accountJSONObject = new JSONObject(response).optJSONObject("Card"); accountJSONObject = accountJSONObject.optJSONObject("Value"); Account a = new Account(accountJSONObject.getString("Description"), Helpers.parseBalance(accountJSONObject.getString("Remaining")), "0"); accounts.add(a); balance = balance.add(a.getBalance()); accountJSONObject = accountJSONObject.optJSONObject("Autoload"); if (accountJSONObject != null) { a = new Account(" - Kommande -", Helpers.parseBalance(accountJSONObject.getString("Value")), "1"); accounts.add(a); balance = balance.add(a.getBalance()); } } catch (JSONException e) { throw new BankException(e.getMessage(), e); } if (accounts.isEmpty()) { throw new BankException(res.getText(R.string.no_accounts_found).toString()); } super.updateComplete(); } }