5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 13:42:30 +00:00
matterbridge/vendor/github.com/mattermost/platform/model/license.go

210 lines
5.3 KiB
Go
Raw Normal View History

2017-08-16 21:37:37 +00:00
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
2016-04-10 21:39:38 +00:00
// See License.txt for license information.
package model
import (
"encoding/json"
"io"
2018-02-08 23:11:04 +00:00
"net/http"
2016-04-10 21:39:38 +00:00
)
2017-03-25 20:04:10 +00:00
const (
EXPIRED_LICENSE_ERROR = "api.license.add_license.expired.app_error"
INVALID_LICENSE_ERROR = "api.license.add_license.invalid.app_error"
)
2016-04-10 21:39:38 +00:00
type LicenseRecord struct {
Id string `json:"id"`
CreateAt int64 `json:"create_at"`
Bytes string `json:"-"`
}
type License struct {
Id string `json:"id"`
IssuedAt int64 `json:"issued_at"`
StartsAt int64 `json:"starts_at"`
ExpiresAt int64 `json:"expires_at"`
Customer *Customer `json:"customer"`
Features *Features `json:"features"`
}
type Customer struct {
Id string `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Company string `json:"company"`
PhoneNumber string `json:"phone_number"`
}
type Features struct {
2017-08-16 21:37:37 +00:00
Users *int `json:"users"`
LDAP *bool `json:"ldap"`
MFA *bool `json:"mfa"`
GoogleOAuth *bool `json:"google_oauth"`
Office365OAuth *bool `json:"office365_oauth"`
Compliance *bool `json:"compliance"`
Cluster *bool `json:"cluster"`
Metrics *bool `json:"metrics"`
CustomBrand *bool `json:"custom_brand"`
MHPNS *bool `json:"mhpns"`
SAML *bool `json:"saml"`
PasswordRequirements *bool `json:"password_requirements"`
Elasticsearch *bool `json:"elastic_search"`
Announcement *bool `json:"announcement"`
2018-02-08 23:11:04 +00:00
ThemeManagement *bool `json:"theme_management"`
2017-08-16 21:37:37 +00:00
EmailNotificationContents *bool `json:"email_notification_contents"`
2018-02-08 23:11:04 +00:00
DataRetention *bool `json:"data_retention"`
MessageExport *bool `json:"message_export"`
2017-08-16 21:37:37 +00:00
2016-11-12 21:00:53 +00:00
// after we enabled more features for webrtc we'll need to control them with this
FutureFeatures *bool `json:"future_features"`
2016-04-10 21:39:38 +00:00
}
2016-09-17 13:19:18 +00:00
func (f *Features) ToMap() map[string]interface{} {
return map[string]interface{}{
2017-08-16 21:37:37 +00:00
"ldap": *f.LDAP,
"mfa": *f.MFA,
"google": *f.GoogleOAuth,
"office365": *f.Office365OAuth,
"compliance": *f.Compliance,
"cluster": *f.Cluster,
"metrics": *f.Metrics,
"custom_brand": *f.CustomBrand,
"mhpns": *f.MHPNS,
"saml": *f.SAML,
"password": *f.PasswordRequirements,
"elastic_search": *f.Elasticsearch,
"email_notification_contents": *f.EmailNotificationContents,
2018-02-08 23:11:04 +00:00
"data_retention": *f.DataRetention,
"message_export": *f.MessageExport,
2017-08-16 21:37:37 +00:00
"future": *f.FutureFeatures,
2016-09-17 13:19:18 +00:00
}
}
2016-04-10 21:39:38 +00:00
func (f *Features) SetDefaults() {
2016-04-16 18:39:43 +00:00
if f.FutureFeatures == nil {
2018-02-08 23:11:04 +00:00
f.FutureFeatures = NewBool(true)
2016-04-16 18:39:43 +00:00
}
2016-04-10 21:39:38 +00:00
if f.Users == nil {
2018-02-08 23:11:04 +00:00
f.Users = NewInt(0)
2016-04-10 21:39:38 +00:00
}
if f.LDAP == nil {
2018-02-08 23:11:04 +00:00
f.LDAP = NewBool(*f.FutureFeatures)
2016-04-10 21:39:38 +00:00
}
2016-05-15 21:02:30 +00:00
if f.MFA == nil {
2018-02-08 23:11:04 +00:00
f.MFA = NewBool(*f.FutureFeatures)
2016-05-15 21:02:30 +00:00
}
2016-08-15 16:47:31 +00:00
if f.GoogleOAuth == nil {
2018-02-08 23:11:04 +00:00
f.GoogleOAuth = NewBool(*f.FutureFeatures)
2016-08-15 16:47:31 +00:00
}
if f.Office365OAuth == nil {
2018-02-08 23:11:04 +00:00
f.Office365OAuth = NewBool(*f.FutureFeatures)
2016-04-10 21:39:38 +00:00
}
2016-05-15 21:02:30 +00:00
if f.Compliance == nil {
2018-02-08 23:11:04 +00:00
f.Compliance = NewBool(*f.FutureFeatures)
2016-05-15 21:02:30 +00:00
}
2016-08-15 16:47:31 +00:00
if f.Cluster == nil {
2018-02-08 23:11:04 +00:00
f.Cluster = NewBool(*f.FutureFeatures)
2016-08-15 16:47:31 +00:00
}
2017-01-16 22:59:50 +00:00
if f.Metrics == nil {
2018-02-08 23:11:04 +00:00
f.Metrics = NewBool(*f.FutureFeatures)
2017-01-16 22:59:50 +00:00
}
2016-05-15 21:02:30 +00:00
if f.CustomBrand == nil {
2018-02-08 23:11:04 +00:00
f.CustomBrand = NewBool(*f.FutureFeatures)
2016-05-15 21:02:30 +00:00
}
2016-04-16 18:39:43 +00:00
if f.MHPNS == nil {
2018-02-08 23:11:04 +00:00
f.MHPNS = NewBool(*f.FutureFeatures)
2016-04-10 21:39:38 +00:00
}
2016-07-22 21:14:13 +00:00
if f.SAML == nil {
2018-02-08 23:11:04 +00:00
f.SAML = NewBool(*f.FutureFeatures)
2016-07-22 21:14:13 +00:00
}
if f.PasswordRequirements == nil {
2018-02-08 23:11:04 +00:00
f.PasswordRequirements = NewBool(*f.FutureFeatures)
2016-07-22 21:14:13 +00:00
}
2017-08-16 21:37:37 +00:00
if f.Elasticsearch == nil {
2018-02-08 23:11:04 +00:00
f.Elasticsearch = NewBool(*f.FutureFeatures)
2017-08-16 21:37:37 +00:00
}
if f.Announcement == nil {
2018-02-08 23:11:04 +00:00
f.Announcement = NewBool(true)
}
if f.ThemeManagement == nil {
f.ThemeManagement = NewBool(true)
2017-08-16 21:37:37 +00:00
}
if f.EmailNotificationContents == nil {
2018-02-08 23:11:04 +00:00
f.EmailNotificationContents = NewBool(*f.FutureFeatures)
}
if f.DataRetention == nil {
f.DataRetention = NewBool(*f.FutureFeatures)
}
if f.MessageExport == nil {
f.MessageExport = NewBool(*f.FutureFeatures)
2017-08-16 21:37:37 +00:00
}
2016-04-10 21:39:38 +00:00
}
func (l *License) IsExpired() bool {
2018-02-08 23:11:04 +00:00
return l.ExpiresAt < GetMillis()
2016-04-10 21:39:38 +00:00
}
func (l *License) IsStarted() bool {
2018-02-08 23:11:04 +00:00
return l.StartsAt < GetMillis()
2016-04-10 21:39:38 +00:00
}
func (l *License) ToJson() string {
b, err := json.Marshal(l)
if err != nil {
return ""
} else {
return string(b)
}
}
func LicenseFromJson(data io.Reader) *License {
decoder := json.NewDecoder(data)
var o License
err := decoder.Decode(&o)
if err == nil {
return &o
} else {
return nil
}
}
func (lr *LicenseRecord) IsValid() *AppError {
if len(lr.Id) != 26 {
2018-02-08 23:11:04 +00:00
return NewAppError("LicenseRecord.IsValid", "model.license_record.is_valid.id.app_error", nil, "", http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
if lr.CreateAt == 0 {
2018-02-08 23:11:04 +00:00
return NewAppError("LicenseRecord.IsValid", "model.license_record.is_valid.create_at.app_error", nil, "", http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
if len(lr.Bytes) == 0 || len(lr.Bytes) > 10000 {
2018-02-08 23:11:04 +00:00
return NewAppError("LicenseRecord.IsValid", "model.license_record.is_valid.create_at.app_error", nil, "", http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
return nil
}
func (lr *LicenseRecord) PreSave() {
lr.CreateAt = GetMillis()
}