1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Data;
|
---|
26 | using System.Drawing;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using System.Windows.Forms;
|
---|
30 | using HeuristicLab.Hive.Contracts.Interfaces;
|
---|
31 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
32 | using HeuristicLab.Hive.Contracts;
|
---|
33 | using System.Security.Cryptography;
|
---|
34 | using System.Net;
|
---|
35 |
|
---|
36 | namespace HeuristicLab.Hive.Server.ServerConsole {
|
---|
37 |
|
---|
38 | public partial class HiveServerConsole : Form {
|
---|
39 |
|
---|
40 | HiveServerManagementConsole information = null;
|
---|
41 |
|
---|
42 | public HiveServerConsole() {
|
---|
43 | InitializeComponent();
|
---|
44 | tbIp.Text = WcfSettings.GetActiveIP();
|
---|
45 | tbPort.Text = WcfSettings.GetDefaultPort().ToString();
|
---|
46 |
|
---|
47 | }
|
---|
48 |
|
---|
49 | private void tsmiExit_Click(object sender, EventArgs e) {
|
---|
50 | this.Close();
|
---|
51 | }
|
---|
52 |
|
---|
53 | /// <summary>
|
---|
54 | /// When login button is clicked, the ManagementConsole
|
---|
55 | /// will be opened
|
---|
56 | /// </summary>
|
---|
57 | /// <param name="sender"></param>
|
---|
58 | /// <param name="e"></param>
|
---|
59 | private void BtnLogin_Click(object sender, EventArgs e) {
|
---|
60 | string newIp = tbIp.Text;
|
---|
61 | newIp = newIp.Replace(" ", "");
|
---|
62 |
|
---|
63 | ServiceLocator.Address = newIp;
|
---|
64 | ServiceLocator.Port = this.tbPort.Text;
|
---|
65 |
|
---|
66 | if (IsValid()) {
|
---|
67 | this.Visible = false;
|
---|
68 | information = new HiveServerManagementConsole();
|
---|
69 | information.closeFormEvent += new closeForm(EnableForm);
|
---|
70 | information.Show();
|
---|
71 | }
|
---|
72 | }
|
---|
73 |
|
---|
74 | /// <summary>
|
---|
75 | /// if the input is correct and the login-method returns a
|
---|
76 | /// valid response
|
---|
77 | /// </summary>
|
---|
78 | /// <returns></returns>
|
---|
79 | private bool IsValid() {
|
---|
80 | if ((tbUserName.Text != "") &&
|
---|
81 | (tbPwd.Text != "") &&
|
---|
82 | (tbIp.Text != "") &&
|
---|
83 | (tbPort.Text != "")) {
|
---|
84 | try {
|
---|
85 | IPAddress ipAdress;
|
---|
86 | int port;
|
---|
87 | if ((IPAddress.TryParse(tbIp.Text, out ipAdress)) &&
|
---|
88 | int.TryParse(tbPort.Text, out port)) {
|
---|
89 | IServerConsoleFacade scf = ServiceLocator.GetServerConsoleFacade();
|
---|
90 | Response resp = scf.Login(tbUserName.Text, tbPwd.Text);
|
---|
91 | string str = resp.StatusMessage;
|
---|
92 | } else {
|
---|
93 | lblError.Text = "IP or Port not valid";
|
---|
94 | }
|
---|
95 | }
|
---|
96 | catch (Exception ex) {
|
---|
97 | lblError.Text = "Server not online";
|
---|
98 | return false;
|
---|
99 | }
|
---|
100 | return true;
|
---|
101 | } else {
|
---|
102 | if (tbUserName.Text == "") {
|
---|
103 | lblError.Text = "Please type in Username";
|
---|
104 | } else if (tbPwd.Text == "") {
|
---|
105 | lblError.Text = "Please type in Password";
|
---|
106 | } else if (tbPort.Text == "") {
|
---|
107 | lblError.Text = "Please type in Port";
|
---|
108 | } else if (tbIp.Text == "") {
|
---|
109 | lblError.Text = "Please type in IP-Adress";
|
---|
110 | }
|
---|
111 | return false;
|
---|
112 | }
|
---|
113 | }
|
---|
114 |
|
---|
115 | private void EnableForm(bool cf, bool error) {
|
---|
116 | if (cf) {
|
---|
117 | this.Visible = true;
|
---|
118 | if (error == true) {
|
---|
119 | lblError.Text = "Something went wrong with the server";
|
---|
120 | }
|
---|
121 | }
|
---|
122 | }
|
---|
123 |
|
---|
124 | private void HiveServerConsole_KeyPress(object sender, KeyPressEventArgs e) {
|
---|
125 | if (e.KeyChar == (char)Keys.Return) {
|
---|
126 | BtnLogin_Click(sender, e);
|
---|
127 | }
|
---|
128 | }
|
---|
129 | }
|
---|
130 | } |
---|