2016-03-08 16:25:43 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to hold a m.room.avatar event
|
|
|
|
*
|
|
|
|
* A picture that is associated with the room. This can be displayed
|
|
|
|
* alongside the room information.
|
|
|
|
*/
|
|
|
|
public class Matrix.Event.RoomAvatar : Matrix.Event.State {
|
|
|
|
/**
|
|
|
|
* The URL to the image.
|
|
|
|
*/
|
|
|
|
public string? url { get; set; default = null; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The URL to the thumbnail of the image.
|
|
|
|
*/
|
|
|
|
public string? thumbnail_url { get; set; default = null; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Metadata about the image referred to in url.
|
|
|
|
*/
|
|
|
|
public ImageInfo? info { get; set; default = null; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Metadata about the image referred to in thumbnail_url.
|
|
|
|
*/
|
|
|
|
public ImageInfo? thumbnail_info { get; set; default = null; }
|
|
|
|
|
|
|
|
protected override void
|
|
|
|
from_json(Json.Node json_data)
|
|
|
|
throws Matrix.Error
|
|
|
|
{
|
2016-03-09 14:12:48 +00:00
|
|
|
var root = json_data.get_object();
|
|
|
|
var content_root = root.get_member("content").get_object();
|
2016-03-08 16:25:43 +00:00
|
|
|
Json.Node? node;
|
|
|
|
|
2016-03-09 14:12:48 +00:00
|
|
|
if (Config.DEBUG) {
|
|
|
|
if ((node = root.get_member("state_key")) != null) {
|
|
|
|
var sk = node.get_string();
|
|
|
|
|
|
|
|
if (sk != "") {
|
|
|
|
warning("state_key of a m.room.avatar event is non-empty");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-08 16:25:43 +00:00
|
|
|
if ((node = content_root.get_member("url")) != null) {
|
|
|
|
_url = node.get_string();
|
|
|
|
} else {
|
|
|
|
warning("content.url is missing from a m.room.avatar event");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((node = content_root.get_member("thumbnail_url")) != null) {
|
|
|
|
_thumbnail_url = node.get_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((node = content_root.get_member("info")) != null) {
|
|
|
|
_info = ImageInfo();
|
2016-03-10 16:46:16 +00:00
|
|
|
_info.set_from_json(node);
|
2016-03-08 16:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((node = content_root.get_member("thumbnail_info")) != null) {
|
|
|
|
_thumbnail_info = ImageInfo();
|
2016-03-10 16:46:16 +00:00
|
|
|
_thumbnail_info.set_from_json(node);
|
2016-03-08 16:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
base.from_json(json_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void
|
|
|
|
to_json(Json.Node json_data)
|
|
|
|
throws Matrix.Error
|
|
|
|
{
|
|
|
|
if (_url == null) {
|
|
|
|
throw new Matrix.Error.INCOMPLETE(
|
|
|
|
"Won't generate a m.room.avatar event without url");
|
|
|
|
}
|
|
|
|
|
2016-03-09 14:12:48 +00:00
|
|
|
var root = json_data.get_object();
|
|
|
|
var content_root = root.get_member("content").get_object();
|
|
|
|
|
|
|
|
if (_state_key != "") {
|
|
|
|
throw new Matrix.Error.INCOMPLETE(
|
|
|
|
"Won't generate a m.room.avatar event with a non-empty state_key");
|
|
|
|
}
|
2016-03-08 16:25:43 +00:00
|
|
|
|
|
|
|
content_root.set_string_member("url", _url);
|
|
|
|
|
|
|
|
if (_thumbnail_url != null) {
|
|
|
|
content_root.set_string_member("thumbnail_url", _thumbnail_url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_info != null) {
|
|
|
|
content_root.set_member("info", _info.get_json_node());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_thumbnail_info != null) {
|
|
|
|
content_root.set_member("thumbnail_info",
|
|
|
|
_thumbnail_info.get_json_node());
|
|
|
|
}
|
|
|
|
|
|
|
|
base.to_json(json_data);
|
|
|
|
}
|
|
|
|
}
|