mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
* chore: Move httpmw to /coderd directory httpmw is specific to coderd and should be scoped under coderd * chore: Move httpapi to /coderd directory httpapi is specific to coderd and should be scoped under coderd * chore: Move database to /coderd directory database is specific to coderd and should be scoped under coderd * chore: Update codecov & gitattributes for generated files * chore: Update Makefile
60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
package httpmw
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/coder/coder/coderd/database"
|
|
"github.com/coder/coder/coderd/httpapi"
|
|
)
|
|
|
|
type workspaceParamContextKey struct{}
|
|
|
|
// WorkspaceParam returns the workspace from the ExtractWorkspaceParam handler.
|
|
func WorkspaceParam(r *http.Request) database.Workspace {
|
|
workspace, ok := r.Context().Value(workspaceParamContextKey{}).(database.Workspace)
|
|
if !ok {
|
|
panic("developer error: workspace param middleware not provided")
|
|
}
|
|
return workspace
|
|
}
|
|
|
|
// ExtractWorkspaceParam grabs a workspace from the "workspace" URL parameter.
|
|
func ExtractWorkspaceParam(db database.Store) func(http.Handler) http.Handler {
|
|
return func(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
|
workspaceID, parsed := parseUUID(rw, r, "workspace")
|
|
if !parsed {
|
|
return
|
|
}
|
|
workspace, err := db.GetWorkspaceByID(r.Context(), workspaceID)
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
httpapi.Write(rw, http.StatusNotFound, httpapi.Response{
|
|
Message: fmt.Sprintf("workspace %q does not exist", workspaceID),
|
|
})
|
|
return
|
|
}
|
|
if err != nil {
|
|
httpapi.Write(rw, http.StatusInternalServerError, httpapi.Response{
|
|
Message: fmt.Sprintf("get workspace: %s", err.Error()),
|
|
})
|
|
return
|
|
}
|
|
|
|
apiKey := APIKey(r)
|
|
if apiKey.UserID != workspace.OwnerID {
|
|
httpapi.Write(rw, http.StatusUnauthorized, httpapi.Response{
|
|
Message: "getting non-personal workspaces isn't supported",
|
|
})
|
|
return
|
|
}
|
|
|
|
ctx := context.WithValue(r.Context(), workspaceParamContextKey{}, workspace)
|
|
next.ServeHTTP(rw, r.WithContext(ctx))
|
|
})
|
|
}
|
|
}
|