/*
* Licensed to the jNode FTN Platform Develpoment Team (jNode Team)
* under one or more contributor license agreements.
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
* The jNode Team licenses this file to you 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 org.jnode.httpd.routes.post;
import jnode.dto.Echoarea;
import jnode.dto.Filearea;
import jnode.ftn.FtnTools;
import jnode.orm.ORMManager;
import spark.Request;
import spark.Response;
import spark.Route;
public class FileareaRoute extends Route {
public FileareaRoute() {
super("/secure/filearea");
}
@Override
public Object handle(Request req, Response resp) {
String id = req.queryParams("id");
String name = req.queryParams("name");
String descr = req.queryParams("descr");
String rl = req.queryParams("rl");
String wl = req.queryParams("wl");
String gr = req.queryParams("gr");
String code = null;
String delete = req.queryParams("did");
if (delete != null) {
try {
Long eid = Long.valueOf(delete);
Filearea deleteArea = ORMManager.get(Filearea.class).getById(
eid);
if (deleteArea != null) {
FtnTools.delete(deleteArea);
}
} catch (RuntimeException e) {
code = "ERROR";
}
} else {
try {
Filearea ea;
if (!name.matches("^[-a-zA-Z0-9_\\.]+$")) {
code = "ENAME";
} else {
if (id == null || "0".equals(id)) {
ea = new Filearea();
ea.setName(name);
} else {
Long eid = Long.valueOf(id);
ea = ORMManager.get(Filearea.class).getById(eid);
}
ea.setDescription(descr);
ea.setReadlevel(Long.valueOf(rl));
ea.setWritelevel(Long.valueOf(wl));
ea.setGroup(gr);
synchronized (Echoarea.class) {
if (ea.getId() == null
&& ORMManager.get(Filearea.class).getFirstAnd(
"name", "=", ea.getName()) != null) {
code = "EXISTS";
} else {
ORMManager.get(Filearea.class).saveOrUpdate(ea);
}
}
}
} catch (RuntimeException e) {
code = "INVALID";
}
}
resp.header("Location", "/secure/fechoes.html"
+ ((code != null) ? "?code=" + code : ""));
halt(302);
return null;
}
}