Add event handler for m.call.invite
This commit is contained in:
parent
1f804e0d42
commit
be8910b8be
1
.gitignore
vendored
1
.gitignore
vendored
@ -75,3 +75,4 @@ Makefile.in
|
|||||||
/src/matrix-event-room-guest-access.c
|
/src/matrix-event-room-guest-access.c
|
||||||
/src/matrix-event-room-redaction.c
|
/src/matrix-event-room-redaction.c
|
||||||
/src/matrix-event-room-third-party-invite.c
|
/src/matrix-event-room-third-party-invite.c
|
||||||
|
/src/matrix-event-call-invite.c
|
||||||
|
@ -45,6 +45,7 @@ libmatrix_glib_0_0_la_VALA_SOURCES = \
|
|||||||
matrix-event-room-guest-access.vala \
|
matrix-event-room-guest-access.vala \
|
||||||
matrix-event-room-redaction.vala \
|
matrix-event-room-redaction.vala \
|
||||||
matrix-event-room-third-party-invite.vala \
|
matrix-event-room-third-party-invite.vala \
|
||||||
|
matrix-event-call-invite.vala \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
AM_CPPFLAGS += \
|
AM_CPPFLAGS += \
|
||||||
|
103
src/matrix-event-call-invite.vala
Normal file
103
src/matrix-event-call-invite.vala
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
/*
|
||||||
|
* 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This event is sent by the caller when they wish to establish a
|
||||||
|
* call.
|
||||||
|
*/
|
||||||
|
public class Matrix.Event.CallInvite : Matrix.Event.Room {
|
||||||
|
/**
|
||||||
|
* A unique identifer for the call.
|
||||||
|
*/
|
||||||
|
public string? call_id { get; set; default = null;}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type of session description.
|
||||||
|
*/
|
||||||
|
public CallOfferType? offer_type { get; set; default = null; }
|
||||||
|
/**
|
||||||
|
* The SDP text of the session description.
|
||||||
|
*/
|
||||||
|
public string? sdp { get; set; default = null; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The version of the VoIP specification this message adheres to.
|
||||||
|
*/
|
||||||
|
public int? version { get; set; default = null; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The time in milliseconds that the invite is valid for. Once the
|
||||||
|
* invite age exceeds this value, clients should discard it. They
|
||||||
|
* should also no longer show the call as awaiting an answer in
|
||||||
|
* the UI.
|
||||||
|
*/
|
||||||
|
public int? lifetime { get; set; default = null; }
|
||||||
|
|
||||||
|
protected override void
|
||||||
|
from_json(Json.Node json_data)
|
||||||
|
throws Matrix.Error
|
||||||
|
{
|
||||||
|
var content_root = json_data.get_object()
|
||||||
|
.get_member("content").get_object();
|
||||||
|
Json.Node? node;
|
||||||
|
|
||||||
|
if ((node = content_root.get_member("call_id")) != null) { _call_id = node.get_string();
|
||||||
|
} else {
|
||||||
|
warning("content.call_id is missing from a m.call.invite event");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((node = content_root.get_member("offer")) != null) {
|
||||||
|
var offer_node = node.get_object();
|
||||||
|
|
||||||
|
if ((node = offer_node.get_member("type")) != null) {
|
||||||
|
CallOfferType? typ = (CallOfferType?)_g_enum_nick_to_value(
|
||||||
|
typeof(CallOfferType), node.get_string());
|
||||||
|
|
||||||
|
if (typ != null) {
|
||||||
|
_offer_type = typ;
|
||||||
|
} else {
|
||||||
|
_offer_type = CallOfferType.UNKNOWN;
|
||||||
|
warning("Unknown value %s in content.offer.type of a m.call.invite event",
|
||||||
|
node.get_string());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
warning("content.offer.type is missing from a m.call.invite event");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((node = offer_node.get_member("sdp")) != null) {
|
||||||
|
_sdp = node.get_string();
|
||||||
|
} else {
|
||||||
|
warning("content.offer.sdp is missing from a m.call.invite event");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((node = content_root.get_member("version")) != null) {
|
||||||
|
_version = (int)node.get_int();
|
||||||
|
} else {
|
||||||
|
warning("content.version is missing from a m.call.invite event");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((node = content_root.get_member("lifetime")) != null) {
|
||||||
|
_lifetime = (int)node.get_int();
|
||||||
|
} else {
|
||||||
|
warning("content.lifetime is missing from a m.call.invite event");
|
||||||
|
}
|
||||||
|
|
||||||
|
base.from_json(json_data);
|
||||||
|
}
|
||||||
|
}
|
@ -209,6 +209,9 @@ matrix_event_types_ctor(void)
|
|||||||
matrix_event_register_type("m.room.third_party_invite",
|
matrix_event_register_type("m.room.third_party_invite",
|
||||||
MATRIX_EVENT_TYPE_ROOM_THIRD_PARTY_INVITE,
|
MATRIX_EVENT_TYPE_ROOM_THIRD_PARTY_INVITE,
|
||||||
NULL);
|
NULL);
|
||||||
|
matrix_event_register_type("m.call.invite",
|
||||||
|
MATRIX_EVENT_TYPE_CALL_INVITE,
|
||||||
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -276,6 +276,11 @@ namespace Matrix {
|
|||||||
FORBIDDEN; /// guest users are not allowed to access the room
|
FORBIDDEN; /// guest users are not allowed to access the room
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum CallOfferType {
|
||||||
|
UNKNOWN, /// represents a value unknown to this library
|
||||||
|
OFFER; /// call offer
|
||||||
|
}
|
||||||
|
|
||||||
public struct ImageInfo {
|
public struct ImageInfo {
|
||||||
int? size;
|
int? size;
|
||||||
int? height;
|
int? height;
|
||||||
|
Loading…
Reference in New Issue
Block a user