mirror of
https://github.com/status-im/status-go.git
synced 2025-01-20 19:52:42 +00:00
2cbced95c5
This adds checks to `HandleCommunityRequestToJoin` and `AcceptRequestToJoinCommunity` that ensure a given user's revealed wallet addresses own the token funds required by a community. When community has token permissions of type `BECOME_MEMBER`, the following happens when the owner receives a request: 1. Upon verifying provided wallet addresses by the requester, the owner node accumulates all token funds related to the given wallets that match the token criteria in the configured permissions 2. If the requester does not meet the necessary requirements, the request to join will be declined. If the requester does have the funds, he'll either be automatically accepted to the community, or enters the next stage where an owner needs to manually accept the request. 3. The the community does not automatically accept users, then the funds check will happen again, when the owner tries to manually accept the request. If the necessary funds do not exist at this stage, the request will be declined 4. Upon accepting, whether automatically or manually, the owner adds the requester's wallet addresses to the `CommunityDescription`, such that they can be retrieved later when doing periodic checks or when permissions have changed.
37 lines
2.5 KiB
Go
37 lines
2.5 KiB
Go
package communities
|
|
|
|
import "errors"
|
|
|
|
var ErrChatNotFound = errors.New("chat not found")
|
|
var ErrCategoryNotFound = errors.New("category not found")
|
|
var ErrNoChangeInPosition = errors.New("no change in category position")
|
|
var ErrChatAlreadyAssigned = errors.New("chat already assigned to a category")
|
|
var ErrOrgNotFound = errors.New("community not found")
|
|
var ErrChatAlreadyExists = errors.New("chat already exists")
|
|
var ErrCategoryAlreadyExists = errors.New("category already exists")
|
|
var ErrCantRequestAccess = errors.New("can't request access")
|
|
var ErrInvalidCommunityDescription = errors.New("invalid community description")
|
|
var ErrInvalidCommunityDescriptionNoOrgPermissions = errors.New("invalid community description no org permissions")
|
|
var ErrInvalidCommunityDescriptionNoChatPermissions = errors.New("invalid community description no chat permissions")
|
|
var ErrInvalidCommunityDescriptionUnknownChatAccess = errors.New("invalid community description unknown chat access")
|
|
var ErrInvalidCommunityDescriptionUnknownOrgAccess = errors.New("invalid community description unknown org access")
|
|
var ErrInvalidCommunityDescriptionMemberInChatButNotInOrg = errors.New("invalid community description member in chat but not in org")
|
|
var ErrInvalidCommunityDescriptionCategoryNoID = errors.New("invalid community category id")
|
|
var ErrInvalidCommunityDescriptionCategoryNoName = errors.New("invalid community category name")
|
|
var ErrInvalidCommunityDescriptionChatIdentity = errors.New("invalid community chat name, missing")
|
|
var ErrInvalidCommunityDescriptionDuplicatedName = errors.New("invalid community chat name, duplicated")
|
|
var ErrInvalidCommunityDescriptionUnknownChatCategory = errors.New("invalid community category in chat")
|
|
var ErrInvalidCommunityTags = errors.New("invalid community tags")
|
|
var ErrNotAdmin = errors.New("no admin privileges for this community")
|
|
var ErrInvalidGrant = errors.New("invalid grant")
|
|
var ErrNotAuthorized = errors.New("not authorized")
|
|
var ErrAlreadyMember = errors.New("already a member")
|
|
var ErrAlreadyJoined = errors.New("already joined")
|
|
var ErrInvalidMessage = errors.New("invalid community description message")
|
|
var ErrMemberNotFound = errors.New("member not found")
|
|
var ErrTokenPermissionAlreadyExists = errors.New("token permission already exists")
|
|
var ErrTokenPermissionNotFound = errors.New("token permission not found")
|
|
var ErrNoPermissionToJoin = errors.New("member has no permission to join")
|
|
var ErrMemberWalletAlreadyExists = errors.New("member wallet already exists")
|
|
var ErrMemberWalletNotFound = errors.New("member wallet not found")
|