2025-03-05 15:05:22 -06:00
|
|
|
#!/bin/bash
|
|
|
|
#Check for mariadb vs. mysql
|
|
|
|
dbengine=""
|
|
|
|
if [[ -n $(type mariadb) ]]; then
|
|
|
|
dbengine="mariadb"
|
|
|
|
elif [[ -n $(type mysql) ]]; then
|
|
|
|
dbengine="mysql"
|
|
|
|
else
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
db="friendica"
|
|
|
|
"${dbengine}" "${db}" -e "\
|
|
|
|
create temporary table tmp_authors (\
|
|
|
|
select \`author-id\`, \
|
|
|
|
count(*) as amount \
|
|
|
|
from \`post-user\` \
|
|
|
|
group by \`author-id\` \
|
|
|
|
order by count(*) desc \
|
|
|
|
limit 1000 \
|
|
|
|
); \
|
|
|
|
create temporary table tmp_owners (\
|
|
|
|
select \`owner-id\`, \
|
|
|
|
count(*) as amount \
|
|
|
|
from \`post-user\` \
|
|
|
|
group by \`owner-id\` \
|
|
|
|
order by count(*) desc \
|
|
|
|
limit 1000 \
|
|
|
|
); \
|
|
|
|
create temporary table tmp_causers (\
|
|
|
|
select \`causer-id\`, \
|
|
|
|
count(*) as amount \
|
|
|
|
from \`post-user\` \
|
|
|
|
group by \`causer-id\` \
|
|
|
|
order by count(*) desc \
|
|
|
|
limit 1000 \
|
|
|
|
); \
|
2025-03-06 09:31:37 -06:00
|
|
|
select \
|
2025-03-05 15:05:22 -06:00
|
|
|
c.\`id\`, \
|
2025-03-06 09:31:37 -06:00
|
|
|
c.name, \
|
|
|
|
c.url, \
|
|
|
|
g.platform, \
|
|
|
|
(a.amount + o.amount + t.amount) as final_amount \
|
|
|
|
from contact as c \
|
2025-03-05 15:05:22 -06:00
|
|
|
right join tmp_authors as a \
|
|
|
|
on c.id = a.\`author-id\` \
|
|
|
|
right join tmp_owners as o \
|
2025-03-06 09:31:37 -06:00
|
|
|
on c.id = o.\`owner-id\` \
|
2025-03-05 15:05:22 -06:00
|
|
|
right join tmp_causers as t \
|
2025-03-06 09:31:37 -06:00
|
|
|
on c.id = t.\`causer-id\` \
|
2025-03-07 12:37:58 -06:00
|
|
|
inner join gserver as g \
|
2025-03-06 09:31:37 -06:00
|
|
|
on g.id = c.gsid \
|
|
|
|
order by final_amount asc \
|
|
|
|
limit 1000;"
|