| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- MWF.xDesktop.requireApp("Setting", "servers.DataServers", null, false);
- MWF.xApplication.Setting.servers = MWF.xApplication.Setting.servers || {};
- MWF.xApplication.Setting.servers.WebServers = new Class({
- Extends: MWF.xApplication.Setting.servers.DataServers,
- Implements: [Options, Events],
- initialize: function(explorer){
- this.explorer = explorer;
- this.app = this.explorer.app;
- this.actions = this.app.actions;
- this.css = this.app.css;
- this.servers = [];
- this.content = this.explorer.webServerContent;
- this.page = this.app.serverPage;
- this.load();
- },
- load: function(){
- this.actions.listWebServer(function(json){
- json.data.each(function(serverJson){
- this.servers.push(new MWF.xApplication.Setting.servers.WebServer(this, serverJson));
- }.bind(this));
- this.createAddAction();
- this.setServerAreaWidthFun = this.setServerAreaWidth.bind(this);
- this.addEvent("resize", this.setServerAreaWidthFun);
- this.addEvent("resize", function(){this.setWebServerAreaWidth();}.bind(this));
- }.bind(this));
- },
- createServer: function(){
- var server = {
- "list": this,
- "app": this.app,
- "json": {
- "contextList": [],
- "planList": []
- },
- "node": this.createServerAction,
- "name": "",
- "reload": function(){
- this.list.servers.push(new MWF.xApplication.Setting.servers.WebServer(this.list, this.json));
- }
- }
- var doc = new MWF.xApplication.Setting.servers.WebServer.Document(server);
- }
- });
- MWF.xApplication.Setting.servers.WebServer = new Class({
- Extends: MWF.xApplication.Setting.servers.DataServer,
- Implements: [Events],
- initialize: function(list, json){
- this.list = list
- this.app = this.list.app;
- this.json = json;
- this.container = this.list.content;
- this.css = this.app.css;
- this.name = this.json.name;
- this.load();
- },
- setServerText: function(){
- this.nameNode.set("text", (this.json.name || ""));
- this.hostNode.set("text", (this.json.host || "")+" : "+(this.json.port || ""));
- this.adminNode.set("text", (this.json.username || ""));
- this.messageNode.set("text", (this.json.message || ""));
- },
- open: function(){
- new MWF.xApplication.Setting.servers.WebServer.Document(this);
- },
- reload: function(){
- this.app.actions.getWebServer(this.json.name, function(json){
- this.name = this.json.name;
- this.json = json.data;
- this.nameNode.set("text", this.json.name);
- this.hostNode.set("text", this.json.host+" : "+this.json.port);
- this.adminNode.set("text", this.json.username);
- this.messageNode.set("text", this.json.message);
- }.bind(this));
- }
- });
- MWF.xApplication.Setting.servers.WebServer.Document = new Class({
- Extends: MWF.xApplication.Setting.servers.DataServer.Document,
- Implements: [Events],
- createBaseInfo: function(){
- this.inforAreaNode = new Element("div", {"styles": this.css.applicationServerDocumentInforAreaNode}).inject(this.node);
- this.inforNode = new Element("div", {"styles": this.css.dataServerDocumentInforNode}).inject(this.inforAreaNode);
- var html = "<table cellSpacing='8px' width='90%' align='center'>" +
- "<tr><td width='160px'>name</td><td><input value='"+(this.json.name || "")+"'/></td></tr>" +
- "<tr><td>order</td><td><input value='"+(this.json.order || "0")+"'/></td></tr>" +
- "<tr><td>host</td><td><input value='"+(this.json.host || "")+"'/></td></tr>" +
- "<tr><td>port</td><td><input value='"+(this.json.port || "")+"'/></td></tr>" +
- "<tr><td>username</td><td><input value='"+(this.json.username || "")+"'/></td></tr>" +
- "<tr><td>password</td><td><input type='password' value='"+(this.json.password || "")+"'/></td></tr>" +
- "<tr><td>proxyHost</td><td><input type='text' value='"+(this.json.proxyHost || "")+"'/></td></tr>" +
- "<tr><td>proxyPort</td><td><input type='text' value='"+(this.json.proxyPort || "")+"'/></td></tr>" +
- "</table>";
- this.inforNode.set("html", html);
- var tds = this.inforNode.getElements("td");
- var inputs = this.inforNode.getElements("input");
- tds.setStyles(this.css.applicationServerDocumentTdNode);
- inputs.setStyles(this.css.applicationServerDocumentInputNode);
- },
- saveDocument: function(){
- var inputs = this.inforNode.getElements("input");
- this.json.name = inputs[0].get("value");
- this.json.order = inputs[1].get("value");
- this.json.host = inputs[2].get("value");
- this.json.port = inputs[3].get("value");
- this.json.username = inputs[4].get("value");
- this.json.password = inputs[5].get("value");
- this.json.proxyHost = inputs[6].get("value");
- this.json.proxyPort = inputs[7].get("value");
- if (this.server.name){
- this.app.actions.updateWebServer(this.server.name, this.json, function(){
- this.closeDocument();
- this.server.reload();
- }.bind(this));
- }else{
- this.app.actions.addWebServer(this.json, function(){
- this.closeDocument();
- this.server.reload();
- }.bind(this));
- }
- },
- deleteDocument: function(e){
- var _self = this;
- this.app.confirm("warn", e, this.app.lp.deleteWebServer_title, this.app.lp.deleteWebServer, "350", "120", function(){
- _self.app.actions.removeWebServer(_self.server.name, function(){
- this.closeDocument();
- this.server.destroy();
- }.bind(_self));
- this.close();
- }, function(){
- this.close();
- });
- }
- });
|