Package com.antonytrupe.shared

Source Code of com.antonytrupe.shared.Page

/*
* Copyright 2010 Google Inc.
*
* 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.antonytrupe.shared;

import java.io.Serializable;
import java.util.Date;

import com.google.gwt.http.client.URL;
import com.google.gwt.regexp.shared.MatchResult;
import com.google.gwt.regexp.shared.RegExp;

@SuppressWarnings("serial")
public class Page implements Serializable {

  public static final String DATE = "date";
  public static final String REMOTE_IP = "remoteIP";
  public static final String CONTENT = "content";
  public static final String NAME = "name";
  public static final String PAGE = "Page";
  public static final String PAGEHISTORY = PAGE + "History";
  public static final String DIFF = "diff";
  public static final String UPDATE = "update";
  // public static final String STYLE = "style";
  public static final String USER = "user";

  public static String parseClientContent(String content) {
    RegExp p = RegExp.compile("\\[{2}((?:.)*?)\\]{2}", "g");
    MatchResult m;
    StringBuffer sb = new StringBuffer();
    int beginIndex = 0;
    while ((m = p.exec(content)) != null) {
      String one = m.getGroup(1);
      String[] split = one.split("\\|");
      int endIndex = m.getIndex();

      sb.append(content.substring(beginIndex, endIndex));

      sb.append("<a href=\"/#!p:" + URL.encodeQueryString(split[0])
          + "\">" + (split.length > 1 ? split[1] : split[0]) + "</a>");

      beginIndex = p.getLastIndex();
    }

    sb.append(content.substring(beginIndex));

    return sb.toString();
  }

  private String name;
  private String content = "";
  // private String style = "";
  private Date date;
  private Boolean update = false;
  private String remoteIp;
  private String diff;

  private String user;

  public Page() {
  }

  public Page(String name) {
    this.setName(name);
  }

  public Page(String name, String content) {
    this(name);
    this.content = content;
  }

  public Page(String name, String content, Boolean update) {
    this(name, content);
    this.setUpdate(update);
  }

  public Page(String name, String content, Date date, String remoteIP) {
    this(name, content);
    this.date = date;
    this.remoteIp = remoteIP;
  }

  public String getContent() {
    return this.content;
  }

  public Date getDate() {
    return this.date;
  }

  public String getDiff() {
    return this.diff;
  }

  public String getIpAddress() {

    return this.remoteIp;
  }

  public String getName() {
    return this.name;
  }

  public String getUser() {
    return this.user;
  }

  public Boolean isUpdate() {
    return this.update;
  }

  public void setDiff(String diff) {
    this.diff = diff;
  }

  public void setName(String name) {
    this.name = name;
  }

  public void setUpdate(Boolean update) {
    this.update = update;
  }

  public void setUser(String user) {
    this.user = user;
  }
}
TOP

Related Classes of com.antonytrupe.shared.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.