mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Started support for Peertube's Video object.
This commit is contained in:
parent
ee0c6386cc
commit
5b0fa0a656
@ -1553,7 +1553,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
||||
type = "Note";
|
||||
|
||||
/* reject uninteresting messages right now */
|
||||
if (strcmp(type, "Add") == 0) {
|
||||
if (xs_match(type, "Add|View")) {
|
||||
srv_debug(0, xs_fmt("Ignored message of type '%s'", type));
|
||||
return -1;
|
||||
}
|
||||
@ -1822,17 +1822,17 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
||||
snac_log(snac, xs_fmt("updated actor %s", actor));
|
||||
}
|
||||
else
|
||||
if (xs_match(utype, "Note|Page|Article")) { /** **/
|
||||
if (xs_match(utype, "Note|Page|Article|Video")) { /** **/
|
||||
const char *id = xs_dict_get(object, "id");
|
||||
|
||||
if (object_here(id)) {
|
||||
object_add_ow(id, object);
|
||||
timeline_touch(snac);
|
||||
|
||||
snac_log(snac, xs_fmt("updated post %s", id));
|
||||
snac_log(snac, xs_fmt("updated '%s' %s", utype, id));
|
||||
}
|
||||
else
|
||||
snac_log(snac, xs_fmt("dropped update for unknown post %s", id));
|
||||
snac_log(snac, xs_fmt("dropped update for unknown '%s' %s", utype, id));
|
||||
}
|
||||
else
|
||||
if (strcmp(utype, "Question") == 0) { /** **/
|
||||
@ -1847,9 +1847,12 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
||||
if (closed != NULL)
|
||||
do_notify = 1;
|
||||
}
|
||||
else
|
||||
else {
|
||||
srv_archive_error("unsupported_update", "unsupported_update", req, msg);
|
||||
|
||||
snac_log(snac, xs_fmt("ignored 'Update' for object type '%s'", utype));
|
||||
}
|
||||
}
|
||||
else
|
||||
if (strcmp(type, "Delete") == 0) { /** **/
|
||||
if (xs_type(object) == XSTYPE_DICT)
|
||||
@ -1874,8 +1877,11 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req)
|
||||
|
||||
enqueue_output_by_actor(snac, rsp, actor, 0);
|
||||
}
|
||||
else
|
||||
else {
|
||||
srv_archive_error("unsupported_type", "unsupported_type", req, msg);
|
||||
|
||||
snac_debug(snac, 1, xs_fmt("process_input_message type '%s' ignored", type));
|
||||
}
|
||||
|
||||
if (do_notify) {
|
||||
notify(snac, type, utype, actor, msg);
|
||||
|
Loading…
Reference in New Issue
Block a user