mirror of
https://github.com/YunoHost-Apps/akkoma_ynh.git
synced 2024-09-03 20:36:17 +02:00
commit
3cca410de5
9 changed files with 57 additions and 4 deletions
|
@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
||||||
Akkoma is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger decentrilized and federated network. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Pleroma, Peertube, or Pixelfed.
|
Akkoma is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger decentrilized and federated network. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Pleroma, Peertube, or Pixelfed.
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 3.7.1~ynh1
|
**Shipped version:** 3.9.2~ynh1
|
||||||
|
|
||||||
**Demo:** https://otp.akkoma.dev
|
**Demo:** https://otp.akkoma.dev
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
||||||
Akkoma is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger decentrilized and federated network. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Pleroma, Peertube, or Pixelfed.
|
Akkoma is a microblogging server software that can federate (= exchange messages with) other servers that support ActivityPub. What that means is that you can host a server for yourself or your friends and stay in control of your online identity, but still exchange messages with people on larger decentrilized and federated network. Akkoma will federate with all servers that implement ActivityPub, like Friendica, GNU Social, Hubzilla, Mastodon, Misskey, Pleroma, Peertube, or Pixelfed.
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 3.7.1~ynh1
|
**Version incluse :** 3.9.2~ynh1
|
||||||
|
|
||||||
**Démo :** https://otp.akkoma.dev
|
**Démo :** https://otp.akkoma.dev
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://akkoma-updates.s3-website.fr-par.scw.cloud/stable/akkoma-amd64.zip
|
SOURCE_URL=https://akkoma-updates.s3-website.fr-par.scw.cloud/stable/akkoma-amd64.zip
|
||||||
SOURCE_SUM=ea4f31b88b4de78f4c5bfb72e6969927b509012dc25b42d064c8dbc3be2cacbf
|
SOURCE_SUM=505f86cb7956e5721ac4d79380bd81ac3f8f6e64b452af5c121a815b1a7a58b6
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=zip
|
SOURCE_FORMAT=zip
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
5
conf/frontend_switcher.exs
Normal file
5
conf/frontend_switcher.exs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
config :pleroma, :frontends,
|
||||||
|
pickable: [
|
||||||
|
"pleroma-fe/stable",
|
||||||
|
"mangane/dist"
|
||||||
|
]
|
|
@ -35,3 +35,7 @@ location / {
|
||||||
# Include SSOWAT user panel.
|
# Include SSOWAT user panel.
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
include conf.d/yunohost_panel.conf.inc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location ~ ^/media {
|
||||||
|
more_set_headers Content-Security-Policy "script-src 'none';";
|
||||||
|
}
|
||||||
|
|
5
conf/static_and_modules_dir.exs
Normal file
5
conf/static_and_modules_dir.exs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Static directory needs to be adapted for Yunohost specific setup
|
||||||
|
config :pleroma, :instance, static_dir: "/home/yunohost.app/akkoma/static"
|
||||||
|
config :pleroma, Pleroma.Uploaders.Local, uploads: "/home/yunohost.app/akkoma/uploads"
|
||||||
|
# Module directory needs to be adapted for Yunohost specific setup
|
||||||
|
config :pleroma, :modules, runtime_dir: "/home/yunohost.app/akkoma/modules"
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Federated social networking server built on ActivityPub open protocol",
|
"en": "Federated social networking server built on ActivityPub open protocol",
|
||||||
"fr": "Serveur de réseautage social fédéré basé sur le protocole ouvert ActivityPub"
|
"fr": "Serveur de réseautage social fédéré basé sur le protocole ouvert ActivityPub"
|
||||||
},
|
},
|
||||||
"version": "3.7.1~ynh1",
|
"version": "3.9.2~ynh1",
|
||||||
"url": "https://akkoma.social/",
|
"url": "https://akkoma.social/",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
|
|
|
@ -213,6 +213,14 @@ popd
|
||||||
|
|
||||||
cat "../conf/ldap.exs" >> "$config"
|
cat "../conf/ldap.exs" >> "$config"
|
||||||
|
|
||||||
|
# Configure proper static & module directories
|
||||||
|
cat "../conf/static_and_modules_dir.exs" >> "$config"
|
||||||
|
|
||||||
|
# Setup frontend switcher
|
||||||
|
# Available here : domain.tld/akkoma/frontend
|
||||||
|
# It is probably needed to do it before changing "configurable_from_database" as the config file will no longer be used ?
|
||||||
|
cat "../conf/frontend_switcher.exs" >> "$config"
|
||||||
|
|
||||||
ynh_replace_string --match_string="config :akkoma, configurable_from_database: false" --replace_string="config :akkoma, configurable_from_database: true" --target_file="$config"
|
ynh_replace_string --match_string="config :akkoma, configurable_from_database: false" --replace_string="config :akkoma, configurable_from_database: true" --target_file="$config"
|
||||||
registration_bool_value=`(($registration)) && echo "true" || echo "false"`
|
registration_bool_value=`(($registration)) && echo "true" || echo "false"`
|
||||||
ynh_replace_string --match_string="registrations_open: true" --replace_string="registrations_open: $registration_bool_value" --target_file="$config"
|
ynh_replace_string --match_string="registrations_open: true" --replace_string="registrations_open: $registration_bool_value" --target_file="$config"
|
||||||
|
|
|
@ -196,6 +196,16 @@ if ynh_version_gt "2.4.4~ynh2" "${previous_version}"; then
|
||||||
ynh_replace_string --match_string='registrations_open: true' --replace_string="registrations_open: $registration_bool_value" --target_file="$config"
|
ynh_replace_string --match_string='registrations_open: true' --replace_string="registrations_open: $registration_bool_value" --target_file="$config"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Add frontend switcher if needed
|
||||||
|
|
||||||
|
if grep -zP 'config :pleroma, :frontends,\n\K pickable' $config # This syntax takes the new line into account # This is not resilient to any spacing change, to be refined
|
||||||
|
then
|
||||||
|
ynh_script_progression --message="Frontend switcher config already existing, nothing to do about it." --weight=0
|
||||||
|
else
|
||||||
|
ynh_script_progression --message="Adding frontend switcher config." --weight=0
|
||||||
|
cat "../conf/frontend_switcher.exs" >> "$config"
|
||||||
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -282,6 +292,27 @@ ynh_script_progression --message="Starting a systemd service..." --weight=1
|
||||||
|
|
||||||
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Access akkoma.Web.Endpoint"
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Access akkoma.Web.Endpoint"
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# INSTALL BASIC FRONTENDS (Upgrade them)
|
||||||
|
#=================================================
|
||||||
|
#### Fontends need Akkoma to be already running, so they are installed at the very end
|
||||||
|
|
||||||
|
# Pleroma Front-End
|
||||||
|
ynh_script_progression --message="Upgrading Pleroma FrontEnd..." --weight=1
|
||||||
|
ynh_exec_warn_less ynh_exec_as $app -s $SHELL -lc "$final_path/live/bin/pleroma_ctl frontend install pleroma-fe --ref stable"
|
||||||
|
|
||||||
|
# Admin Front-End
|
||||||
|
ynh_script_progression --message="Upgrading Admin FrontEnd..." --weight=1
|
||||||
|
ynh_exec_warn_less ynh_exec_as $app -s $SHELL -lc "$final_path/live/bin/pleroma_ctl frontend install admin-fe --ref stable"
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# INSTALL MANGANE FRONTEND (Upgrade it)
|
||||||
|
#=================================================
|
||||||
|
# Mangane alternative Front-End will be built in, ready to enable
|
||||||
|
ynh_script_progression --message="Upgrading Mangane FrontEnd..." --weight=1
|
||||||
|
ynh_exec_warn_less ynh_exec_as $app -s $SHELL -lc "$final_path/live/bin/pleroma_ctl frontend install mangane --ref dist --build-url https://github.com/BDX-town/Mangane/releases/latest/download/static.zip"
|
||||||
|
# Not activated, users need to change the "primary" frontend in the admin UI (use 'mangane' and 'dist').
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RELOAD NGINX
|
# RELOAD NGINX
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue