summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-02-05 17:45:00 +0100
committerdefault <nobody@localhost>2023-02-05 17:45:00 +0100
commit71a7569467a53f8533c0eb0f5c62ed94744ed996 (patch)
tree7bebbe5d9059a1e7308ff87110cba718b6fd43c5
parentbad9f3a8c638f434bd04243791aecce950a104ba (diff)
Deleted the type argument from object_get_my_md5() and object_get().
It was never used.
-rw-r--r--activitypub.c10
-rw-r--r--data.c29
-rw-r--r--html.c6
-rw-r--r--snac.h4
4 files changed, 19 insertions, 30 deletions
diff --git a/activitypub.c b/activitypub.c
index 4f0e246..42558f4 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -469,7 +469,7 @@ d_char *msg_admiration(snac *snac, char *object, char *type)
/* call the object */
timeline_request(snac, &object, &wrk);
- if (valid_status(object_get(object, &a_msg, NULL))) {
+ if (valid_status(object_get(object, &a_msg))) {
xs *rcpts = xs_list_new();
msg = msg_base(snac, type, "@dummy", snac->actor, "@now", object);
@@ -664,7 +664,7 @@ xs_dict *msg_note(snac *snac, xs_str *content, xs_val *rcpts, xs_str *in_reply_t
/* demand this thing */
timeline_request(snac, &in_reply_to, &wrk);
- if (valid_status(object_get(in_reply_to, &p_msg, NULL))) {
+ if (valid_status(object_get(in_reply_to, &p_msg))) {
/* add this author as recipient */
char *a, *v;
@@ -977,7 +977,7 @@ int process_input_message(snac *snac, char *msg, char *req)
timeline_request(snac, &object, &wrk);
- if (valid_status(object_get(object, &a_msg, NULL))) {
+ if (valid_status(object_get(object, &a_msg))) {
char *who = xs_dict_get(a_msg, "attributedTo");
if (who && !is_muted(snac, who)) {
@@ -1262,7 +1262,7 @@ int activitypub_get_handler(d_char *req, char *q_path,
while (xs_list_iter(&p, &v)) {
xs *i = NULL;
- if (valid_status(object_get_by_md5(v, &i, NULL))) {
+ if (valid_status(object_get_by_md5(v, &i))) {
char *type = xs_dict_get(i, "type");
char *id = xs_dict_get(i, "id");
@@ -1287,7 +1287,7 @@ int activitypub_get_handler(d_char *req, char *q_path,
if (xs_startswith(p_path, "p/")) {
xs *id = xs_fmt("%s/%s", snac.actor, p_path);
- status = object_get(id, &msg, NULL);
+ status = object_get(id, &msg);
}
else
status = 404;
diff --git a/data.c b/data.c
index a826b0a..6c3408f 100644
--- a/data.c
+++ b/data.c
@@ -466,7 +466,7 @@ int object_here(char *id)
}
-int object_get_by_md5(const char *md5, d_char **obj, const char *type)
+int object_get_by_md5(const char *md5, xs_dict **obj)
/* returns a stored object, optionally of the requested type */
{
int status = 404;
@@ -481,19 +481,8 @@ int object_get_by_md5(const char *md5, d_char **obj, const char *type)
*obj = xs_json_loads(j);
- if (*obj) {
+ if (*obj)
status = 200;
-
- /* specific type requested? */
- if (!xs_is_null(type)) {
- char *v = xs_dict_get(*obj, "type");
-
- if (xs_is_null(v) || strcmp(v, type) != 0) {
- status = 404;
- *obj = xs_free(*obj);
- }
- }
- }
}
else
*obj = NULL;
@@ -502,11 +491,11 @@ int object_get_by_md5(const char *md5, d_char **obj, const char *type)
}
-int object_get(const char *id, d_char **obj, const char *type)
+int object_get(const char *id, xs_dict **obj)
/* returns a stored object, optionally of the requested type */
{
xs *md5 = xs_md5_hex(id, strlen(id));
- return object_get_by_md5(md5, obj, type);
+ return object_get_by_md5(md5, obj);
}
@@ -803,7 +792,7 @@ d_char *follower_list(snac *snac)
while (xs_list_iter(&p, &v)) {
xs *a_obj = NULL;
- if (valid_status(object_get_by_md5(v, &a_obj, NULL))) {
+ if (valid_status(object_get_by_md5(v, &a_obj))) {
char *actor = xs_dict_get(a_obj, "id");
if (!xs_is_null(actor))
@@ -827,7 +816,7 @@ double timeline_mtime(snac *snac)
int timeline_get_by_md5(snac *snac, const char *md5, xs_dict **msg)
/* gets a message from the timeline */
{
- return object_get_by_md5(md5, msg, NULL);
+ return object_get_by_md5(md5, msg);
}
@@ -851,7 +840,7 @@ void timeline_update_indexes(snac *snac, const char *id)
if (xs_startswith(id, snac->actor)) {
xs *msg = NULL;
- if (valid_status(object_get(id, &msg, NULL))) {
+ if (valid_status(object_get(id, &msg))) {
/* if its ours and is public, also store in public */
if (is_msg_public(snac, msg))
object_user_cache_add(snac, id, "public");
@@ -1138,7 +1127,7 @@ void hide(snac *snac, const char *id)
xs *co = NULL;
/* resolve to get the id */
- if (valid_status(object_get_by_md5(v, &co, NULL))) {
+ if (valid_status(object_get_by_md5(v, &co))) {
if ((v = xs_dict_get(co, "id")) != NULL)
hide(snac, v);
}
@@ -1178,7 +1167,7 @@ int actor_get(snac *snac, const char *actor, d_char **data)
}
/* read the object */
- if (!valid_status(status = object_get(actor, &d, NULL)))
+ if (!valid_status(status = object_get(actor, &d)))
return status;
if (data)
diff --git a/html.c b/html.c
index 893db2e..f163921 100644
--- a/html.c
+++ b/html.c
@@ -655,7 +655,7 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, int local, int level, cons
s = xs_str_cat(s, s1);
}
else
- if (valid_status(object_get_by_md5(p, &actor_r, NULL))) {
+ if (valid_status(object_get_by_md5(p, &actor_r))) {
char *name;
if ((name = xs_dict_get(actor_r, "name")) == NULL)
@@ -1190,7 +1190,7 @@ int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char *
xs *id = xs_fmt("%s/%s", snac.actor, p_path);
xs *msg = NULL;
- if (valid_status(object_get(id, &msg, NULL))) {
+ if (valid_status(object_get(id, &msg))) {
xs *md5 = xs_md5_hex(id, strlen(id));
xs *list = xs_list_new();
@@ -1416,7 +1416,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size,
/* an edition of a previous message */
xs *p_msg = NULL;
- if (valid_status(object_get(edit_id, &p_msg, NULL))) {
+ if (valid_status(object_get(edit_id, &p_msg))) {
/* copy relevant fields from previous version */
char *fields[] = { "id", "context", "url", "published",
"to", "inReplyTo", NULL };
diff --git a/snac.h b/snac.h
index 9ebb532..8617e32 100644
--- a/snac.h
+++ b/snac.h
@@ -65,8 +65,8 @@ int object_add(const char *id, d_char *obj);
int object_add_ow(const char *id, d_char *obj);
int object_here_by_md5(char *id);
int object_here(char *id);
-int object_get_by_md5(const char *md5, d_char **obj, const char *type);
-int object_get(const char *id, d_char **obj, const char *type);
+int object_get_by_md5(const char *md5, xs_dict **obj);
+int object_get(const char *id, xs_dict **obj);
int object_del(const char *id);
int object_del_if_unref(const char *id);
int object_admire(const char *id, const char *actor, int like);