mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
More verify link logging.
This commit is contained in:
parent
fcf9f9e331
commit
572c52f9fe
9
utils.c
9
utils.c
@ -431,8 +431,10 @@ void verify_links(snac *user)
|
|||||||
req = xs_http_request("GET", v, NULL, NULL, 0, &status,
|
req = xs_http_request("GET", v, NULL, NULL, 0, &status,
|
||||||
&payload, &p_size, 0);
|
&payload, &p_size, 0);
|
||||||
|
|
||||||
if (!valid_status(status))
|
if (!valid_status(status)) {
|
||||||
|
snac_log(user, xs_fmt("verify link %s error %d", v, status));
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
/* extract the links */
|
/* extract the links */
|
||||||
xs *ls = xs_regex_select(payload, "< *(a|link) +[^>]+>");
|
xs *ls = xs_regex_select(payload, "< *(a|link) +[^>]+>");
|
||||||
@ -490,8 +492,11 @@ void verify_links(snac *user)
|
|||||||
|
|
||||||
changed++;
|
changed++;
|
||||||
|
|
||||||
snac_log(user, xs_fmt("verify_links: %s at %s", v, verified_at));
|
snac_log(user, xs_fmt("link %s verified at %s", v, verified_at));
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
snac_debug(user, 1,
|
||||||
|
xs_fmt("verify link %s rel='me' found but not related (%s)", v, href));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user