drone/internal/api/handler/users/find.go

36 lines
905 B
Go

// Copyright 2021 Harness Inc. All rights reserved.
// Use of this source code is governed by the Polyform Free Trial License
// that can be found in the LICENSE.md file for this repository.
package users
import (
"net/http"
"github.com/harness/scm/internal/api/render"
"github.com/harness/scm/internal/store"
"github.com/rs/zerolog/hlog"
"github.com/go-chi/chi"
)
// HandleFind returns an http.HandlerFunc that writes json-encoded
// user account information to the the response body.
func HandleFind(users store.UserStore) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
log := hlog.FromRequest(r)
key := chi.URLParam(r, "user")
user, err := users.FindKey(ctx, key)
if err != nil {
render.NotFound(w, err)
log.Debug().Err(err).
Str("user_key", key).
Msg("cannot find user")
} else {
render.JSON(w, user, 200)
}
}
}