matrix-glib-sdk/src/test-client.c

203 lines
6.1 KiB
C
Raw Normal View History

2015-12-14 15:29:22 +00:00
/*
* This file is part of matrix-glib-sdk
*
* matrix-glib-sdk is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* matrix-glib-sdk is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with matrix-glib-sdk. If not, see
* <http://www.gnu.org/licenses/>.
*/
2016-01-12 20:14:20 +00:00
#include <glib/gprintf.h>
2015-12-14 15:29:22 +00:00
#include <json-glib/json-glib.h>
2016-01-15 11:45:32 +00:00
#include <libsoup/soup.h>
2015-12-14 15:29:22 +00:00
#include "matrix-http-api.h"
#define LOG_DOMAIN "Matrix-Test-Client"
static gchar *user;
static gchar *password;
static gboolean no_validate_certs = FALSE;
2016-01-12 21:07:33 +00:00
static gchar **homeserver = NULL;
2015-12-14 15:29:22 +00:00
static GOptionEntry entries[] = {
{"user", 'u', 0, G_OPTION_ARG_STRING, &user},
{"password", 'p', 0, G_OPTION_ARG_STRING, &password},
{"no-validate-certs", 'n', 0, G_OPTION_ARG_NONE, &no_validate_certs},
2016-01-12 21:07:33 +00:00
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &homeserver, "The homeserver to connect to", "homeserver"},
2015-12-14 15:29:22 +00:00
};
2016-01-12 16:10:02 +00:00
static void
initial_sync_finished(MatrixAPI *api,
JsonNode *content,
gpointer data,
GError *err)
{
g_printf("initialSync finished\n");
matrix_api_event_stream(MATRIX_API(api), NULL, NULL, NULL, 0, NULL);
}
2015-12-15 12:31:08 +00:00
static void
create_room_finished(MatrixAPI *api,
JsonNode *content,
gpointer data,
GError *err)
{
if (err) {
g_debug("Error: %s", err->message);
2016-01-11 15:28:58 +00:00
} else {
g_printf("Room registered\n");
}
2016-01-12 15:39:31 +00:00
2016-01-13 09:02:00 +00:00
matrix_api_join_room(api, NULL, NULL, "#matrix-glib-sdk-test:elxa4y5sd12", NULL);
matrix_api_list_public_rooms(api, NULL, NULL, NULL);
2015-12-15 12:31:08 +00:00
}
2016-01-15 11:45:32 +00:00
static void
get_user_presence_finished(MatrixAPI *api,
JsonNode *json_content,
gpointer data,
GError *err)
{
JsonObject *root_obj;
const gchar *avatar_url;
SoupURI *avatar_uri;
root_obj = json_node_get_object(json_content);
avatar_url = json_object_get_string_member(root_obj, "avatar_url");
g_info("Avatar URL: %s", avatar_url);
avatar_uri = soup_uri_new(avatar_url);
g_info("Scheme: %s; authority: %s; path: %s",
soup_uri_get_scheme(avatar_uri),
soup_uri_get_host(avatar_uri),
soup_uri_get_path(avatar_uri));
matrix_api_media_download(api,
NULL, NULL,
soup_uri_get_host(avatar_uri),
soup_uri_get_path(avatar_uri) + 1,
NULL);
soup_uri_free(avatar_uri);
}
2015-12-14 15:29:22 +00:00
static void
login_finished(MatrixAPI *api, JsonNode *content, gpointer data, GError *err)
2015-12-14 15:29:22 +00:00
{
JsonPath *path = json_path_new();
JsonNode *result;
GMainLoop *loop = data;
if (err) {
g_printf("ERROR: %s\n", err->message);
g_main_loop_quit(loop);
return;
}
2015-12-14 15:29:22 +00:00
json_path_compile(path, "$.user_id", NULL);
if ((result = json_path_match(path, content)) != NULL) {
JsonArray *array = json_node_get_array(result);
const gchar *user_id;
if (json_array_get_length(array) != 1) {
g_printf("Result is not one long?\n");
}
2016-01-15 09:36:47 +00:00
user_id = matrix_api_get_user_id(MATRIX_API(api));
2015-12-14 15:29:22 +00:00
g_printf("Logged in as %s\n", user_id);
2015-12-15 12:31:08 +00:00
2016-01-13 09:02:00 +00:00
matrix_api_initial_sync(MATRIX_API(api),
initial_sync_finished,
data, 10, TRUE,
NULL);
2016-01-11 15:28:58 +00:00
matrix_api_create_room(api,
create_room_finished, NULL,
MATRIX_API_ROOM_PRESET_PUBLIC,
"GLib SDK test room", "matrix-glib-sdk-test",
"GLib SDK test room",
MATRIX_API_ROOM_VISIBILITY_DEFAULT,
NULL, NULL, NULL, NULL);
2016-01-15 09:37:10 +00:00
matrix_api_get_presence_list(api, NULL, NULL, user_id, NULL);
2016-01-15 11:45:32 +00:00
matrix_api_get_user_presence(api,
get_user_presence_finished, NULL,
user_id, NULL);
2015-12-14 15:29:22 +00:00
} else {
g_printf("Login unsuccessful!\n");
}
}
int
main(int argc, char *argv[])
{
MatrixHTTPAPI *api;
GHashTable *params;
GMainLoop *loop = g_main_loop_new(NULL, FALSE);
GOptionContext *opts;
GError *err = NULL;
JsonBuilder *builder;
JsonNode *login_content;
2015-12-14 15:29:22 +00:00
opts = g_option_context_new(NULL);
g_option_context_add_main_entries(opts, entries, NULL);
if (!g_option_context_parse(opts, &argc, &argv, &err)) {
g_printerr("Could not parse arguments: %s\n", err->message);
g_printerr("%s", g_option_context_get_help(opts, TRUE, NULL));
return 1;
}
if ((argc != 1) || !homeserver) {
2015-12-14 15:29:22 +00:00
g_printerr("%s", g_option_context_get_help(opts, TRUE, NULL));
return 1;
}
g_option_context_free(opts);
2016-01-12 21:07:33 +00:00
g_info("Starting up: %s with %s:%s", *homeserver, user, password);
2015-12-14 15:29:22 +00:00
2016-01-12 21:07:33 +00:00
api = matrix_http_api_new(*homeserver, NULL);
matrix_http_api_set_validate_certificate(api, !no_validate_certs);
builder = json_builder_new();
json_builder_begin_object(builder);
json_builder_set_member_name(builder, "user");
json_builder_add_string_value(builder, user);
json_builder_set_member_name(builder, "password");
json_builder_add_string_value(builder, password);
json_builder_end_object(builder);
login_content = json_builder_get_root(builder);
g_debug("Logging in");
matrix_api_login(MATRIX_API(api),
login_finished, loop,
"m.login.password",
login_content,
&err);
if (err) {
g_warning("Error: %s", err->message);
2016-01-12 20:14:20 +00:00
return 1;
}
2015-12-14 15:29:22 +00:00
g_info("Entering main loop");
g_main_loop_run(loop);
return 0;
}