Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.cs @ 956

Last change on this file since 956 was 956, checked in by aleitner, 15 years ago

Added new Form for Add Job or Add User - Tests with new interfaces in Server (#380)

File size: 3.4 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Data;
26using System.Drawing;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using HeuristicLab.Hive.Contracts.Interfaces;
31using HeuristicLab.Hive.Contracts.BusinessObjects;
32using HeuristicLab.Hive.Contracts;
33using System.Security.Cryptography;
34
35namespace HeuristicLab.Hive.Server.Console {
36
37  public partial class HiveServerConsole : Form {
38
39    HiveServerManagementConsole information = null;
40
41    public HiveServerConsole() {
42      InitializeComponent();
43      tbUserName.Text = "Anita";
44      tbPwd.Text = "Anita";
45      tbIp.Text = "10.20.53.1";
46      tbPort.Text = "9000";
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
75    private bool isValid() {
76      if ((tbUserName.Text != "") &&
77          (tbPwd.Text != "") &&
78          (tbIp.Text != "") &&
79          (tbPort.Text != "")) {
80        try {
81          IJobManager jobManager =
82        ServiceLocator.GetJobManager();
83          ResponseList<Job> jobs = jobManager.GetAllJobs();
84          jobs = jobManager.GetAllJobs();
85        }
86        catch (Exception ex) {
87          lblError.Text = "Server not online";
88          return false;
89        }
90        return true;
91      } else {
92        if (tbUserName.Text == "") {
93          lblError.Text = "Please type in Username";
94        } else if (tbPwd.Text == "") {
95          lblError.Text = "Please type in Password";
96        } else if (tbPort.Text == "") {
97          lblError.Text = "Please type in Port";
98        }
99        return false;
100      }
101    }
102
103    private void enableForm(bool cf) {
104      if (cf) {
105        this.Visible = true;
106      }
107    }
108
109    string md5sum(byte[] FileOrText) { //Output: String<-> Input: Byte[]
110       return BitConverter.ToString(new
111          MD5CryptoServiceProvider().ComputeHash(FileOrText)).Replace("-", "").ToLower();
112    }
113
114  }
115}
Note: See TracBrowser for help on using the repository browser.