mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Minor tweaks to /.well-known/nodeinfo returned data.
This commit is contained in:
parent
3414ab48c6
commit
b31abde6bd
8
httpd.c
8
httpd.c
@ -62,14 +62,14 @@ xs_str *nodeinfo_2_0(void)
|
|||||||
int n_uhyear = 0;
|
int n_uhyear = 0;
|
||||||
int n_posts = 0;
|
int n_posts = 0;
|
||||||
xs *users = user_list();
|
xs *users = user_list();
|
||||||
xs_list *p;
|
xs_list *p = users;
|
||||||
char *v;
|
char *v;
|
||||||
|
double now = (double)time(NULL);
|
||||||
|
|
||||||
p = users;
|
|
||||||
while (xs_list_iter(&p, &v)) {
|
while (xs_list_iter(&p, &v)) {
|
||||||
/* build the full path name to the last usage log */
|
/* build the full path name to the last usage log */
|
||||||
xs *llfn = xs_fmt("%s/user/%s/lastlog.txt", srv_basedir, v);
|
xs *llfn = xs_fmt("%s/user/%s/lastlog.txt", srv_basedir, v);
|
||||||
double llsecs = (double)time(NULL) - mtime(llfn);
|
double llsecs = now - mtime(llfn);
|
||||||
|
|
||||||
if (llsecs < 60 * 60 * 24 * 30 * 6) {
|
if (llsecs < 60 * 60 * 24 * 30 * 6) {
|
||||||
n_uhyear++;
|
n_uhyear++;
|
||||||
@ -81,7 +81,7 @@ xs_str *nodeinfo_2_0(void)
|
|||||||
n_utotal++;
|
n_utotal++;
|
||||||
|
|
||||||
/* build the file to each user public.idx */
|
/* build the file to each user public.idx */
|
||||||
xs *pidxfn = xs_fmt("%s/user/%s/private.idx", srv_basedir, v);
|
xs *pidxfn = xs_fmt("%s/user/%s/public.idx", srv_basedir, v);
|
||||||
n_posts += index_len(pidxfn);
|
n_posts += index_len(pidxfn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user