@Override
    protected List<Map<String, Object>> doInBackground(Void... notUsed) {
      String xmlrpcUrl = null;
      if (mSelfHostedUrl != null && mSelfHostedUrl.length() != 0) {
        xmlrpcUrl = getSelfHostedXmlrpcUrl(mSelfHostedUrl);
      }

      if (xmlrpcUrl == null) {
        if (!mHttpAuthRequired && mErrorMsgId == 0) {
          mErrorMsgId = org.wordpress.android.R.string.no_site_error;
        }
        return null;
      }

      // Validate the URL found before calling the client. Prevent a crash that can occur
      // during the setup of self-hosted sites.
      URI xmlrpcUri;
      xmlrpcUri = URI.create(xmlrpcUrl);
      XMLRPCClientInterface client =
          XMLRPCFactory.instantiate(xmlrpcUri, mHttpUsername, mHttpPassword);
      Object[] params = {mUsername, mPassword};
      try {
        Object[] userBlogs = (Object[]) client.call("wp.getUsersBlogs", params);
        if (userBlogs == null) {
          // Could happen if the returned server response is truncated
          mErrorMsgId = org.wordpress.android.R.string.xmlrpc_error;
          mClientResponse = client.getResponse();
          return null;
        }
        Arrays.sort(userBlogs, BlogUtils.BlogNameComparator);
        List<Map<String, Object>> userBlogList = new ArrayList<Map<String, Object>>();
        for (Object blog : userBlogs) {
          try {
            userBlogList.add((Map<String, Object>) blog);
          } catch (ClassCastException e) {
            AppLog.e(T.NUX, "invalid data received from XMLRPC call wp.getUsersBlogs");
          }
        }
        return userBlogList;
      } catch (XmlPullParserException parserException) {
        mErrorMsgId = org.wordpress.android.R.string.xmlrpc_error;
        AppLog.e(T.NUX, "invalid data received from XMLRPC call wp.getUsersBlogs", parserException);
      } catch (XMLRPCFault xmlRpcFault) {
        handleXmlRpcFault(xmlRpcFault);
      } catch (XMLRPCException xmlRpcException) {
        AppLog.e(
            T.NUX, "XMLRPCException received from XMLRPC call wp.getUsersBlogs", xmlRpcException);
        mErrorMsgId = org.wordpress.android.R.string.no_site_error;
      } catch (SSLHandshakeException e) {
        if (xmlrpcUri.getHost() != null && xmlrpcUri.getHost().endsWith("wordpress.com")) {
          mErroneousSslCertificate = true;
        }
        AppLog.w(T.NUX, "SSLHandshakeException failed. Erroneous SSL certificate detected.");
      } catch (IOException e) {
        AppLog.e(T.NUX, "Exception received from XMLRPC call wp.getUsersBlogs", e);
        mErrorMsgId = org.wordpress.android.R.string.no_site_error;
      }
      mClientResponse = client.getResponse();
      return null;
    }
    private String uploadPicture(Map<String, Object> pictureParams, MediaFile mf, Blog blog) {
      XMLRPCClientInterface client =
          XMLRPCFactory.instantiate(blog.getUri(), blog.getHttpuser(), blog.getHttppassword());

      // create temporary upload file
      File tempFile;
      try {
        String fileExtension = MimeTypeMap.getFileExtensionFromUrl(mf.getFileName());
        tempFile = createTempUploadFile(fileExtension);
      } catch (IOException e) {
        mIsMediaError = true;
        mErrorMessage = context.getString(R.string.file_not_found);
        return null;
      }

      Object[] params = {1, blog.getUsername(), blog.getPassword(), pictureParams};
      Object result = uploadFileHelper(client, params, tempFile);
      if (result == null) {
        mIsMediaError = true;
        return null;
      }

      Map<?, ?> contentHash = (HashMap<?, ?>) result;
      String pictureURL = contentHash.get("url").toString();

      if (mf.isFeatured()) {
        try {
          if (contentHash.get("id") != null) {
            featuredImageID = Integer.parseInt(contentHash.get("id").toString());
            if (!mf.isFeaturedInPost()) return "";
          }
        } catch (NumberFormatException e) {
          AppLog.e(T.POSTS, e);
        }
      }

      return pictureURL;
    }
  private String getXmlrpcByUserEnteredPath(String baseUrl) {
    String xmlRpcUrl;
    if (!UrlUtils.isValidUrlAndHostNotNull(baseUrl)) {
      AppLog.e(T.NUX, "invalid URL: " + baseUrl);
      mErrorMsgId = org.wordpress.android.R.string.invalid_url_message;
      return null;
    }
    URI uri = URI.create(baseUrl);
    XMLRPCClientInterface client = XMLRPCFactory.instantiate(uri, mHttpUsername, mHttpPassword);
    try {
      client.call("system.listMethods");
      xmlRpcUrl = baseUrl;
      return xmlRpcUrl;
    } catch (XMLRPCException e) {
      AppLog.i(T.NUX, "system.listMethods failed on: " + baseUrl);
      if (isHTTPAuthErrorMessage(e)) {
        return null;
      }
    } catch (SSLHandshakeException e) {
      if (!UrlUtils.getDomainFromUrl(baseUrl).endsWith("wordpress.com")) {
        mErroneousSslCertificate = true;
      }
      AppLog.w(T.NUX, "SSLHandshakeException failed. Erroneous SSL certificate detected.");
      return null;
    } catch (SSLPeerUnverifiedException e) {
      if (!UrlUtils.getDomainFromUrl(baseUrl).endsWith("wordpress.com")) {
        mErroneousSslCertificate = true;
      }
      AppLog.w(T.NUX, "SSLPeerUnverifiedException failed. Erroneous SSL certificate detected.");
      return null;
    } catch (IOException e) {
      AppLog.i(T.NUX, "system.listMethods failed on: " + baseUrl);
      if (isHTTPAuthErrorMessage(e)) {
        return null;
      }
    } catch (XmlPullParserException e) {
      AppLog.i(T.NUX, "system.listMethods failed on: " + baseUrl);
      if (isHTTPAuthErrorMessage(e)) {
        return null;
      }
    } catch (IllegalArgumentException e) {
      // TODO: Hopefully a temporary log - remove it if we find a pattern of failing URLs
      CrashlyticsUtils.setString(ExtraKey.ENTERED_URL, baseUrl);
      CrashlyticsUtils.logException(e, ExceptionType.SPECIFIC, T.NUX);
      mErrorMsgId = org.wordpress.android.R.string.invalid_url_message;
      return null;
    }

    // Guess the xmlrpc path
    String guessURL = baseUrl;
    if (guessURL.substring(guessURL.length() - 1, guessURL.length()).equals("/")) {
      guessURL = guessURL.substring(0, guessURL.length() - 1);
    }
    guessURL += "/xmlrpc.php";
    uri = URI.create(guessURL);
    client = XMLRPCFactory.instantiate(uri, mHttpUsername, mHttpPassword);
    try {
      client.call("system.listMethods");
      xmlRpcUrl = guessURL;
      return xmlRpcUrl;
    } catch (XMLRPCException e) {
      AnalyticsTracker.track(Stat.LOGIN_FAILED_TO_GUESS_XMLRPC);
      AppLog.e(T.NUX, "system.listMethods failed on: " + guessURL, e);
    } catch (SSLHandshakeException e) {
      if (!UrlUtils.getDomainFromUrl(baseUrl).endsWith("wordpress.com")) {
        mErroneousSslCertificate = true;
      }
      AppLog.w(T.NUX, "SSLHandshakeException failed. Erroneous SSL certificate detected.");
      return null;
    } catch (SSLPeerUnverifiedException e) {
      if (!UrlUtils.getDomainFromUrl(baseUrl).endsWith("wordpress.com")) {
        mErroneousSslCertificate = true;
      }
      AppLog.w(T.NUX, "SSLPeerUnverifiedException failed. Erroneous SSL certificate detected.");
      return null;
    } catch (IOException e) {
      AnalyticsTracker.track(Stat.LOGIN_FAILED_TO_GUESS_XMLRPC);
      AppLog.e(T.NUX, "system.listMethods failed on: " + guessURL, e);
    } catch (XmlPullParserException e) {
      AnalyticsTracker.track(Stat.LOGIN_FAILED_TO_GUESS_XMLRPC);
      AppLog.e(T.NUX, "system.listMethods failed on: " + guessURL, e);
    }

    return null;
  }
    @Override
    protected Boolean doInBackground(Post... posts) {
      mErrorUnavailableVideoPress = false;
      mPost = posts[0];

      mPostUploadNotifier = new PostUploadNotifier(mPost);
      String postTitle =
          TextUtils.isEmpty(mPost.getTitle()) ? getString(R.string.untitled) : mPost.getTitle();
      String uploadingPostTitle = String.format(getString(R.string.posting_post), postTitle);
      String uploadingPostMessage =
          String.format(
              getString(R.string.sending_content),
              mPost.isPage()
                  ? getString(R.string.page).toLowerCase()
                  : getString(R.string.post).toLowerCase());
      mPostUploadNotifier.updateNotificationMessage(uploadingPostTitle, uploadingPostMessage);

      mBlog = WordPress.wpDB.instantiateBlogByLocalId(mPost.getLocalTableBlogId());
      if (mBlog == null) {
        mErrorMessage = mContext.getString(R.string.blog_not_found);
        return false;
      }

      // Create the XML-RPC client
      mClient =
          XMLRPCFactory.instantiate(mBlog.getUri(), mBlog.getHttpuser(), mBlog.getHttppassword());

      if (TextUtils.isEmpty(mPost.getPostStatus())) {
        mPost.setPostStatus(PostStatus.toString(PostStatus.PUBLISHED));
      }

      String descriptionContent = processPostMedia(mPost.getDescription());

      String moreContent = "";
      if (!TextUtils.isEmpty(mPost.getMoreText())) {
        moreContent = processPostMedia(mPost.getMoreText());
      }

      mPostUploadNotifier.updateNotificationMessage(uploadingPostTitle, uploadingPostMessage);

      // If media file upload failed, let's stop here and prompt the user
      if (mIsMediaError) {
        return false;
      }

      JSONArray categoriesJsonArray = mPost.getJSONCategories();
      String[] postCategories = null;
      if (categoriesJsonArray != null) {
        if (categoriesJsonArray.length() > 0) {
          mHasCategory = true;
        }

        postCategories = new String[categoriesJsonArray.length()];
        for (int i = 0; i < categoriesJsonArray.length(); i++) {
          try {
            postCategories[i] = TextUtils.htmlEncode(categoriesJsonArray.getString(i));
          } catch (JSONException e) {
            AppLog.e(T.POSTS, e);
          }
        }
      }

      Map<String, Object> contentStruct = new HashMap<String, Object>();

      if (!mPost.isPage() && mPost.isLocalDraft()) {
        // add the tagline
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);

        if (prefs.getBoolean(getString(R.string.pref_key_post_sig_enabled), false)) {
          String tagline = prefs.getString(getString(R.string.pref_key_post_sig), "");
          if (!TextUtils.isEmpty(tagline)) {
            String tag = "\n\n<span class=\"post_sig\">" + tagline + "</span>\n\n";
            if (TextUtils.isEmpty(moreContent)) descriptionContent += tag;
            else moreContent += tag;
          }
        }
      }

      // Post format
      if (!mPost.isPage()) {
        if (!TextUtils.isEmpty(mPost.getPostFormat())) {
          contentStruct.put("wp_post_format", mPost.getPostFormat());
        }
      }

      contentStruct.put("post_type", (mPost.isPage()) ? "page" : "post");
      contentStruct.put("title", mPost.getTitle());
      long pubDate = mPost.getDate_created_gmt();
      if (pubDate != 0) {
        Date date_created_gmt = new Date(pubDate);
        contentStruct.put("date_created_gmt", date_created_gmt);
        Date dateCreated = new Date(pubDate + (date_created_gmt.getTimezoneOffset() * 60000));
        contentStruct.put("dateCreated", dateCreated);
      }

      if (!TextUtils.isEmpty(moreContent)) {
        descriptionContent = descriptionContent.trim() + "<!--more-->" + moreContent;
        mPost.setMoreText("");
      }

      // get rid of the p and br tags that the editor adds.
      if (mPost.isLocalDraft()) {
        descriptionContent =
            descriptionContent.replace("<p>", "").replace("</p>", "\n").replace("<br>", "");
      }

      // gets rid of the weird character android inserts after images
      descriptionContent = descriptionContent.replaceAll("\uFFFC", "");

      contentStruct.put("description", descriptionContent);
      if (!mPost.isPage()) {
        contentStruct.put("mt_keywords", mPost.getKeywords());

        if (postCategories != null && postCategories.length > 0) {
          contentStruct.put("categories", postCategories);
        }
      }

      contentStruct.put("mt_excerpt", mPost.getPostExcerpt());
      contentStruct.put((mPost.isPage()) ? "page_status" : "post_status", mPost.getPostStatus());

      // Geolocation
      if (mPost.supportsLocation()) {
        JSONObject remoteGeoLatitude = mPost.getCustomField("geo_latitude");
        JSONObject remoteGeoLongitude = mPost.getCustomField("geo_longitude");
        JSONObject remoteGeoPublic = mPost.getCustomField("geo_public");

        Map<Object, Object> hLatitude = new HashMap<Object, Object>();
        Map<Object, Object> hLongitude = new HashMap<Object, Object>();
        Map<Object, Object> hPublic = new HashMap<Object, Object>();

        try {
          if (remoteGeoLatitude != null) {
            hLatitude.put("id", remoteGeoLatitude.getInt("id"));
          }

          if (remoteGeoLongitude != null) {
            hLongitude.put("id", remoteGeoLongitude.getInt("id"));
          }

          if (remoteGeoPublic != null) {
            hPublic.put("id", remoteGeoPublic.getInt("id"));
          }

          if (mPost.hasLocation()) {
            PostLocation location = mPost.getLocation();
            if (!hLatitude.containsKey("id")) {
              hLatitude.put("key", "geo_latitude");
            }

            if (!hLongitude.containsKey("id")) {
              hLongitude.put("key", "geo_longitude");
            }

            if (!hPublic.containsKey("id")) {
              hPublic.put("key", "geo_public");
            }

            hLatitude.put("value", location.getLatitude());
            hLongitude.put("value", location.getLongitude());
            hPublic.put("value", 1);
          }
        } catch (JSONException e) {
          AppLog.e(T.EDITOR, e);
        }

        if (!hLatitude.isEmpty() && !hLongitude.isEmpty() && !hPublic.isEmpty()) {
          Object[] geo = {hLatitude, hLongitude, hPublic};
          contentStruct.put("custom_fields", geo);
        }
      }

      // featured image
      if (featuredImageID != -1) {
        contentStruct.put("wp_post_thumbnail", featuredImageID);
      }

      if (!TextUtils.isEmpty(mPost.getQuickPostType())) {
        mClient.addQuickPostHeader(mPost.getQuickPostType());
      }

      contentStruct.put("wp_password", mPost.getPassword());

      Object[] params;
      if (mPost.isLocalDraft())
        params =
            new Object[] {
              mBlog.getRemoteBlogId(),
              mBlog.getUsername(),
              mBlog.getPassword(),
              contentStruct,
              false
            };
      else
        params =
            new Object[] {
              mPost.getRemotePostId(),
              mBlog.getUsername(),
              mBlog.getPassword(),
              contentStruct,
              false
            };

      try {
        EventBus.getDefault().post(new PostUploadStarted(mPost.getLocalTableBlogId()));

        if (mPost.isLocalDraft()) {
          Object object = mClient.call("metaWeblog.newPost", params);
          if (object instanceof String) {
            mPost.setRemotePostId((String) object);
          }
        } else {
          mClient.call("metaWeblog.editPost", params);
        }

        // Track any Analytics before modifying the post
        trackUploadAnalytics();

        mPost.setLocalDraft(false);
        mPost.setLocalChange(false);
        WordPress.wpDB.updatePost(mPost);

        // request the new/updated post from the server to ensure local copy matches server
        ApiHelper.updateSinglePost(
            mBlog.getLocalTableBlogId(), mPost.getRemotePostId(), mPost.isPage());

        return true;
      } catch (final XMLRPCException e) {
        setUploadPostErrorMessage(e);
      } catch (IOException e) {
        setUploadPostErrorMessage(e);
      } catch (XmlPullParserException e) {
        setUploadPostErrorMessage(e);
      }

      return false;
    }
    public String uploadMediaFile(MediaFile mediaFile, Blog blog) {
      String content = "";

      String curImagePath = mediaFile.getFilePath();
      if (curImagePath == null) {
        return null;
      }

      if (curImagePath.contains("video")) {
        // Upload the video
        XMLRPCClientInterface client =
            XMLRPCFactory.instantiate(blog.getUri(), blog.getHttpuser(), blog.getHttppassword());
        // create temp file for media upload
        String tempFileName = "wp-" + System.currentTimeMillis();
        try {
          context.openFileOutput(tempFileName, Context.MODE_PRIVATE);
        } catch (FileNotFoundException e) {
          mErrorMessage = getResources().getString(R.string.file_error_create);
          mIsMediaError = true;
          return null;
        }

        Uri videoUri = Uri.parse(curImagePath);
        File videoFile = null;
        String mimeType = "", xRes = "", yRes = "";

        if (videoUri.toString().contains("content:")) {

          String[] projection =
              new String[] {
                Video.Media._ID, Video.Media.DATA, Video.Media.MIME_TYPE, Video.Media.RESOLUTION
              };
          Cursor cur = context.getContentResolver().query(videoUri, projection, null, null, null);

          if (cur != null && cur.moveToFirst()) {

            int mimeTypeColumn, resolutionColumn, dataColumn;

            dataColumn = cur.getColumnIndex(Video.Media.DATA);
            mimeTypeColumn = cur.getColumnIndex(Video.Media.MIME_TYPE);
            resolutionColumn = cur.getColumnIndex(Video.Media.RESOLUTION);

            mediaFile = new MediaFile();

            String thumbData = cur.getString(dataColumn);
            mimeType = cur.getString(mimeTypeColumn);

            videoFile = new File(thumbData);
            mediaFile.setFilePath(videoFile.getPath());
            String resolution = cur.getString(resolutionColumn);
            if (resolution != null) {
              String[] resx = resolution.split("x");
              xRes = resx[0];
              yRes = resx[1];
            } else {
              // set the width of the video to the thumbnail width, else 640x480
              if (!blog.getMaxImageWidth().equals("Original Size")) {
                xRes = blog.getMaxImageWidth();
                yRes = String.valueOf(Math.round(Integer.valueOf(blog.getMaxImageWidth()) * 0.75));
              } else {
                xRes = "640";
                yRes = "480";
              }
            }
          }
        } else { // file is not in media library
          String filePath = videoUri.toString().replace("file://", "");
          mediaFile.setFilePath(filePath);
          videoFile = new File(filePath);
        }

        if (videoFile == null) {
          mErrorMessage = context.getResources().getString(R.string.error_media_upload);
          return null;
        }

        if (TextUtils.isEmpty(mimeType)) {
          mimeType = MediaUtils.getMediaFileMimeType(videoFile);
        }
        String videoName = MediaUtils.getMediaFileName(videoFile, mimeType);

        // try to upload the video
        Map<String, Object> m = new HashMap<String, Object>();
        m.put("name", videoName);
        m.put("type", mimeType);
        m.put("bits", mediaFile);
        m.put("overwrite", true);

        Object[] params = {1, blog.getUsername(), blog.getPassword(), m};

        FeatureSet featureSet = synchronousGetFeatureSet();
        boolean selfHosted = WordPress.currentBlog != null && !WordPress.currentBlog.isDotcomFlag();
        boolean isVideoEnabled =
            selfHosted || (featureSet != null && mFeatureSet.isVideopressEnabled());
        if (isVideoEnabled) {
          File tempFile;
          try {
            String fileExtension = MimeTypeMap.getFileExtensionFromUrl(videoName);
            tempFile = createTempUploadFile(fileExtension);
          } catch (IOException e) {
            mErrorMessage = getResources().getString(R.string.file_error_create);
            mIsMediaError = true;
            return null;
          }

          Object result = uploadFileHelper(client, params, tempFile);
          Map<?, ?> resultMap = (HashMap<?, ?>) result;
          if (resultMap != null && resultMap.containsKey("url")) {
            String resultURL = resultMap.get("url").toString();
            if (resultMap.containsKey("videopress_shortcode")) {
              resultURL = resultMap.get("videopress_shortcode").toString() + "\n";
            } else {
              resultURL =
                  String.format(
                      "<video width=\"%s\" height=\"%s\" controls=\"controls\"><source src=\"%s\" type=\"%s\" /><a href=\"%s\">Click to view video</a>.</video>",
                      xRes, yRes, resultURL, mimeType, resultURL);
            }
            content = content + resultURL;
          } else {
            return null;
          }
        } else {
          mErrorMessage = getString(R.string.media_no_video_message);
          mErrorUnavailableVideoPress = true;
          return null;
        }
      } else {
        // Upload the image
        curImagePath = mediaFile.getFilePath();

        Uri imageUri = Uri.parse(curImagePath);
        File imageFile = null;
        String mimeType = "", path = "";
        int orientation;

        if (imageUri.toString().contains("content:")) {
          String[] projection;
          Uri imgPath;

          projection = new String[] {Images.Media._ID, Images.Media.DATA, Images.Media.MIME_TYPE};

          imgPath = imageUri;

          Cursor cur = context.getContentResolver().query(imgPath, projection, null, null, null);
          if (cur != null && cur.moveToFirst()) {
            int dataColumn, mimeTypeColumn;
            dataColumn = cur.getColumnIndex(Images.Media.DATA);
            mimeTypeColumn = cur.getColumnIndex(Images.Media.MIME_TYPE);

            String thumbData = cur.getString(dataColumn);
            mimeType = cur.getString(mimeTypeColumn);
            imageFile = new File(thumbData);
            path = thumbData;
            mediaFile.setFilePath(imageFile.getPath());
          }
        } else { // file is not in media library
          path = imageUri.toString().replace("file://", "");
          imageFile = new File(path);
          mediaFile.setFilePath(path);
        }

        // check if the file exists
        if (imageFile == null) {
          mErrorMessage = context.getString(R.string.file_not_found);
          mIsMediaError = true;
          return null;
        }

        if (TextUtils.isEmpty(mimeType)) {
          mimeType = MediaUtils.getMediaFileMimeType(imageFile);
        }
        String fileName = MediaUtils.getMediaFileName(imageFile, mimeType);
        String fileExtension = MimeTypeMap.getFileExtensionFromUrl(fileName).toLowerCase();

        ImageHelper ih = new ImageHelper();
        orientation = ih.getImageOrientation(context, path);

        String resizedPictureURL = null;

        // We need to upload a resized version of the picture when the blog settings != original
        // size, or when
        // the user has selected a smaller size for the current picture in the picture settings
        // screen
        // We won't resize gif images to keep them awesome.
        boolean shouldUploadResizedVersion = false;
        // If it's not a gif and blog don't keep original size, there is a chance we need to resize
        if (!mimeType.equals("image/gif") && !blog.getMaxImageWidth().equals("Original Size")) {
          // check the picture settings
          int pictureSettingWidth = mediaFile.getWidth();
          BitmapFactory.Options options = new BitmapFactory.Options();
          options.inJustDecodeBounds = true;
          BitmapFactory.decodeFile(path, options);
          int imageHeight = options.outHeight;
          int imageWidth = options.outWidth;
          int[] dimensions = {imageWidth, imageHeight};
          if (dimensions[0] != 0 && dimensions[0] != pictureSettingWidth) {
            shouldUploadResizedVersion = true;
          }
        }

        boolean shouldAddImageWidthCSS = false;

        if (shouldUploadResizedVersion) {
          MediaFile resizedMediaFile = new MediaFile(mediaFile);
          // Create resized image
          byte[] bytes =
              ih.createThumbnailFromUri(
                  context, imageUri, resizedMediaFile.getWidth(), fileExtension, orientation);

          if (bytes == null) {
            // We weren't able to resize the image, so we will upload the full size image with css
            // to resize it
            shouldUploadResizedVersion = false;
            shouldAddImageWidthCSS = true;
          } else {
            // Save temp image
            String tempFilePath;
            File resizedImageFile;
            try {
              resizedImageFile = File.createTempFile("wp-image-", fileExtension);
              FileOutputStream out = new FileOutputStream(resizedImageFile);
              out.write(bytes);
              out.close();
              tempFilePath = resizedImageFile.getPath();
            } catch (IOException e) {
              AppLog.w(T.POSTS, "failed to create image temp file");
              mErrorMessage = context.getString(R.string.error_media_upload);
              mIsMediaError = true;
              return null;
            }

            // upload resized picture
            if (!TextUtils.isEmpty(tempFilePath)) {
              resizedMediaFile.setFilePath(tempFilePath);
              Map<String, Object> parameters = new HashMap<String, Object>();

              parameters.put("name", fileName);
              parameters.put("type", mimeType);
              parameters.put("bits", resizedMediaFile);
              parameters.put("overwrite", true);
              resizedPictureURL = uploadPicture(parameters, resizedMediaFile, blog);
              if (resizedPictureURL == null) {
                AppLog.w(T.POSTS, "failed to upload resized picture");
                return null;
              } else if (resizedImageFile != null && resizedImageFile.exists()) {
                resizedImageFile.delete();
              }
            } else {
              AppLog.w(T.POSTS, "failed to create resized picture");
              mErrorMessage = context.getString(R.string.out_of_memory);
              mIsMediaError = true;
              return null;
            }
          }
        }

        String fullSizeUrl = null;
        // Upload the full size picture if "Original Size" is selected in settings, or if 'link to
        // full size' is checked.
        if (!shouldUploadResizedVersion || blog.isFullSizeImage()) {
          // try to upload the image
          Map<String, Object> parameters = new HashMap<String, Object>();
          parameters.put("name", fileName);
          parameters.put("type", mimeType);
          parameters.put("bits", mediaFile);
          parameters.put("overwrite", true);

          fullSizeUrl = uploadPicture(parameters, mediaFile, blog);
          if (fullSizeUrl == null) return null;
        }

        String alignment = "";
        switch (mediaFile.getHorizontalAlignment()) {
          case 0:
            alignment = "alignnone";
            break;
          case 1:
            alignment = "alignleft";
            break;
          case 2:
            alignment = "aligncenter";
            break;
          case 3:
            alignment = "alignright";
            break;
        }

        String alignmentCSS = "class=\"" + alignment + " size-full\" ";

        if (shouldAddImageWidthCSS) {
          alignmentCSS += "style=\"max-width: " + mediaFile.getWidth() + "px\" ";
        }

        // Check if we uploaded a featured picture that is not added to the post content (normal
        // case)
        if ((fullSizeUrl != null && fullSizeUrl.equalsIgnoreCase(""))
            || (resizedPictureURL != null && resizedPictureURL.equalsIgnoreCase(""))) {
          return ""; // Not featured in post. Do not add to the content.
        }

        if (fullSizeUrl == null && resizedPictureURL != null) {
          fullSizeUrl = resizedPictureURL;
        } else if (fullSizeUrl != null && resizedPictureURL == null) {
          resizedPictureURL = fullSizeUrl;
        }

        String mediaTitle = TextUtils.isEmpty(mediaFile.getTitle()) ? "" : mediaFile.getTitle();

        content =
            content
                + "<a href=\""
                + fullSizeUrl
                + "\"><img title=\""
                + mediaTitle
                + "\" "
                + alignmentCSS
                + "alt=\"image\" src=\""
                + resizedPictureURL
                + "\" /></a>";

        if (!TextUtils.isEmpty(mediaFile.getCaption())) {
          content =
              String.format(
                  "[caption id=\"\" align=\"%s\" width=\"%d\" caption=\"%s\"]%s[/caption]",
                  alignment,
                  mediaFile.getWidth(),
                  TextUtils.htmlEncode(mediaFile.getCaption()),
                  content);
        }
      }
      return content;
    }
    @Override
    protected Boolean doInBackground(Post... posts) {
      mErrorUnavailableVideoPress = false;
      post = posts[0];

      // add the uploader to the notification bar
      nm = (NotificationManager) SystemServiceFactory.get(context, Context.NOTIFICATION_SERVICE);

      String postOrPage =
          (String)
              (post.isPage()
                  ? context.getResources().getText(R.string.page_id)
                  : context.getResources().getText(R.string.post_id));
      String message = context.getResources().getText(R.string.uploading) + " " + postOrPage;
      n = new Notification(R.drawable.notification_icon, message, System.currentTimeMillis());

      Intent notificationIntent =
          new Intent(context, post.isPage() ? PagesActivity.class : PostsActivity.class);
      notificationIntent.addFlags(
          Intent.FLAG_ACTIVITY_CLEAR_TOP
              | Intent.FLAG_ACTIVITY_NEW_TASK
              | IntentCompat.FLAG_ACTIVITY_CLEAR_TASK);
      notificationIntent.setAction(Intent.ACTION_MAIN);
      notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
      notificationIntent.setData(
          (Uri.parse("custom://wordpressNotificationIntent" + post.getLocalTableBlogId())));
      notificationIntent.putExtra(PostsActivity.EXTRA_VIEW_PAGES, post.isPage());
      PendingIntent pendingIntent =
          PendingIntent.getActivity(context, 0, notificationIntent, Intent.FLAG_ACTIVITY_CLEAR_TOP);

      n.setLatestEventInfo(context, message, message, pendingIntent);

      notificationID = (new Random()).nextInt() + post.getLocalTableBlogId();
      nm.notify(notificationID, n); // needs a unique id

      Blog blog = WordPress.wpDB.instantiateBlogByLocalId(post.getLocalTableBlogId());
      if (blog == null) {
        mErrorMessage = context.getString(R.string.blog_not_found);
        return false;
      }

      if (TextUtils.isEmpty(post.getPostStatus())) {
        post.setPostStatus("publish");
      }
      Boolean publishThis = false;

      String descriptionContent = "", moreContent = "";
      int moreCount = 1;
      if (!TextUtils.isEmpty(post.getMoreText())) moreCount++;
      String imgTags = "<img[^>]+android-uri\\s*=\\s*['\"]([^'\"]+)['\"][^>]*>";
      Pattern pattern = Pattern.compile(imgTags);

      for (int x = 0; x < moreCount; x++) {

        if (x == 0) descriptionContent = post.getDescription();
        else moreContent = post.getMoreText();

        Matcher matcher;

        if (x == 0) {
          matcher = pattern.matcher(descriptionContent);
        } else {
          matcher = pattern.matcher(moreContent);
        }

        List<String> imageTags = new ArrayList<String>();
        while (matcher.find()) {
          imageTags.add(matcher.group());
        }

        for (String tag : imageTags) {

          Pattern p = Pattern.compile("android-uri=\"([^\"]+)\"");
          Matcher m = p.matcher(tag);
          if (m.find()) {
            String imgPath = m.group(1);
            if (!imgPath.equals("")) {
              MediaFile mf = WordPress.wpDB.getMediaFile(imgPath, post);

              if (mf != null) {
                String imgHTML = uploadMediaFile(mf, blog);
                if (imgHTML != null) {
                  if (x == 0) {
                    descriptionContent = descriptionContent.replace(tag, imgHTML);
                  } else {
                    moreContent = moreContent.replace(tag, imgHTML);
                  }
                } else {
                  if (x == 0) descriptionContent = descriptionContent.replace(tag, "");
                  else moreContent = moreContent.replace(tag, "");
                  mIsMediaError = true;
                }
              }
            }
          }
        }
      }

      // If media file upload failed, let's stop here and prompt the user
      if (mIsMediaError) return false;

      JSONArray categoriesJsonArray = post.getJSONCategories();
      String[] postCategories = null;
      if (categoriesJsonArray != null) {
        postCategories = new String[categoriesJsonArray.length()];
        for (int i = 0; i < categoriesJsonArray.length(); i++) {
          try {
            postCategories[i] = TextUtils.htmlEncode(categoriesJsonArray.getString(i));
          } catch (JSONException e) {
            AppLog.e(T.POSTS, e);
          }
        }
      }

      Map<String, Object> contentStruct = new HashMap<String, Object>();

      if (!post.isPage() && post.isLocalDraft()) {
        // add the tagline
        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);

        if (prefs.getBoolean("wp_pref_signature_enabled", false)) {
          String tagline = prefs.getString("wp_pref_post_signature", "");
          if (!TextUtils.isEmpty(tagline)) {
            String tag = "\n\n<span class=\"post_sig\">" + tagline + "</span>\n\n";
            if (TextUtils.isEmpty(moreContent)) descriptionContent += tag;
            else moreContent += tag;
          }
        }
      }

      // post format
      if (!post.isPage()) {
        if (!TextUtils.isEmpty(post.getPostFormat())) {
          contentStruct.put("wp_post_format", post.getPostFormat());
        }
      }

      contentStruct.put("post_type", (post.isPage()) ? "page" : "post");
      contentStruct.put("title", post.getTitle());
      long pubDate = post.getDate_created_gmt();
      if (pubDate != 0) {
        Date date_created_gmt = new Date(pubDate);
        contentStruct.put("date_created_gmt", date_created_gmt);
        Date dateCreated = new Date(pubDate + (date_created_gmt.getTimezoneOffset() * 60000));
        contentStruct.put("dateCreated", dateCreated);
      }

      if (!moreContent.equals("")) {
        descriptionContent = descriptionContent.trim() + "<!--more-->" + moreContent;
        post.setMoreText("");
      }

      // get rid of the p and br tags that the editor adds.
      if (post.isLocalDraft()) {
        descriptionContent =
            descriptionContent.replace("<p>", "").replace("</p>", "\n").replace("<br>", "");
      }

      // gets rid of the weird character android inserts after images
      descriptionContent = descriptionContent.replaceAll("\uFFFC", "");

      contentStruct.put("description", descriptionContent);
      if (!post.isPage()) {
        contentStruct.put("mt_keywords", post.getKeywords());

        if (postCategories != null && postCategories.length > 0)
          contentStruct.put("categories", postCategories);
      }

      contentStruct.put("mt_excerpt", post.getPostExcerpt());

      contentStruct.put((post.isPage()) ? "page_status" : "post_status", post.getPostStatus());
      if (!post.isPage()) {
        if (post.getLatitude() > 0) {
          Map<Object, Object> hLatitude = new HashMap<Object, Object>();
          hLatitude.put("key", "geo_latitude");
          hLatitude.put("value", post.getLatitude());

          Map<Object, Object> hLongitude = new HashMap<Object, Object>();
          hLongitude.put("key", "geo_longitude");
          hLongitude.put("value", post.getLongitude());

          Map<Object, Object> hPublic = new HashMap<Object, Object>();
          hPublic.put("key", "geo_public");
          hPublic.put("value", 1);

          Object[] geo = {hLatitude, hLongitude, hPublic};

          contentStruct.put("custom_fields", geo);
        }
      }

      // featured image
      if (featuredImageID != -1) {
        contentStruct.put("wp_post_thumbnail", featuredImageID);
      }
      XMLRPCClientInterface client =
          XMLRPCFactory.instantiate(blog.getUri(), blog.getHttpuser(), blog.getHttppassword());
      if (!TextUtils.isEmpty(post.getQuickPostType())) {
        client.addQuickPostHeader(post.getQuickPostType());
      }
      n.setLatestEventInfo(context, message, message, n.contentIntent);
      nm.notify(notificationID, n);

      contentStruct.put("wp_password", post.getPassword());

      Object[] params;
      if (post.isLocalDraft() && !post.isUploaded())
        params =
            new Object[] {
              blog.getRemoteBlogId(),
              blog.getUsername(),
              blog.getPassword(),
              contentStruct,
              publishThis
            };
      else
        params =
            new Object[] {
              post.getRemotePostId(),
              blog.getUsername(),
              blog.getPassword(),
              contentStruct,
              publishThis
            };

      try {
        if (post.isLocalDraft() && !post.isUploaded()) {
          Object newPostId = client.call("metaWeblog.newPost", params);
          if (newPostId instanceof String) {
            post.setRemotePostId((String) newPostId);
          }
        } else {
          client.call("metaWeblog.editPost", params);
        }

        post.setUploaded(true);
        post.setLocalChange(false);
        WordPress.wpDB.updatePost(post);
        return true;
      } catch (final XMLRPCException e) {
        setUploadPostErrorMessage(e);
      } catch (IOException e) {
        setUploadPostErrorMessage(e);
      } catch (XmlPullParserException e) {
        setUploadPostErrorMessage(e);
      }

      return false;
    }