Package org.jbehave.core.io.rest.xwiki

Source Code of org.jbehave.core.io.rest.xwiki.LoadFromXWiki$Page

package org.jbehave.core.io.rest.xwiki;

import static java.text.MessageFormat.format;

import org.jbehave.core.io.rest.LoadFromREST;
import org.jbehave.core.io.rest.RESTClient.Type;

import com.google.gson.Gson;
import com.thoughtworks.xstream.XStream;

/**
* Loads resource from XWiki pages using the REST API
*/
public class LoadFromXWiki extends LoadFromREST {

  private static final String XWIKI_URI = "{0}?media={1}";

  public LoadFromXWiki(Type type) {
    this(type, null, null);
  }

  public LoadFromXWiki(Type type, String username, String password) {
    super(type, username, password);
  }

  protected String uri(String resourcePath, Type type) {
    return format(XWIKI_URI, resourcePath, type.name().toLowerCase());
  }

  protected String text(String entity, Type type) {
    switch (type) {
    case JSON:
      Gson gson = new Gson();
      return gson.fromJson(entity, Page.class).content;
    case XML:
      XStream xstream = new XStream();
      xstream.alias("page", Page.class);
      xstream.ignoreUnknownElements();
      return ((Page) xstream.fromXML(entity)).content;
    default:
      return entity;
    }
  }

  private static class Page {
    String content;
  }
}
TOP

Related Classes of org.jbehave.core.io.rest.xwiki.LoadFromXWiki$Page

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.