2016-02-18 16:29:21 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
[CCode (cprefix = "Matrix", gir_namespace = "Matrix", gir_version = "0.0", lower_case_cprefix = "matrix_")]
|
|
|
|
namespace Matrix {
|
2017-11-02 07:29:46 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_ERROR_")]
|
|
|
|
public errordomain Error {
|
|
|
|
NONE,
|
|
|
|
COMMUNICATION_ERROR,
|
|
|
|
INCOMPLETE,
|
|
|
|
BAD_REQUEST,
|
|
|
|
BAD_RESPONSE,
|
|
|
|
INVALID_ROOM_ID,
|
|
|
|
UNKNOWN_VALUE,
|
|
|
|
INVALID_TYPE,
|
|
|
|
UNSUPPORTED,
|
|
|
|
INVALID_FORMAT,
|
|
|
|
UNAVAILABLE,
|
|
|
|
NOT_FOUND,
|
|
|
|
ALREADY_EXISTS,
|
|
|
|
M_MISSING_TOKEN,
|
|
|
|
M_FORBIDDEN,
|
|
|
|
M_UNKNOWN,
|
|
|
|
M_UNKNOWN_TOKEN,
|
|
|
|
M_NOT_JSON,
|
|
|
|
M_UNRECOGNIZED,
|
|
|
|
M_UNAUTHORIZED,
|
|
|
|
M_BAD_JSON,
|
|
|
|
M_USER_IN_USE,
|
|
|
|
M_ROOM_IN_USE,
|
|
|
|
M_BAD_PAGINATION,
|
|
|
|
M_BAD_STATE,
|
|
|
|
M_NOT_FOUND,
|
|
|
|
M_GUEST_ACCESS_FORBIDDEN,
|
|
|
|
M_LIMIT_EXCEEDED,
|
|
|
|
M_CAPTCHA_NEEDED,
|
|
|
|
M_CAPTCHA_INVALID,
|
|
|
|
M_MISSING_PARAM,
|
|
|
|
M_TOO_LARGE,
|
|
|
|
M_EXCLUSIVE,
|
|
|
|
M_THREEPID_AUTH_FAILED,
|
|
|
|
M_THREEPID_IN_USE,
|
|
|
|
M_INVALID_USERNAME,
|
|
|
|
UNSPECIFIED,
|
|
|
|
UNKNOWN_ERROR;
|
|
|
|
|
|
|
|
public static GLib.Quark quark ();
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:01:37 +00:00
|
|
|
public const int MATRIX_ERROR;
|
|
|
|
|
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_ACCOUNT_KIND_")]
|
|
|
|
public enum AccountKind {
|
|
|
|
DEFAULT,
|
|
|
|
USER,
|
|
|
|
GUEST;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:06:01 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_EVENT_DIRECTION_")]
|
|
|
|
public enum EventDirection {
|
|
|
|
FORWARD,
|
|
|
|
BACKWARD;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:30:04 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_EVENT_FORMAT_")]
|
|
|
|
public enum EventFormat {
|
|
|
|
DEFAULT,
|
|
|
|
CLIENT,
|
|
|
|
FEDERATION;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:36:06 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_PRESENCE_")]
|
|
|
|
public enum Presence {
|
|
|
|
UNKNOWN,
|
|
|
|
ONLINE,
|
|
|
|
OFFLINE,
|
|
|
|
UNAVAILABLE,
|
|
|
|
FREE_FOR_CHAT;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:43:31 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_PUSHER_CONDITION_KIND_")]
|
|
|
|
public enum PusherConditionKind {
|
|
|
|
EVENT_MATCH,
|
|
|
|
PROFILE_TAG,
|
|
|
|
CONTAINS_DISPLAY_NAME,
|
|
|
|
ROOM_MEMBER_COUNT;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:47:59 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_PUSHER_KIND_")]
|
|
|
|
public enum PusherKind {
|
|
|
|
OVERRIDE,
|
|
|
|
SENDER,
|
|
|
|
ROOM,
|
|
|
|
CONTENT,
|
|
|
|
UNDERRIDE;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:51:02 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_RECEIPT_TYPE_")]
|
|
|
|
public enum ReceiptType {
|
|
|
|
READ;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:54:22 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_RESIZE_METHOD_")]
|
|
|
|
public enum ResizeMethod {
|
|
|
|
DEFAULT,
|
|
|
|
CROP,
|
|
|
|
SCALE;
|
|
|
|
}
|
|
|
|
|
2017-11-02 08:59:24 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_ROOM_MEMBERSHIP_")]
|
|
|
|
public enum RoomMembership {
|
|
|
|
UNKNOWN,
|
|
|
|
INVITE,
|
|
|
|
JOIN,
|
|
|
|
LEAVE,
|
|
|
|
BAN,
|
|
|
|
KNOCK;
|
|
|
|
}
|
|
|
|
|
2017-11-02 09:06:18 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_ROOM_PRESET_")]
|
|
|
|
public enum RoomPreset {
|
|
|
|
NONE,
|
|
|
|
PRIVATE,
|
|
|
|
TRUSTED_PRIVATE,
|
|
|
|
PUBLIC;
|
|
|
|
}
|
|
|
|
|
2017-11-02 09:09:18 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_ROOM_VISIBILITY_")]
|
|
|
|
public enum RoomVisibility {
|
|
|
|
DEFAULT,
|
|
|
|
PUBLIC,
|
|
|
|
PRIVATE;
|
|
|
|
}
|
|
|
|
|
2017-11-02 09:13:09 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_JOIN_RULES_")]
|
|
|
|
public enum JoinRules {
|
|
|
|
UNKNOWN,
|
|
|
|
PUBLIC,
|
|
|
|
INVITE,
|
|
|
|
PRIVATE,
|
|
|
|
KNOCK;
|
|
|
|
}
|
|
|
|
|
2017-11-02 09:15:36 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_SEARCH_ORDER_")]
|
|
|
|
public enum SearchOrder {
|
|
|
|
RECENT,
|
|
|
|
RANK;
|
|
|
|
}
|
|
|
|
|
2017-11-02 09:18:46 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_SEARCH_KEY_")]
|
|
|
|
public enum SearchKey {
|
|
|
|
CONTENT_BODY,
|
|
|
|
CONTENT_NAME,
|
|
|
|
CONTENT_TOPIC;
|
|
|
|
}
|
|
|
|
|
2017-11-02 09:25:05 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_SEARCH_GROUP_BY_")]
|
|
|
|
public enum SearchGroupBy {
|
|
|
|
NONE,
|
|
|
|
ROOM_ID,
|
|
|
|
SENDER;
|
|
|
|
}
|
|
|
|
|
2017-11-02 10:35:01 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_HISTORY_VISIBILITY_")]
|
|
|
|
public enum HistoryVisibility {
|
|
|
|
UNKNOWN,
|
|
|
|
INVITED,
|
|
|
|
JOINED,
|
|
|
|
SHARED,
|
|
|
|
WORLD_READABLE;
|
|
|
|
}
|
|
|
|
|
2017-11-02 10:41:02 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_GUEST_ACCESS_")]
|
|
|
|
public enum GuestAccess {
|
|
|
|
UNKNOWN,
|
|
|
|
CAN_JOIN,
|
|
|
|
FORBIDDEN;
|
|
|
|
}
|
|
|
|
|
2017-11-02 11:17:00 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_CALL_OFFER_TYPE_")]
|
|
|
|
public enum CallOfferType {
|
|
|
|
UNKNOWN,
|
|
|
|
OFFER;
|
|
|
|
}
|
|
|
|
|
2017-11-02 11:24:48 +00:00
|
|
|
[CCode (cheader_filename = "matrix-enumtypes.h", cprefix = "MATRIX_CALL_ANSWER_TYPE_")]
|
|
|
|
public enum CallAnswerType {
|
|
|
|
UNKNOWN,
|
|
|
|
ANSWER;
|
|
|
|
}
|
|
|
|
|
2017-11-03 12:32:38 +00:00
|
|
|
[CCode (cheader_filename = "matrix-types.h")]
|
2017-11-03 12:29:50 +00:00
|
|
|
public struct FileInfo {
|
|
|
|
public void set_size(ssize size);
|
|
|
|
public ssize get_size();
|
|
|
|
|
|
|
|
public void set_mimetype(string? mimetype);
|
|
|
|
public string? get_mimetype();
|
|
|
|
|
|
|
|
public void set_from_json(Json.Node json_data);
|
|
|
|
|
|
|
|
public Json.Node get_json_node()
|
|
|
|
throws Matrix.Error;
|
|
|
|
}
|
|
|
|
|
2017-11-03 12:32:38 +00:00
|
|
|
[CCode (cheader_filename = "matrix-types.h")]
|
2017-11-03 12:32:18 +00:00
|
|
|
public struct AudioInfo {
|
|
|
|
public ssize get_size();
|
|
|
|
public void set_size(ssize size);
|
|
|
|
|
|
|
|
public string? get_mimetype();
|
|
|
|
public void set_mimetype(string? mimetype);
|
|
|
|
|
|
|
|
public int get_duration();
|
|
|
|
public void set_duration(int duration);
|
|
|
|
|
|
|
|
public void set_from_json(Json.Node json_data);
|
|
|
|
|
|
|
|
public Json.Node get_json_node()
|
|
|
|
throws Matrix.Error;
|
|
|
|
}
|
|
|
|
|
2017-11-03 12:32:38 +00:00
|
|
|
[CCode (cheader_filename = "matrix-types.h")]
|
2017-11-03 11:32:12 +00:00
|
|
|
public struct ImageInfo {
|
|
|
|
public ssize get_size();
|
|
|
|
public void set_size(ssize size);
|
|
|
|
public int get_height();
|
|
|
|
public void set_height(int height);
|
|
|
|
public int get_width();
|
|
|
|
public void set_width(int width);
|
|
|
|
string? mimetype;
|
|
|
|
|
|
|
|
public void set_from_json(Json.Node json_data);
|
|
|
|
|
|
|
|
public Json.Node get_json_node()
|
|
|
|
throws Matrix.Error;
|
|
|
|
|
|
|
|
public bool differs(ImageInfo other);
|
|
|
|
}
|
|
|
|
|
2017-11-03 12:32:38 +00:00
|
|
|
[CCode (cheader_filename = "matrix-types.h")]
|
|
|
|
public struct VideoInfo {
|
|
|
|
public ssize get_size();
|
|
|
|
public void set_size(ssize size);
|
|
|
|
|
|
|
|
public string? get_mimetype();
|
|
|
|
public void set_mimetype(string? mimetype);
|
|
|
|
|
|
|
|
public int get_duration();
|
|
|
|
public void set_duration(int duration);
|
|
|
|
|
|
|
|
public int get_width();
|
|
|
|
public void set_width(int witdh);
|
|
|
|
|
|
|
|
public int get_height();
|
|
|
|
public void set_height(int height);
|
|
|
|
|
|
|
|
public string? get_thumbnail_url();
|
|
|
|
public void set_thumbnail_url();
|
|
|
|
|
|
|
|
public ImageInfo? get_thumbnail_info();
|
|
|
|
public void set_image_info(ImageInfo? image_info);
|
|
|
|
|
|
|
|
public void
|
|
|
|
set_from_json(Json.Node json_data);
|
|
|
|
|
|
|
|
public Json.Node
|
|
|
|
get_json_node()
|
|
|
|
throws Matrix.Error;
|
|
|
|
}
|
|
|
|
|
2017-11-03 05:49:07 +00:00
|
|
|
/* Utilities */
|
|
|
|
[CCode (cheader_filename = "utils.h", cname = "_matrix_g_enum_to_string")]
|
|
|
|
public string? _g_enum_value_to_nick(GLib.Type enum_type, int value, bool convert_dashes = true);
|
|
|
|
|
2017-11-03 06:19:29 +00:00
|
|
|
[CCode (cheader_filename = "utils.h", cname = "_matrix_g_enum_nick_to_value")]
|
|
|
|
public int _g_enum_nick_to_value(GLib.Type enum_type, string nick)
|
|
|
|
throws Matrix.Error;
|
|
|
|
|
2016-03-04 11:18:45 +00:00
|
|
|
/**
|
|
|
|
* The major version number of the Matrix.org GLib SDK.
|
|
|
|
*/
|
|
|
|
[CCode (cheader_filename = "matrix-version.h", cname = "MATRIX_GLIB_MAJOR_VERSION")]
|
|
|
|
public const int GLIB_MAJOR_VERSION;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The micro (patch) version number of the Matrix.org GLib SDK.
|
|
|
|
*/
|
|
|
|
[CCode (cheader_filename = "matrix-version.h", cname = "MATRIX_GLIB_MINOR_VERSION")]
|
|
|
|
public const int GLIB_MINOR_VERSION;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The minor version number of the Matrix.org GLib SDK.
|
|
|
|
*/
|
|
|
|
[CCode (cheader_filename = "matrix-version.h", cname = "MATRIX_GLIB_MICRO_VERSION")]
|
|
|
|
public const int GLIB_MICRO_VERSION;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the Matrix.org GLib SDK in use is compatible with
|
|
|
|
* the given version.
|
|
|
|
*
|
|
|
|
* @param required_major the required major version
|
|
|
|
* @param required_minor the required minor version
|
|
|
|
* @param required_micro the required micro version
|
|
|
|
* @return {{{true}}} if the required version is satisfied; {{{false}}} otherwise.
|
|
|
|
*/
|
|
|
|
[CCode (cheader_filename = "matrix-version.h", cname = "matrix_glib_check_version")]
|
|
|
|
public bool glib_check_version(uint required_major,
|
|
|
|
uint required_minor,
|
|
|
|
uint required_micro);
|
2016-02-18 16:29:21 +00:00
|
|
|
}
|