Documentation ¶
Overview ¶
- Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
- This file is part of Pydio Cells. *
- Pydio Cells is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version. *
- Pydio Cells is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details. *
- You should have received a copy of the GNU Affero General Public License
- along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>. *
- The latest code can be found at <https://pydio.com>.
Package grpc provides the gRPC service to communicate with the Pydio's user persistence layer.
Index ¶
- Constants
- func CreateIfNotExists(ctx context.Context, dao user.DAO, user *idm.User) (*idm.User, error)
- func InitDefaults(ctx context.Context) error
- type Handler
- func (h *Handler) BindUser(ctx context.Context, req *idm.BindUserRequest, resp *idm.BindUserResponse) error
- func (h *Handler) CountUser(ctx context.Context, request *idm.SearchUserRequest, ...) error
- func (h *Handler) CreateUser(ctx context.Context, req *idm.CreateUserRequest, resp *idm.CreateUserResponse) error
- func (h *Handler) DeleteUser(ctx context.Context, req *idm.DeleteUserRequest, ...) error
- func (h *Handler) SearchUser(ctx context.Context, request *idm.SearchUserRequest, ...) error
- func (h *Handler) StreamUser(ctx context.Context, streamer idm.UserService_StreamUserStream) error
- type RolesCleaner
Constants ¶
View Source
const ( ENV_PYDIO_ADMIN_USER_LOGIN = "PYDIO_ADMIN_USER_LOGIN" ENV_PYDIO_ADMIN_USER_PASSWORD = "PYDIO_ADMIN_USER_PASSWORD" )
Variables ¶
This section is empty.
Functions ¶
func CreateIfNotExists ¶
CreateIfNotExists creates a user if DAO.Bind() call returns a 404 error.
func InitDefaults ¶
Types ¶
type Handler ¶
type Handler struct{}
Handler definition
func (*Handler) BindUser ¶
func (h *Handler) BindUser(ctx context.Context, req *idm.BindUserRequest, resp *idm.BindUserResponse) error
BindUser binds a user with login/password
func (*Handler) CountUser ¶
func (h *Handler) CountUser(ctx context.Context, request *idm.SearchUserRequest, response *idm.CountUserResponse) error
CountUser in database
func (*Handler) CreateUser ¶
func (h *Handler) CreateUser(ctx context.Context, req *idm.CreateUserRequest, resp *idm.CreateUserResponse) error
CreateUser adds or creates a user or a group in the underlying database.
func (*Handler) DeleteUser ¶
func (h *Handler) DeleteUser(ctx context.Context, req *idm.DeleteUserRequest, response *idm.DeleteUserResponse) error
DeleteUser from database
func (*Handler) SearchUser ¶
func (h *Handler) SearchUser(ctx context.Context, request *idm.SearchUserRequest, response idm.UserService_SearchUserStream) error
SearchUser in database
func (*Handler) StreamUser ¶
StreamUser from database
type RolesCleaner ¶ added in v1.2.1
rolesCleaner listen for roles deletion and clear the users accordingly
func (*RolesCleaner) Handle ¶ added in v1.2.1
func (c *RolesCleaner) Handle(ctx context.Context, msg *idm.ChangeEvent) error
Click to show internal directories.
Click to hide internal directories.