nosi.webapps.igrp.pages.gestaodeacesso.GestaodeacessoController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of igrp-core Show documentation
Show all versions of igrp-core Show documentation
IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.
package nosi.webapps.igrp.pages.gestaodeacesso;
import java.io.IOException;
/* Start-Code-Block (import) */
/* End-Code-Block */
/*----#start-code(packages_import)----*/
import org.json.JSONException;
import org.json.JSONObject;
import nosi.core.webapp.Controller;
import nosi.core.webapp.Core;
import nosi.core.webapp.Response;
import nosi.core.webapp.activit.rest.business.ProcessDefinitionIGRP;
import nosi.webapps.igrp.dao.Application;
import nosi.webapps.igrp.dao.Organization;
import java.util.List;
import java.util.ArrayList;
/*----#end-code----*/
public class GestaodeacessoController extends Controller {
public Response actionIndex() throws IOException, IllegalArgumentException, IllegalAccessException{
Gestaodeacesso model = new Gestaodeacesso();
model.load();
model.setAdicionar_organica("igrp","NovaOrganica","index");
model.setGestao_de_utilizadores("igrp","PesquisarUtilizador","index");
model.setGestao_de_menu("igrp","PesquisarMenu","index");
GestaodeacessoView view = new GestaodeacessoView();
view.estado.setParam(true);
view.id.setParam(true);
/*----#gen-example
EXAMPLES COPY/PASTE:
INFO: Core.query(null,... change 'null' to your db connection name, added in Application Builder.
model.loadOrg_table(Core.query(null,"SELECT '1' as estado,'Totam lorem amet unde mollit' as org_nome,'/IGRP/images/IGRP/IGRP2.3/app/igrp/dominio/Dominio.xml' as mostrar_perfis,'hidden-7521_6b78' as id "));
view.aplicacao.setQuery(Core.query(null,"SELECT 'id' as ID,'name' as NAME "));
----#gen-example */
/*----#start-code(index)----*/
//model.setDocumento_link(this.getConfig().getResolveUrl("tutorial","Listar_documentos","index&p_type=acesso"));
List data = new ArrayList<>();
// String ichange = Core.getParam("ichange");
view.id_app.setParam(true);
String dad = Core.getCurrentDad();
if (!"igrp".equalsIgnoreCase(dad) && !"igrp_studio".equalsIgnoreCase(dad)) {
model.setAplicacao("" + (Core.findApplicationByDad(dad)).getId());
view.aplicacao.propertie().add("disabled","true");
//setTable(model, data);
}
// if (Core.isHttpPost() && (ichange.equalsIgnoreCase("p_aplicacao") && Core.isNotNull(model.getAplicacao()))) {
// setTable(model, data);
//
// }
// view.btn_associar_etapa.setVisible(new ProcessDefinitionIGRP().hasBPMN(dad));
if(Core.isNotNull(model.getAplicacao())) {
Core.setAttribute("p_aplicacao",model.getAplicacao());
view.btn_associar_etapa.setVisible(new ProcessDefinitionIGRP().hasBPMN(Core.findApplicationById(Core.toInt(model.getAplicacao())).getDad()));
model.setId_app(Core.toInt(model.getAplicacao()));
model.getGestao_de_menu().addParam("p_id_app",Core.getParam("p_aplicacao")).addParam("p_aplicacao",Core.getParam("p_aplicacao"));
model.setAdicionar_organica("igrp", "NovaOrganica", "index").addParam("id_app",model.getAplicacao());
model.getGestao_de_utilizadores().addParam("p_aplicacao",model.getAplicacao());
setTable(model, data);
}
view.aplicacao.setValue(new Application().getListApps());
view.org_table.addData(data);
view.btn_eliminar.setVisible(false);
/*----#end-code----*/
view.setModel(model);
return this.renderView(view);
}
public Response actionEditar() throws IOException, IllegalArgumentException, IllegalAccessException{
Gestaodeacesso model = new Gestaodeacesso();
model.load();
/*----#gen-example
EXAMPLES COPY/PASTE:
INFO: Core.query(null,... change 'null' to your db connection name, added in Application Builder.
this.addQueryString("p_id","12"); //to send a query string in the URL
this.addQueryString("p_estado",Core.getParam("p_estado"));
this.addQueryString("p_id",Core.getParam("p_id"));
return this.forward("igrp","Dominio","index",this.queryString()); //if submit, loads the values
Use model.validate() to validate your model
----#gen-example */
/*----#start-code(editar)----*/
return this.forward("igrp", "NovaOrganica", "editar",this.queryString());
/*----#end-code----*/
}
public Response actionMenu() throws IOException, IllegalArgumentException, IllegalAccessException{
Gestaodeacesso model = new Gestaodeacesso();
model.load();
/*----#gen-example
EXAMPLES COPY/PASTE:
INFO: Core.query(null,... change 'null' to your db connection name, added in Application Builder.
this.addQueryString("p_id","12"); //to send a query string in the URL
this.addQueryString("p_estado",Core.getParam("p_estado"));
this.addQueryString("p_id",Core.getParam("p_id"));
return this.forward("igrp","Dominio","index",this.queryString()); //if submit, loads the values
Use model.validate() to validate your model
----#gen-example */
/*----#start-code(menu)----*/
Organization org = new Organization().findOne(Core.getParamInt("p_id"));
this.addQueryString("p_type","org");
if (org != null){
this.addQueryString("env_fk",org.getApplication().getId());
}
this.loadQueryString();
return this.redirect("igrp", "MenuOrganica","index",this.queryString());
/*----#end-code----*/
}
public Response actionTransacti_org() throws IOException, IllegalArgumentException, IllegalAccessException{
Gestaodeacesso model = new Gestaodeacesso();
model.load();
/*----#gen-example
EXAMPLES COPY/PASTE:
INFO: Core.query(null,... change 'null' to your db connection name, added in Application Builder.
this.addQueryString("p_id","12"); //to send a query string in the URL
this.addQueryString("p_estado",Core.getParam("p_estado"));
this.addQueryString("p_id",Core.getParam("p_id"));
return this.forward("igrp","TransacaoOrganica","index",this.queryString()); //if submit, loads the values
Use model.validate() to validate your model
----#gen-example */
/*----#start-code(transacti_org)----*/
//don't need to add p_id because its declared view.id.setParam(true);
this.addQueryString("p_type","org");
return this.forward("igrp","TransacaoOrganica","index", this.queryString()); //if submit, loads the values
/*----#end-code----*/
}
public Response actionEliminar() throws IOException, IllegalArgumentException, IllegalAccessException{
Gestaodeacesso model = new Gestaodeacesso();
model.load();
/*----#gen-example
EXAMPLES COPY/PASTE:
INFO: Core.query(null,... change 'null' to your db connection name, added in Application Builder.
this.addQueryString("p_id","12"); //to send a query string in the URL
this.addQueryString("p_estado",Core.getParam("p_estado"));
this.addQueryString("p_id",Core.getParam("p_id"));
return this.forward("igrp","Gestaodeacesso","index",this.queryString()); //if submit, loads the values
Use model.validate() to validate your model
----#gen-example */
/*----#start-code(eliminar)----*/
int p_id = Core.getParamInt("p_id");
if (p_id != 0) {
if (new Organization().delete(p_id)) {
Core.setMessageSuccess();
}else
Core.setMessageError();
}else
Core.setMessageError();
return this.forward("igrp","Gestaodeacesso","index", this.queryString()); //if submit, loads the values ----#gen-example */
/*----#end-code----*/
}
public Response actionAssociar_etapa() throws IOException, IllegalArgumentException, IllegalAccessException{
Gestaodeacesso model = new Gestaodeacesso();
model.load();
/*----#gen-example
EXAMPLES COPY/PASTE:
INFO: Core.query(null,... change 'null' to your db connection name, added in Application Builder.
this.addQueryString("p_id","12"); //to send a query string in the URL
this.addQueryString("p_estado",Core.getParam("p_estado"));
this.addQueryString("p_id",Core.getParam("p_id"));
return this.forward("igrp","Gestaodeacesso","index",this.queryString()); //if submit, loads the values
Use model.validate() to validate your model
----#gen-example */
/*----#start-code(associar_etapa)----*/
this.loadQueryString().addQueryString("type", "org");
return this.redirect("igrp","Etapaaccess","index", this.queryString());
/*----#end-code----*/
}
/*----#start-code(custom_actions)----*/
private void setTable(Gestaodeacesso model, List data) {
for (Organization org : new Organization().find()
.andWhere("application", "=", Core.toInt(model.getAplicacao())).all()) {
Gestaodeacesso.Org_table table = new Gestaodeacesso.Org_table();
table.setId("" + org.getId());
table.setOrg_nome(org.getName()+(org.getOrganization()!=null?" (Organização Pai: "+org.getOrganization().getName()+")":""));
table.setEstado(org.getStatus());
table.setEstado_check(org.getStatus()== 1 ? org.getStatus() : -1);
table.setMostrar_perfis("igrp", "PesquisarPerfil","index&p_id_app=" + org.getApplication().getId() + "&p_id_org=" + org.getId());
table.setMostrar_perfis_desc(Core.gt("Mostrar Perfil"));
data.add(table);
}
}
public Response actionChangeStatus() throws IOException, IllegalArgumentException, IllegalAccessException, JSONException {
this.format = Response.FORMAT_JSON;
int id = Core.getParamInt("p_id");
int status = Core.getParamInt("p_estado");
boolean response = false;
if (id != 0) {
Organization org = new Organization().findOne(id);
if (org != null) {
org.setStatus(status);
if (org.update() != null)
response = true;
}
}
JSONObject json = new JSONObject();
json.put("status", response);
return this.renderView(json.toString());
}
/*----#end-code----*/
}