Package net.sf.chellow.physical

Source Code of net.sf.chellow.physical.Sites

/*******************************************************************************
*
*  Copyright (c) 2005, 2013 Wessex Water Services Limited
*  This file is part of Chellow.
*
*  Chellow 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.
*
*  Chellow 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 Chellow.  If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/

package net.sf.chellow.physical;

import java.net.URI;

import net.sf.chellow.monad.Hiber;
import net.sf.chellow.monad.HttpException;
import net.sf.chellow.monad.Invocation;
import net.sf.chellow.monad.MonadUtils;
import net.sf.chellow.monad.NotFoundException;
import net.sf.chellow.monad.UserException;
import net.sf.chellow.monad.types.MonadUri;
import net.sf.chellow.monad.types.UriPathElement;
import net.sf.chellow.ui.Chellow;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

public class Sites extends EntityList {
  // public static final SiteNameDataSource DEFAULT_SOURCE = new
  // DefaultSiteName();
  public static final UriPathElement URI_ID;
  // public static final Map<Long, SiteNameDataSource> sources = new
  // HashMap<Long, SiteNameDataSource>();
  static {
    try {
      URI_ID = new UriPathElement("sites");
    } catch (HttpException e) {
      throw new RuntimeException(e);
    }
  }

  static public Site getSite(Long id) throws HttpException {
    Site site = (Site) Hiber.session().get(Site.class, id);
    if (site == null) {
      throw new UserException("There is no site with " + "that id.");
    }
    return site;
  }

  public Sites() {
  }

  public MonadUri getEditUri() throws HttpException {
    return Chellow.ROOT_URI.resolve(getUriId()).append("/");
  }

  public void httpPost(Invocation inv) throws HttpException {
    Hiber.setReadWrite();
    Document doc = MonadUtils.newSourceDocument();
    String code = inv.getString("code");
    String name = inv.getString("name");
    if (!inv.isValid()) {
      throw new UserException(doc, null);
    }
    Site site = Site.insertSite(code, name);
    Hiber.commit();
    inv.sendSeeOther(site.getEditUri());
  }

  public void httpGet(Invocation inv) throws HttpException {
    inv.sendOk();
  }

  public UriPathElement getUriId() {
    return URI_ID;
  }

  public Site getChild(UriPathElement uriId) throws HttpException {
    Site site = (Site) Hiber.session()
        .createQuery("from Site site where id = :siteId")
        .setLong("siteId", Long.parseLong(uriId.getString()))
        .uniqueResult();
    if (site == null) {
      throw new NotFoundException();
    }
    return site;
  }

  /*
   * public Site getSite(String code) throws HttpException, InternalException
   * { Site site = (Site) Hiber .session() .createQuery( "from Site site where
   * site.organization = :organization and site.code.string = :siteCode")
   * .setEntity("organization", organization).setString("siteCode",
   * code.getString()).uniqueResult(); if (site == null) { throw new
   * NotFoundException(); } return site; }
   */
  /*
   * public SiteNameDataSource getSiteNameDataSource() throws
   * ProgrammerException, UserException { // find properties file if
   * (ChellowProperties.propertiesExists(getUri().append("names/"),
   * "names.properties")) { ChellowProperties props = new
   * ChellowProperties(getUri().append("names/"), "names.properties"); long
   * propsLastModified = props.getLastModified(); SiteNameDataSource source =
   * sources.get(organization.getId()); if (source == null ||
   * source.getValidFrom() < propsLastModified) {
   * sources.put(organization.getId(), new CSVSiteName(organization.getId(),
   * propsLastModified)); } } SiteNameDataSource source =
   * sources.get(organization.getId()); if (source == null) { source =
   * DEFAULT_SOURCE; } return source; }
   */
  public Element toXml(Document doc) throws HttpException {
    Element element = doc.createElement("sites");
    return element;
  }

  @Override
  public URI getViewUri() throws HttpException {
    // TODO Auto-generated method stub
    return null;
  }
}
TOP

Related Classes of net.sf.chellow.physical.Sites

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.