0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2025-04-02 16:46:52 +00:00

chore: restore default behavior when OAUTH2_ORG is not set

This commit is contained in:
nick lynch-jonely 2024-05-06 22:40:49 -07:00
parent 1c077e3dc0
commit 088da51ada
4 changed files with 17 additions and 4653 deletions

View File

@ -4,16 +4,14 @@ FROM golang:alpine AS build-back
WORKDIR /app WORKDIR /app
ARG COMMIT ARG COMMIT
COPY . . COPY . .
RUN go build -o wg-gen-web-linux github.com/vx3r/wg-gen-web/cmd/wg-gen-web RUN go build -o wg-gen-web-linux -ldflags="-X 'github.com/vx3r/wg-gen-web/version.Version=${COMMIT}'" github.com/vx3r/wg-gen-web/cmd/wg-gen-web


FROM node:18.13.0-alpine AS build-front FROM node:18.13.0-alpine AS build-front
WORKDIR /app WORKDIR /app
COPY ui/package*.json ./ COPY ui/package*.json ./
COPY ui/yarn.lock ./
RUN npm install RUN npm install
COPY ui/ ./ COPY ui/ ./
#RUN yarn build --frozen-lockfile --verbose RUN npm run build
RUN npm ci


FROM alpine FROM alpine
WORKDIR /app WORKDIR /app

View File

@ -99,17 +99,21 @@ func oauth2Exchange(c *gin.Context) {


cacheDb.Delete(loginVals.ClientId) cacheDb.Delete(loginVals.ClientId)


// check if user is in org // This is primarily used for github, but can be used for other oauth2 providers where it makes sense.
teamsEnv := os.Getenv("OAUTH2_TEAMS") // Check if user is in org, use OAUTH2_TEAMS if you want to further restrict access within an org. This is optional.
var teams []string if os.Getenv("OAUTH2_ORG") != "" {
if teamsEnv != "" {
teams = strings.Split(teamsEnv, ",")
}


inOrg, err := oauth2Client.CheckMembership(oauth2Token, os.Getenv("OAUTH2_ORG"), teams) teamsEnv := os.Getenv("OAUTH2_TEAMS")
if err != nil || !inOrg { var teams []string
c.AbortWithStatus(http.StatusForbidden) if teamsEnv != "" {
return teams = strings.Split(teamsEnv, ",")
}

inOrg, err := oauth2Client.CheckMembership(oauth2Token, os.Getenv("OAUTH2_ORG"), teams)
if err != nil || !inOrg {
c.AbortWithStatus(http.StatusForbidden)
return
}
} }


cacheDb.Set(oauth2Token.AccessToken, oauth2Token, cache.DefaultExpiration) cacheDb.Set(oauth2Token.AccessToken, oauth2Token, cache.DefaultExpiration)

View File

@ -51,6 +51,7 @@ func (o *Oauth2idc) CodeUrl(state string) string {


// Check if current user is in given org // Check if current user is in given org
func (o *Oauth2idc) CheckMembership(oauth2Token *oauth2.Token, org string, teams []string) (bool, error) { func (o *Oauth2idc) CheckMembership(oauth2Token *oauth2.Token, org string, teams []string) (bool, error) {
// TODO: Add real implementation
return false, nil return false, nil
} }



File diff suppressed because it is too large Load Diff