Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galene
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
galene
Commits
4bc873a5
Commit
4bc873a5
authored
Sep 01, 2022
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Publish websocket endpoint in group status.
parent
4e275a63
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
8 deletions
+24
-8
group/group.go
group/group.go
+4
-2
rtpconn/webclient.go
rtpconn/webclient.go
+2
-2
static/galene.js
static/galene.js
+6
-1
webserver/webserver.go
webserver/webserver.go
+12
-3
No files found.
group/group.go
View file @
4bc873a5
...
...
@@ -1177,6 +1177,7 @@ func (desc *Description) GetPermission(group string, creds ClientCredentials) (s
type
Status
struct
{
Name
string
`json:"name"`
Endpoint
string
`json:"endpoint"`
DisplayName
string
`json:"displayName,omitempty"`
Description
string
`json:"description,omitempty"`
AuthServer
string
`json:"authServer,omitempty"`
...
...
@@ -1185,10 +1186,11 @@ type Status struct {
ClientCount
*
int
`json:"clientCount,omitempty"`
}
func
(
g
*
Group
)
Status
(
authentified
bool
)
Status
{
func
(
g
*
Group
)
Status
(
authentified
bool
,
endpoint
string
)
Status
{
desc
:=
g
.
Description
()
d
:=
Status
{
Name
:
g
.
name
,
Endpoint
:
endpoint
,
DisplayName
:
desc
.
DisplayName
,
AuthServer
:
desc
.
AuthServer
,
AuthPortal
:
desc
.
AuthPortal
,
...
...
@@ -1209,7 +1211,7 @@ func GetPublic() []Status {
gs
:=
make
([]
Status
,
0
)
Range
(
func
(
g
*
Group
)
bool
{
if
g
.
Description
()
.
Public
{
gs
=
append
(
gs
,
g
.
Status
(
false
))
gs
=
append
(
gs
,
g
.
Status
(
false
,
""
))
}
return
true
})
...
...
rtpconn/webclient.go
View file @
4bc873a5
...
...
@@ -1148,7 +1148,7 @@ func handleAction(c *webClient, a interface{}) error {
if
a
.
group
!=
""
{
g
:=
group
.
Get
(
a
.
group
)
if
g
!=
nil
{
s
:=
g
.
Status
(
true
)
s
:=
g
.
Status
(
true
,
""
)
status
=
&
s
data
=
g
.
Data
()
}
...
...
@@ -1170,7 +1170,7 @@ func handleAction(c *webClient, a interface{}) error {
return
errors
.
New
(
"Permissions changed in no group"
)
}
perms
:=
append
([]
string
(
nil
),
c
.
permissions
...
)
status
:=
g
.
Status
(
true
)
status
:=
g
.
Status
(
true
,
""
)
c
.
write
(
clientMessage
{
Type
:
"joined"
,
Kind
:
"change"
,
...
...
static/galene.js
View file @
4bc873a5
...
...
@@ -3431,7 +3431,12 @@ async function serverConnect() {
serverConnection
.
onusermessage
=
gotUserMessage
;
serverConnection
.
onfiletransfer
=
gotFileTransfer
;
let
url
=
`ws
${
location
.
protocol
===
'
https:
'
?
'
s
'
:
''
}
://
${
location
.
host
}
/ws`
;
let
url
=
groupStatus
.
endpoint
;
if
(
!
url
)
{
console
.
warn
(
"
no endpoint in status
"
);
url
=
`ws
${
location
.
protocol
===
'
https:
'
?
'
s
'
:
''
}
://
${
location
.
host
}
/ws`
;
}
try
{
await
serverConnection
.
connect
(
url
);
}
catch
(
e
)
{
...
...
webserver/webserver.go
View file @
4bc873a5
...
...
@@ -102,7 +102,7 @@ func cspHeader(w http.ResponseWriter, connect string) {
c
=
"connect-src "
+
connect
+
" ws: wss: 'self';"
}
w
.
Header
()
.
Add
(
"Content-Security-Policy"
,
c
+
" img-src data: 'self'; media-src blob: 'self'; default-src 'self'"
)
c
+
" img-src data: 'self'; media-src blob: 'self'; default-src 'self'"
)
}
func
notFound
(
w
http
.
ResponseWriter
)
{
...
...
@@ -327,7 +327,7 @@ func groupHandler(w http.ResponseWriter, r *http.Request) {
return
}
status
:=
g
.
Status
(
false
)
status
:=
g
.
Status
(
false
,
""
)
cspHeader
(
w
,
status
.
AuthServer
)
serveFile
(
w
,
r
,
filepath
.
Join
(
StaticRoot
,
"galene.html"
))
}
...
...
@@ -351,7 +351,16 @@ func groupStatusHandler(w http.ResponseWriter, r *http.Request) {
return
}
d
:=
g
.
Status
(
false
)
scheme
:=
"wss"
if
Insecure
{
scheme
=
"ws"
}
endpoint
:=
url
.
URL
{
Scheme
:
scheme
,
Host
:
r
.
Host
,
Path
:
"/ws"
,
}
d
:=
g
.
Status
(
false
,
endpoint
.
String
())
w
.
Header
()
.
Set
(
"content-type"
,
"application/json"
)
w
.
Header
()
.
Set
(
"cache-control"
,
"no-cache"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment