mirror of
https://github.com/YunoHost-Apps/mattermost_ynh.git
synced 2024-09-03 19:36:29 +02:00
Merge pull request #96 from YunoHost-Apps/configure-team
Create first user and team from the app install
This commit is contained in:
commit
8781185d7a
3 changed files with 62 additions and 3 deletions
|
@ -2,10 +2,12 @@
|
||||||
; Manifest
|
; Manifest
|
||||||
domain="ynhtests.local" (DOMAIN)
|
domain="ynhtests.local" (DOMAIN)
|
||||||
path="" (PATH)
|
path="" (PATH)
|
||||||
user="admin" (USER)
|
admin_email="john@gmail.com"
|
||||||
language="fr"
|
admin_password="mattermost_password"
|
||||||
|
admin_locale="fr"
|
||||||
|
team_display_name="Mon équipe"
|
||||||
is_public=1 (PUBLIC|public=1|private=0)
|
is_public=1 (PUBLIC|public=1|private=0)
|
||||||
password="alpine"
|
analytics=0
|
||||||
; Checks
|
; Checks
|
||||||
pkg_linter=1
|
pkg_linter=1
|
||||||
setup_root=1
|
setup_root=1
|
||||||
|
|
|
@ -40,6 +40,42 @@
|
||||||
},
|
},
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "admin_email",
|
||||||
|
"ask": {
|
||||||
|
"en": "Login email for the chat admin",
|
||||||
|
"fr": "Adresse email de login pour l’administrateur du chat"
|
||||||
|
},
|
||||||
|
"example": "john@gmail.com",
|
||||||
|
"optional": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "admin_password",
|
||||||
|
"type": "password",
|
||||||
|
"ask": {
|
||||||
|
"en": "Password for the chat admin",
|
||||||
|
"fr": "Mot de passe pour l’administrateur du chat"
|
||||||
|
},
|
||||||
|
"optional": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "admin_locale",
|
||||||
|
"ask": {
|
||||||
|
"en": "Choose the language of the chat for the admin",
|
||||||
|
"fr": "Choissisez la langue utilisée pour l'administrateur"
|
||||||
|
},
|
||||||
|
"choices": ["en", "fr"],
|
||||||
|
"default": "en"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "team_display_name",
|
||||||
|
"ask": {
|
||||||
|
"en": "Choose a Team name",
|
||||||
|
"fr": "Choisissez le nom de l’équipe"
|
||||||
|
},
|
||||||
|
"example": "Super Groupe",
|
||||||
|
"optional": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "analytics",
|
"name": "analytics",
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|
|
@ -23,6 +23,10 @@ ynh_abort_if_errors
|
||||||
app=$YNH_APP_INSTANCE_NAME
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
domain=$YNH_APP_ARG_DOMAIN
|
domain=$YNH_APP_ARG_DOMAIN
|
||||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||||
|
admin_email=$YNH_APP_ARG_ADMIN_EMAIL
|
||||||
|
admin_password=$YNH_APP_ARG_ADMIN_PASSWORD
|
||||||
|
admin_locale=$YNH_APP_ARG_ADMIN_LOCALE
|
||||||
|
team_display_name=$YNH_APP_ARG_TEAM_DISPLAY_NAME
|
||||||
analytics=$YNH_APP_ARG_ANALYTICS
|
analytics=$YNH_APP_ARG_ANALYTICS
|
||||||
path_url="/"
|
path_url="/"
|
||||||
|
|
||||||
|
@ -194,3 +198,20 @@ sudo systemctl reload nginx
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
sudo systemctl start "$app"
|
sudo systemctl start "$app"
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# CREATE ADMIN AND FIRST TEAM
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
admin_username=$(cut -d @ -f 1 <<< "$admin_email")
|
||||||
|
team_name=$(echo "$team_display_name" | iconv -f utf8 -t ascii//TRANSLIT//IGNORE | sed -e 's/[^[:alnum:]]/-/g' | tr -s '-' | tr A-Z a-z)
|
||||||
|
|
||||||
|
cd "$final_path/bin"
|
||||||
|
sudo ./platform user create --username "$admin_username" --email "$admin_email" --password "$admin_password" --locale "$admin_locale" --system_admin
|
||||||
|
sudo ./platform user verify "$admin_username"
|
||||||
|
sudo ./platform team create --name "$team_name" --display_name "$team_display_name" --email "$admin_email"
|
||||||
|
sudo ./platform team add "$team_name" "$admin_username"
|
||||||
|
|
||||||
|
ynh_app_setting_set "$app" admin_email "$admin_email"
|
||||||
|
ynh_app_setting_set "$app" admin_locale "$admin_locale"
|
||||||
|
ynh_app_setting_set "$app" team_name "$team_name"
|
||||||
|
|
Loading…
Reference in a new issue