package model import "encoding/json" // AccessControl is a type determining client assigned authorization to a peer type AccessControl struct { Blocked bool // Any attempts from this handle to connect are blocked Read bool // Allows a handle to access the conversation Append bool // Allows a handle to append new messages to the conversation } // DefaultP2PAccessControl - because in the year 2021, go does not support constant structs... func DefaultP2PAccessControl() AccessControl { return AccessControl{Read: true, Append: true, Blocked: false} } // AccessControlList represents an access control list for a conversation. Mapping handles to conversation // functions type AccessControlList map[string]AccessControl // Serialize transforms the ACL into json. func (acl *AccessControlList) Serialize() []byte { data, _ := json.Marshal(acl) return data } // DeserializeAccessControlList takes in JSON and returns an AccessControlList func DeserializeAccessControlList(data []byte) AccessControlList { var acl AccessControlList json.Unmarshal(data, &acl) return acl } // Attributes a type-driven encapsulation of an Attribute map. type Attributes map[string]string // Serialize transforms an Attributes map into a JSON struct func (a *Attributes) Serialize() []byte { data, _ := json.Marshal(a) return data } // DeserializeAttributes convers a JSON struct into an Attributes map func DeserializeAttributes(data []byte) Attributes { var attributes Attributes json.Unmarshal(data, &attributes) return attributes } // Conversation encapsulates high-level information about a conversation, including the // handle, any set attributes, the access control list associated with the message tree and the // accepted status of the conversation (whether the user has consented into the conversation). type Conversation struct { ID int Handle string Attributes Attributes ACL AccessControlList Accepted bool }