Android Open Source - myglob Invoice Update Action






From Project

Back to project page myglob.

License

The source code is released under:

GNU General Public License

If you think the Android project myglob listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * MyGlob Android Application//from w  ww .  j a v  a 2  s  .c  o  m
 * 
 * Copyright (C) 2013 Petar Petrov
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */
package net.vexelon.myglob.actions;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.util.Date;
import java.util.List;
import java.util.Map;

import org.xml.sax.SAXException;

import android.content.Context;
import android.util.Log;
import net.vexelon.mobileops.InvoiceException;
import net.vexelon.mobileops.GLBInvoiceXMLParser;
import net.vexelon.mobileops.HttpClientException;
import net.vexelon.mobileops.IClient;
import net.vexelon.myglob.R;
import net.vexelon.myglob.configuration.Defs;
import net.vexelon.myglob.users.User;
import net.vexelon.myglob.utils.Utils;

public class InvoiceUpdateAction extends BaseAction {
  
  public InvoiceUpdateAction(Context context, User user) {
    super(context, user);
  }

  @Override
  public ActionResult execute() throws ActionExecuteException {
    ActionResult result = new ActionResult();
    result.setCheckedOn(new Date());
    
    IClient client = newClient();
    clientLogin(client);
    
    try {
      byte[] invoiceData = client.getInvoiceData();
      // clean up cache
      String lookForStorageName = String.format(Defs.ISTORAGE_XML_FORMAT, 
          _user.getPhoneNumber(), "");
      String[] storageFiles = _context.fileList();
      for (String fileName : storageFiles) {
        if (fileName.startsWith(lookForStorageName)) {
          if (!_context.deleteFile(fileName)) {
            Log.w(Defs.LOG_TAG, "Failed deleting - " + fileName);
          }
        }
      }
      // cache on local device storage
      String storageName = String.format(Defs.ISTORAGE_XML_FORMAT, 
          _user.getPhoneNumber(), 
          client.getInvoiceDateTime());
      Utils.writeToInternalStorage(_context, new ByteArrayInputStream(invoiceData), storageName);
      // parse XML
      GLBInvoiceXMLParser xmlParser = new GLBInvoiceXMLParser(new ByteArrayInputStream(invoiceData));
      List<Map<String, String>> invoiceInfo = xmlParser.build();
      // hack - we need to display the date
      for (Map<String, String> row : invoiceInfo) {
        row.put(GLBInvoiceXMLParser.TAG_DATE, Long.toString(client.getInvoiceDateTime()));
      }      
      // prep result object
      result.setBytesCount(client.getDownloadedBytesCount());
      result.setResult(invoiceInfo);
      // update user info
      updateUserResult(result);
      
    } catch (InvoiceException e) {
      throw new ActionExecuteException(R.string.err_invoice_globul, e);
    } catch (HttpClientException e) {
      throw new ActionExecuteException(e);
    } catch (SAXException e) {
      throw new ActionExecuteException(e);
    } catch (IOException e) {
      throw new ActionExecuteException(e);
    } finally {
      // Make sure we (attempt to) logout.
      clientLogout(client);
    }

    return result;
  }

}




Java Source Code List

net.vexelon.mobileops.GLBClient.java
net.vexelon.mobileops.GLBInvoiceXMLParser.java
net.vexelon.mobileops.GLBRequestType.java
net.vexelon.mobileops.HttpClientException.java
net.vexelon.mobileops.IClient.java
net.vexelon.mobileops.InvalidCredentialsException.java
net.vexelon.mobileops.InvoiceException.java
net.vexelon.mobileops.MTLClient.java
net.vexelon.mobileops.SecureCodeRequiredException.java
net.vexelon.myglob.AccountsArrayAdapter.java
net.vexelon.myglob.MainActivity.java
net.vexelon.myglob.OperationsArrayAdapter.java
net.vexelon.myglob.Operations.java
net.vexelon.myglob.UpdateWidgetService.java
net.vexelon.myglob.WidgetProvider4x2.java
net.vexelon.myglob.WidgetProvider.java
net.vexelon.myglob.actions.AccountStatusAction.java
net.vexelon.myglob.actions.ActionExecuteException.java
net.vexelon.myglob.actions.ActionResult.java
net.vexelon.myglob.actions.Action.java
net.vexelon.myglob.actions.BaseAction.java
net.vexelon.myglob.actions.InvoiceLoadCachedAction.java
net.vexelon.myglob.actions.InvoiceUpdateAction.java
net.vexelon.myglob.configuration.AccountPreferencesActivity.java
net.vexelon.myglob.configuration.Defs.java
net.vexelon.myglob.configuration.GlobalSettings.java
net.vexelon.myglob.configuration.LegacySettings.java
net.vexelon.myglob.crypto.CryptoAES.java
net.vexelon.myglob.crypto.Crypto.java
net.vexelon.myglob.crypto.PasswordEngineImpl1.java
net.vexelon.myglob.crypto.PasswordEngineImpl2.java
net.vexelon.myglob.crypto.PasswordEngine.java
net.vexelon.myglob.fragments.AboutFragment.java
net.vexelon.myglob.fragments.BaseFragment.java
net.vexelon.myglob.fragments.HomeFragment.java
net.vexelon.myglob.fragments.IFragmentEvents.java
net.vexelon.myglob.fragments.InvoiceFragment.java
net.vexelon.myglob.users.AccountType.java
net.vexelon.myglob.users.User.java
net.vexelon.myglob.users.UsersManager.java
net.vexelon.myglob.utils.Base64.java
net.vexelon.myglob.utils.DateUtils.java
net.vexelon.myglob.utils.TrustAllSocketFactory.java
net.vexelon.myglob.utils.UserAgentHelper.java
net.vexelon.myglob.utils.Utils.java