mirror of
https://github.com/documize/community.git
synced 2025-07-19 05:09:42 +02:00
104 lines
2.6 KiB
Go
104 lines
2.6 KiB
Go
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
//
|
|
// This software (Documize Community Edition) is licensed under
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
//
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
// by contacting <sales@documize.com>.
|
|
//
|
|
// https://documize.com
|
|
|
|
package space
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/documize/community/core/api/mail"
|
|
"github.com/documize/community/core/secrets"
|
|
"github.com/documize/community/core/uniqueid"
|
|
"github.com/documize/community/domain"
|
|
"github.com/documize/community/model/account"
|
|
"github.com/documize/community/model/space"
|
|
"github.com/documize/community/model/user"
|
|
)
|
|
|
|
// addSpace prepares and creates space record.
|
|
func addSpace(ctx domain.RequestContext, s *domain.Store, sp space.Space) (err error) {
|
|
sp.Type = space.ScopePrivate
|
|
sp.UserID = ctx.UserID
|
|
|
|
err = s.Space.Add(ctx, sp)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
role := space.Role{}
|
|
role.LabelID = sp.RefID
|
|
role.OrgID = sp.OrgID
|
|
role.UserID = ctx.UserID
|
|
role.CanEdit = true
|
|
role.CanView = true
|
|
role.RefID = uniqueid.Generate()
|
|
|
|
err = s.Space.AddRole(ctx, role)
|
|
|
|
return
|
|
}
|
|
|
|
// Invite new user to a folder that someone has shared with them.
|
|
// We create the user account with default values and then take them
|
|
// through a welcome process designed to capture profile data.
|
|
// We add them to the organization and grant them view-only folder access.
|
|
func inviteNewUserToSharedSpace(ctx domain.RequestContext, s *domain.Store, email string, invitedBy user.User,
|
|
baseURL string, sp space.Space, invitationMessage string) (err error) {
|
|
|
|
var u = user.User{}
|
|
u.Email = email
|
|
u.Firstname = email
|
|
u.Lastname = ""
|
|
u.Salt = secrets.GenerateSalt()
|
|
requestedPassword := secrets.GenerateRandomPassword()
|
|
u.Password = secrets.GeneratePassword(requestedPassword, u.Salt)
|
|
userID := uniqueid.Generate()
|
|
u.RefID = userID
|
|
|
|
err = s.User.Add(ctx, u)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Let's give this user access to the organization
|
|
var a account.Account
|
|
a.UserID = userID
|
|
a.OrgID = ctx.OrgID
|
|
a.Admin = false
|
|
a.Editor = false
|
|
a.Active = true
|
|
accountID := uniqueid.Generate()
|
|
a.RefID = accountID
|
|
|
|
err = s.Account.Add(ctx, a)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
role := space.Role{}
|
|
role.LabelID = sp.RefID
|
|
role.OrgID = ctx.OrgID
|
|
role.UserID = userID
|
|
role.CanEdit = false
|
|
role.CanView = true
|
|
roleID := uniqueid.Generate()
|
|
role.RefID = roleID
|
|
|
|
err = s.Space.AddRole(ctx, role)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
url := fmt.Sprintf("%s/%s", baseURL, u.Salt)
|
|
go mail.ShareFolderNewUser(u.Email, invitedBy.Fullname(), url, sp.Name, invitationMessage)
|
|
|
|
return
|
|
}
|