Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-chat-integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-chat-integration
Commits
d2c505b1
Commit
d2c505b1
authored
1 year ago
by
Christof Bauer
Browse files
Options
Downloads
Patches
Plain Diff
[WIP] Create-Matrix-Admin-Script
parent
2ea95233
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
create-matrix-admin.sh
+31
-0
31 additions, 0 deletions
create-matrix-admin.sh
src/config.ts
+3
-0
3 additions, 0 deletions
src/config.ts
with
36 additions
and
0 deletions
.gitignore
+
2
−
0
View file @
d2c505b1
...
...
@@ -8,5 +8,7 @@ node_modules
terraform/.holi-terraform.key
dist
.envrc.local
.env
.env.local
coverage/
*.zip
This diff is collapsed.
Click to expand it.
create-matrix-admin.sh
0 → 100755
+
31
−
0
View file @
d2c505b1
#!/bin/bash
# This file contains shell commands that are needed to create an admin for Matrix Chat
# which is needed to set up a working local dev environment for this project.
URL
=
"http://127.0.0.1:8008/_synapse/admin/v1/register"
username
=
"admin"
password
=
"admin"
admin
=
true
secret
=
MATRIX_ADMIN_SECRET
# 1. Get Nonce
response
=
$(
curl
-s
$URL
)
nonce
=
$(
jq
-r
".nonce"
<<<
"
$response
"
)
echo
"Nonce:
$nonce
"
# 2. Generate HMAC
hmac
=
$(
echo
"
$nonce
"
"
$username
"
"
$password
"
"
$admin
"
|
openssl sha1
-hmac
"
$secret
"
|
awk
'{print $2}'
)
echo
"HMAC:
$hmac
"
# 2. Create Matrix Admin
res
=
$(
curl
-s
$URL
-X
POST
\
-H
"Content-Type: application/json"
\
-d
"{
\"
nonce
\"
:
\"
$nonce
\"
,
\"
username
\"
:
\"
$username
\"
,
\"
password
\"
:
\"
$password
\"
,
\"
admin
\"
:
\"
$admin
\"
,
\"
mac
\"
:
\"
$hmac
\"
}"
)
echo
$res
This diff is collapsed.
Click to expand it.
src/config.ts
+
3
−
0
View file @
d2c505b1
...
...
@@ -3,3 +3,6 @@ export const ENVIRONMENT = process.env.ENVIRONMENT
// The issuer URL for the OpenID Connect provider used by the chat instance.
export
const
CHAT_OIDC_ISSUER
=
process
.
env
.
CHAT_OIDC_ISSUER
// The secret for generating the hmac hash to register a Matrix admin user.
export
const
MATRIX_ADMIN_SECRET
=
process
.
env
.
MATRIX_ADMIN_SECRET
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment