Update model to look like database, add method to query server list

This commit is contained in:
oupson 2023-02-27 18:53:26 +01:00
parent a04bb393a4
commit 9a145dd94e
Signed by: oupson
GPG Key ID: 3BD88615552EFCB7
4 changed files with 63 additions and 45 deletions

View File

@ -20,16 +20,16 @@
namespace Footerm.Model { namespace Footerm.Model {
public class Server { public class Server {
public string name;
public string hostname; public string hostname;
public ushort port; public ushort port;
public string username; public string username;
public string password;
public Server(string hostname, ushort port, string username, string password) { public Server(string name, string hostname, ushort port, string username) {
this.name = name;
this.hostname = hostname; this.hostname = hostname;
this.port = port; this.port = port;
this.username = username; this.username = username;
this.password = password;
} }
} }
} }

View File

@ -19,7 +19,7 @@
*/ */
namespace Footerm { namespace Footerm {
[GtkTemplate (ui = "/fr/oupson/FooTerm/newserver.ui")] [GtkTemplate(ui = "/fr/oupson/FooTerm/newserver.ui")]
public class NewServer : Gtk.Box { public class NewServer : Gtk.Box {
public signal void on_new_server(Footerm.Model.Server server); public signal void on_new_server(Footerm.Model.Server server);
@ -39,7 +39,7 @@ namespace Footerm {
private unowned Gtk.Button add_server_button; private unowned Gtk.Button add_server_button;
construct { construct {
add_server_button.clicked.connect (this.on_add_button_clicked); add_server_button.clicked.connect(this.on_add_button_clicked);
} }
private void on_add_button_clicked() { private void on_add_button_clicked() {
@ -52,7 +52,7 @@ namespace Footerm {
// Port is invalid // Port is invalid
} }
this.on_new_server(new Footerm.Model.Server(hostname, (ushort)port, username, password)); // this.on_new_server(new Footerm.Model.Server(hostname, (ushort)port, username, password));
} }
} }
} }

View File

@ -107,5 +107,22 @@ namespace Footerm.Services {
return true; return true;
} }
public List<Footerm.Model.Server> get_server_list() throws ConfigError {
List<Footerm.Model.Server> list = new List<Footerm.Model.Server> ();
var stm_str = "SELECT (serverId, serverName, serverHostName, serverPort) FROM SERVER";
Sqlite.Statement stm;
var ec = this.db.prepare_v2(stm_str, stm_str.length, out stm);
if (ec != Sqlite.OK) {
throw new ConfigError.DATABASE(@"Can't fetch server list: $(db.errcode ()): $(db.errmsg ())");
}
while (stm.step() == Sqlite.ROW) {
list.append(new Footerm.Model.Server(stm.column_text(0), stm.column_text(1), (ushort) stm.column_int(2), stm.column_text(3)));
}
return list;
}
} }
} }

View File

@ -19,7 +19,7 @@
*/ */
namespace Footerm { namespace Footerm {
[GtkTemplate (ui = "/fr/oupson/FooTerm/terminalpane.ui")] [GtkTemplate(ui = "/fr/oupson/FooTerm/terminalpane.ui")]
public class TerminalPane : Gtk.Box { public class TerminalPane : Gtk.Box {
[GtkChild] [GtkChild]
private unowned Vte.Terminal terminal; private unowned Vte.Terminal terminal;
@ -33,7 +33,7 @@ namespace Footerm {
public TerminalPane(Footerm.Model.Server server) { public TerminalPane(Footerm.Model.Server server) {
this.server = server; this.server = server;
this.terminal.set_enable_sixel (true); this.terminal.set_enable_sixel(true);
this.connect_to_server(); this.connect_to_server();
this.terminal.char_size_changed.connect(() => { this.terminal.char_size_changed.connect(() => {
int rows = 0; int rows = 0;
@ -54,12 +54,12 @@ namespace Footerm {
private void connect_to_server() throws GLib.IOError, GLib.Error { private void connect_to_server() throws GLib.IOError, GLib.Error {
var addrs = new NetworkAddress(this.server.hostname, this.server.port); var addrs = new NetworkAddress(this.server.hostname, this.server.port);
var addr = addrs.enumerate().next(); var addr = addrs.enumerate().next();
this.socket = new Socket (addr.get_family(), SocketType.STREAM, SocketProtocol.TCP); this.socket = new Socket(addr.get_family(), SocketType.STREAM, SocketProtocol.TCP);
socket.connect(addr, null); socket.connect(addr, null);
var sock = socket.get_fd(); // TODO var sock = socket.get_fd(); // TODO
this.session = SSH2.Session.create<bool>(); this.session = SSH2.Session.create<bool> ();
if (session.handshake(sock) != SSH2.Error.NONE) { if (session.handshake(sock) != SSH2.Error.NONE) {
stderr.printf("Failure establishing SSH session\n"); stderr.printf("Failure establishing SSH session\n");
return; return;
@ -67,14 +67,15 @@ namespace Footerm {
var fingerprint = session.get_host_key_hash(SSH2.HashType.SHA1); var fingerprint = session.get_host_key_hash(SSH2.HashType.SHA1);
stdout.printf("Fingerprint: "); stdout.printf("Fingerprint: ");
for(var i = 0; i < 20; i++) { for (var i = 0; i < 20; i++) {
stdout.printf("%02X ", fingerprint[i]); stdout.printf("%02X ", fingerprint[i]);
} }
stdout.printf("\n"); stdout.printf("\n");
if (session.auth_password(this.server.username, this.server.password) != SSH2.Error.NONE) { // TODO QUERY PASSWORD FROM libsecret
if (session.auth_password(this.server.username, null) != SSH2.Error.NONE) {
stdout.printf("\tAuthentication by password failed!\n"); stdout.printf("\tAuthentication by password failed!\n");
session.disconnect( "Normal Shutdown, Thank you for playing"); session.disconnect("Normal Shutdown, Thank you for playing");
session = null; session = null;
Posix.close(sock); Posix.close(sock);
return; return;
@ -88,48 +89,48 @@ namespace Footerm {
} else { } else {
if (channel.request_pty("xterm-256color".data) != SSH2.Error.NONE) { if (channel.request_pty("xterm-256color".data) != SSH2.Error.NONE) {
stderr.printf("Failed requesting pty\n"); stderr.printf("Failed requesting pty\n");
session.disconnect( "Normal Shutdown, Thank you for playing"); session.disconnect("Normal Shutdown, Thank you for playing");
session = null; session = null;
Posix.close(sock); Posix.close(sock);
} }
channel.set_env ("TERM", "xterm-256color"); channel.set_env("TERM", "xterm-256color");
if (channel.start_shell() != SSH2.Error.NONE) { if (channel.start_shell() != SSH2.Error.NONE) {
stderr.printf("Unable to request shell on allocated pty\n"); stderr.printf("Unable to request shell on allocated pty\n");
session.disconnect( "Normal Shutdown, Thank you for playing"); session.disconnect("Normal Shutdown, Thank you for playing");
session = null; session = null;
Posix.close(sock); Posix.close(sock);
} }
var master_pty = Posix.posix_openpt(Posix.O_RDWR); var master_pty = Posix.posix_openpt(Posix.O_RDWR);
if (master_pty == -1) { if (master_pty == -1) {
throw GLib.IOError.from_errno (Posix.errno); throw GLib.IOError.from_errno(Posix.errno);
} }
var settings = Posix.termios(); var settings = Posix.termios();
Posix.cfmakeraw (ref settings); Posix.cfmakeraw(ref settings);
if (Posix.tcsetattr (master_pty, Posix.TCSANOW, settings) == -1) { if (Posix.tcsetattr(master_pty, Posix.TCSANOW, settings) == -1) {
throw GLib.IOError.from_errno (Posix.errno); throw GLib.IOError.from_errno(Posix.errno);
} }
if (Posix.grantpt(master_pty) == -1) { if (Posix.grantpt(master_pty) == -1) {
throw GLib.IOError.from_errno (Posix.errno); throw GLib.IOError.from_errno(Posix.errno);
} }
if (Posix.unlockpt(master_pty) == -1) { if (Posix.unlockpt(master_pty) == -1) {
throw GLib.IOError.from_errno (Posix.errno); throw GLib.IOError.from_errno(Posix.errno);
} }
var pts_name = Posix.ptsname(master_pty); var pts_name = Posix.ptsname(master_pty);
if (pts_name == null) { if (pts_name == null) {
throw GLib.IOError.from_errno (Posix.errno); throw GLib.IOError.from_errno(Posix.errno);
} }
this.slave_pty = Posix.open(pts_name, Posix.O_RDWR); this.slave_pty = Posix.open(pts_name, Posix.O_RDWR);
if (this.slave_pty < 0) { if (this.slave_pty < 0) {
throw GLib.IOError.from_errno (Posix.errno); throw GLib.IOError.from_errno(Posix.errno);
} }
var vte_pty = new Vte.Pty.foreign_sync(master_pty, null); var vte_pty = new Vte.Pty.foreign_sync(master_pty, null);
@ -138,22 +139,22 @@ namespace Footerm {
session.blocking = false; session.blocking = false;
var sock_channel = new GLib.IOChannel.unix_new(sock); var sock_channel = new GLib.IOChannel.unix_new(sock);
sock_channel.set_encoding (null); sock_channel.set_encoding(null);
sock_channel.set_buffered (false); sock_channel.set_buffered(false);
sock_channel.set_close_on_unref (false); sock_channel.set_close_on_unref(false);
var slave_channel = new GLib.IOChannel.unix_new(slave_pty); var slave_channel = new GLib.IOChannel.unix_new(slave_pty);
slave_channel.set_encoding (null); slave_channel.set_encoding(null);
slave_channel.set_buffered (false); slave_channel.set_buffered(false);
sock_channel.add_watch (GLib.IOCondition.IN, this.on_ssh_event); sock_channel.add_watch(GLib.IOCondition.IN, this.on_ssh_event);
slave_channel.add_watch (GLib.IOCondition.IN, this.on_slave_event); slave_channel.add_watch(GLib.IOCondition.IN, this.on_slave_event);
} }
} }
private bool on_ssh_event(GLib.IOChannel source, GLib.IOCondition condition) { private bool on_ssh_event(GLib.IOChannel source, GLib.IOCondition condition) {
if (condition == IOCondition.HUP) { if (condition == IOCondition.HUP) {
print ("The connection has been broken.\n"); print("The connection has been broken.\n");
return false; return false;
} }
@ -171,10 +172,10 @@ namespace Footerm {
warning("Channel is closed"); warning("Channel is closed");
return false; return false;
} }
} while(size != SSH2.Error.AGAIN); } while (size != SSH2.Error.AGAIN);
return true; return true;
} catch(Error e) { } catch (Error e) {
GLib.warning("Failed to read from ssh : %s", e.message); GLib.warning("Failed to read from ssh : %s", e.message);
return false; return false;
} }
@ -182,7 +183,7 @@ namespace Footerm {
private bool on_slave_event(GLib.IOChannel source, GLib.IOCondition condition) { private bool on_slave_event(GLib.IOChannel source, GLib.IOCondition condition) {
if (condition == IOCondition.HUP) { if (condition == IOCondition.HUP) {
print ("The connection has been broken.\n"); print("The connection has been broken.\n");
return false; return false;
} }
@ -191,7 +192,7 @@ namespace Footerm {
size_t size = 0; size_t size = 0;
source.read_chars(buffer, out size); source.read_chars(buffer, out size);
var res = this.channel.write ((uint8[])buffer[0:size]); var res = this.channel.write((uint8[]) buffer[0 : size]);
if (res < 0) { if (res < 0) {
warning("Channel write failed with %zu", res); warning("Channel write failed with %zu", res);
} }