mirror of
http://gitea.phreedom.club/localhost_frssoft/pleroma-cli
synced 2024-12-02 00:56:35 +00:00
Compare commits
No commits in common. "63318b6822db54ae2b82caf21c19ec6a8bc4a90c" and "a85d67dab5af54a52325752c8204bc095ec38b97" have entirely different histories.
63318b6822
...
a85d67dab5
|
@ -40,17 +40,15 @@
|
|||
daemon_mode=yes instance=example ./pleroma-cli.sh
|
||||
```
|
||||
|
||||
### Отправка постов
|
||||
# Отправка постов
|
||||
Чтобы отправить пост, нужно в папке all_statuses/$instance создать файл message и записать туда пост, затем создать файл create там же
|
||||
(Для добавления вложений нужно создать папку attachments и положить туда файлы для отправки)
|
||||
|
||||
### Частичное взаимодействие с постами:
|
||||
Чтобы добавить в избранное или бустануть пост нужно в папке с постом создать файл favourite и\или share
|
||||
Открыть тред, аналогично: threadopen
|
||||
```
|
||||
touch favourite
|
||||
touch share
|
||||
touch threadopen
|
||||
```
|
||||
|
||||
### Ответ на пост
|
||||
|
@ -61,7 +59,6 @@ touch threadopen
|
|||
```
|
||||
# Сортированный вывод текcтов всех постов в хронологическом порядке
|
||||
cat $(/bin/ls all_statuses/instance.example/*/content --sort=time) | less
|
||||
# На самом деле FlakeId сам по себе сортируется по имени от старых к новым
|
||||
|
||||
# все тексты постов
|
||||
cat all_statuses/instance.example/*/content
|
||||
|
|
13
config.json
13
config.json
|
@ -1,14 +1,23 @@
|
|||
{
|
||||
"instance": "soc.phreedom.club",
|
||||
"statuses_file_archive": true,
|
||||
"statuses_file_archive_after_time": 86400,
|
||||
"main_proxy": "",
|
||||
"connect_protocol_via_main_proxy": "https",
|
||||
"i2p_http_proxy_addr": "http://127.0.0.1:4444",
|
||||
"tor_proxy_addr": "socks5://127.0.0.1:9050",
|
||||
"max_statuses": 40,
|
||||
"per_status_mode": true,
|
||||
"enabled_nsfw": true,
|
||||
"nsfw_only": false,
|
||||
"hide_reblogs": false,
|
||||
"default_content_type": "text/plain",
|
||||
"default_visibility": "unlisted",
|
||||
"format_time": "+%d.%m.%Y %H:%M:%S",
|
||||
"boost_symbol": "[>>]",
|
||||
"statuses_separator": "\n==========",
|
||||
"reversed_statuses": false,
|
||||
"quoting_reply": true,
|
||||
"copy_mentions": true,
|
||||
"default_media_player": "mpv",
|
||||
"public_list_instances": [
|
||||
"outerheaven.club",
|
||||
"stereophonic.space",
|
||||
|
|
|
@ -31,7 +31,6 @@ proxy_init
|
|||
instance_point="$default_connect_protocol://$instance/api/v1"
|
||||
instance_point_pleroma="$default_connect_protocol://$instance/api/pleroma"
|
||||
instance_hist='instance.hist'
|
||||
statuses_file_archive=$(jj -i config.json statuses_file_archive)
|
||||
enabled_nsfw=$(jj -i config.json enabled_nsfw)
|
||||
nsfw_only=$(jj -i config.json nsfw_only)
|
||||
hide_reblogs=$(jj -i config.json hide_reblogs)
|
||||
|
@ -800,9 +799,7 @@ statuses_auto_update()
|
|||
sleep 3
|
||||
done
|
||||
echo "Sleeping..."
|
||||
if [ "$statuses_file_archive" = 'true' ]; then
|
||||
./utils/statuses_archiver.sh
|
||||
fi
|
||||
./utils/statuses_archiver.sh
|
||||
sleep 30
|
||||
done
|
||||
}
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
mkdir -p "$main_basedir/archives/"
|
||||
statuses_file_archive_after_time=$(jj -i "$main_basedir"/config.json statuses_file_archive_after_time)
|
||||
unixtime_offset=$(expr $(date "+%s") - $statuses_file_archive_after_time)
|
||||
unixtime_offset=$(expr $(date "+%s") - 86400)
|
||||
|
||||
for i in "$main_basedir"/all_statuses/$instance/*; do
|
||||
|
||||
|
|
Loading…
Reference in a new issue