mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* MM-34434: Added 'is_trial' boolean to all trial license requests and to the License struct. * MM-34434: Generalized the concept of a license request. * MM-34434: Verifies JSON field of license instance is set. * MM-34434: Added missing client param. * MM-34434: Added some tests of the request trial API endpoint. * MM-34434: Removed comment. * fix broken test (#17348) * Add missing wrapped errors (#17339) * Improve document extraction and including a document extraction command (#17183) * Add extract documents content command * Adding the extraction command and making the pure go pdf library as secondary option * Improving the memory usage and docextractor interface * Enable content extraction by default in all the instances * Tiny improvement on archive indexing * Adding App interface generation and the opentracing layer * Fixing linter errors * Addressing PR review comments * Addressing PR review comments * Update en.json (#17356) Automatic Merge * adding new feature flag (#17308) Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MacBook-Pro.local> Co-authored-by: Mattermod <mattermod@users.noreply.github.com> * Bump no_output_timeout to 2 hours (#17358) * log invalid username (#17345) Automatic Merge * MM-34434: Added missing client param. MM-34434: Added some tests of the request trial API endpoint. MM-34434: Removed comment. * MM-34434: Switched to a hard-coded true value. * MM-34434: Reverts test change. * MM-34434: Removes unnecessary field. * MM-34434: Tests that is_trial is hard-coded by TrialLicenseRequest. * MM-34434: Removed accidental commit. * MM-34434: Removes unnecessary is_trial key from JSON payload. * MM-34434: Reverts to old pointer receiver variable name. * MM-34434: Removes test. * #MM-34437 Initialized license service * ##MM-34437 Verified at all points if server is trial elligible * WIp * #MM-34437 removed unused commented code * MM-34437 make a log less severe * #MM-34437 generated einterface mocks * #MM-34437 added license on new file * #MM-34437 removed unused translation * #MM-34437 some refactoring * Update api4/license.go * Update api4/license.go * #MM-34437 made a variable name consistent * #MM-34437 Added mocks for lince validator * #M--34437 Added license validator test framework * #MM-34437 Renamed isTrial method to isTrialLicense to avoid conflict with newlya dded field * #M--34437 Allowed sales-sanctioned trials * #MM-34437 fixed trial license API tests * Added tests for add license API * #MM-34437 fixed ValidateLicense test * #MM-34437 Added util tests * #MM-34437 using NoError for checking no error * #MM-34437 using NoError for checking no error * Added dummy piblic key for testing * Fixed tests * #MM-34437 udpaetd trial license URL for testing * #MM-34437 adjusted times for licences generated through admin portal * Reverted test-only changes Co-authored-by: Martin Kraft <martin@upspin.org> Co-authored-by: Hossein <hahmadia@users.noreply.github.com> Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com> Co-authored-by: Jesús Espino <jespinog@gmail.com> Co-authored-by: Amy Blais <amy_blais@hotmail.com> Co-authored-by: Ben Cooke <benkcooke@gmail.com> Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MacBook-Pro.local> Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in> Co-authored-by: Max Erenberg <max.erenberg@mattermost.com>
236 lines
7.3 KiB
Go
236 lines
7.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/v5/einterfaces"
|
|
ejobs "github.com/mattermost/mattermost-server/v5/einterfaces/jobs"
|
|
tjobs "github.com/mattermost/mattermost-server/v5/jobs/interfaces"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/services/searchengine"
|
|
"github.com/mattermost/mattermost-server/v5/shared/mlog"
|
|
)
|
|
|
|
var accountMigrationInterface func(*Server) einterfaces.AccountMigrationInterface
|
|
|
|
func RegisterAccountMigrationInterface(f func(*Server) einterfaces.AccountMigrationInterface) {
|
|
accountMigrationInterface = f
|
|
}
|
|
|
|
var clusterInterface func(*Server) einterfaces.ClusterInterface
|
|
|
|
func RegisterClusterInterface(f func(*Server) einterfaces.ClusterInterface) {
|
|
clusterInterface = f
|
|
}
|
|
|
|
var complianceInterface func(*Server) einterfaces.ComplianceInterface
|
|
|
|
func RegisterComplianceInterface(f func(*Server) einterfaces.ComplianceInterface) {
|
|
complianceInterface = f
|
|
}
|
|
|
|
var dataRetentionInterface func(*Server) einterfaces.DataRetentionInterface
|
|
|
|
func RegisterDataRetentionInterface(f func(*Server) einterfaces.DataRetentionInterface) {
|
|
dataRetentionInterface = f
|
|
}
|
|
|
|
var elasticsearchInterface func(*Server) searchengine.SearchEngineInterface
|
|
|
|
func RegisterElasticsearchInterface(f func(*Server) searchengine.SearchEngineInterface) {
|
|
elasticsearchInterface = f
|
|
}
|
|
|
|
var jobsDataRetentionJobInterface func(*Server) ejobs.DataRetentionJobInterface
|
|
|
|
func RegisterJobsDataRetentionJobInterface(f func(*Server) ejobs.DataRetentionJobInterface) {
|
|
jobsDataRetentionJobInterface = f
|
|
}
|
|
|
|
var jobsMessageExportJobInterface func(*Server) ejobs.MessageExportJobInterface
|
|
|
|
func RegisterJobsMessageExportJobInterface(f func(*Server) ejobs.MessageExportJobInterface) {
|
|
jobsMessageExportJobInterface = f
|
|
}
|
|
|
|
var jobsElasticsearchAggregatorInterface func(*Server) ejobs.ElasticsearchAggregatorInterface
|
|
|
|
func RegisterJobsElasticsearchAggregatorInterface(f func(*Server) ejobs.ElasticsearchAggregatorInterface) {
|
|
jobsElasticsearchAggregatorInterface = f
|
|
}
|
|
|
|
var jobsElasticsearchIndexerInterface func(*Server) tjobs.IndexerJobInterface
|
|
|
|
func RegisterJobsElasticsearchIndexerInterface(f func(*Server) tjobs.IndexerJobInterface) {
|
|
jobsElasticsearchIndexerInterface = f
|
|
}
|
|
|
|
var jobsLdapSyncInterface func(*Server) ejobs.LdapSyncInterface
|
|
|
|
func RegisterJobsLdapSyncInterface(f func(*Server) ejobs.LdapSyncInterface) {
|
|
jobsLdapSyncInterface = f
|
|
}
|
|
|
|
var jobsMigrationsInterface func(*Server) tjobs.MigrationsJobInterface
|
|
|
|
func RegisterJobsMigrationsJobInterface(f func(*Server) tjobs.MigrationsJobInterface) {
|
|
jobsMigrationsInterface = f
|
|
}
|
|
|
|
var jobsPluginsInterface func(*Server) tjobs.PluginsJobInterface
|
|
|
|
func RegisterJobsPluginsJobInterface(f func(*Server) tjobs.PluginsJobInterface) {
|
|
jobsPluginsInterface = f
|
|
}
|
|
|
|
var jobsBleveIndexerInterface func(*Server) tjobs.IndexerJobInterface
|
|
|
|
func RegisterJobsBleveIndexerInterface(f func(*Server) tjobs.IndexerJobInterface) {
|
|
jobsBleveIndexerInterface = f
|
|
}
|
|
|
|
var jobsActiveUsersInterface func(*Server) tjobs.ActiveUsersJobInterface
|
|
|
|
func RegisterJobsActiveUsersInterface(f func(*Server) tjobs.ActiveUsersJobInterface) {
|
|
jobsActiveUsersInterface = f
|
|
}
|
|
|
|
var jobsResendInvitationEmailInterface func(*Server) ejobs.ResendInvitationEmailJobInterface
|
|
|
|
// RegisterJobsResendInvitationEmailInterface is used to register or initialize the jobsResendInvitationEmailInterface
|
|
func RegisterJobsResendInvitationEmailInterface(f func(*Server) ejobs.ResendInvitationEmailJobInterface) {
|
|
jobsResendInvitationEmailInterface = f
|
|
}
|
|
|
|
var jobsCloudInterface func(*Server) ejobs.CloudJobInterface
|
|
|
|
func RegisterJobsCloudInterface(f func(*Server) ejobs.CloudJobInterface) {
|
|
jobsCloudInterface = f
|
|
}
|
|
|
|
var jobsExpiryNotifyInterface func(*Server) tjobs.ExpiryNotifyJobInterface
|
|
|
|
func RegisterJobsExpiryNotifyJobInterface(f func(*Server) tjobs.ExpiryNotifyJobInterface) {
|
|
jobsExpiryNotifyInterface = f
|
|
}
|
|
|
|
var jobsImportProcessInterface func(*Server) tjobs.ImportProcessInterface
|
|
|
|
func RegisterJobsImportProcessInterface(f func(*Server) tjobs.ImportProcessInterface) {
|
|
jobsImportProcessInterface = f
|
|
}
|
|
|
|
var jobsImportDeleteInterface func(*Server) tjobs.ImportDeleteInterface
|
|
|
|
func RegisterJobsImportDeleteInterface(f func(*Server) tjobs.ImportDeleteInterface) {
|
|
jobsImportDeleteInterface = f
|
|
}
|
|
|
|
var jobsExportProcessInterface func(*Server) tjobs.ExportProcessInterface
|
|
|
|
func RegisterJobsExportProcessInterface(f func(*Server) tjobs.ExportProcessInterface) {
|
|
jobsExportProcessInterface = f
|
|
}
|
|
|
|
var jobsExportDeleteInterface func(*Server) tjobs.ExportDeleteInterface
|
|
|
|
func RegisterJobsExportDeleteInterface(f func(*Server) tjobs.ExportDeleteInterface) {
|
|
jobsExportDeleteInterface = f
|
|
}
|
|
|
|
var productNoticesJobInterface func(*Server) tjobs.ProductNoticesJobInterface
|
|
|
|
func RegisterProductNoticesJobInterface(f func(*Server) tjobs.ProductNoticesJobInterface) {
|
|
productNoticesJobInterface = f
|
|
}
|
|
|
|
var ldapInterface func(*Server) einterfaces.LdapInterface
|
|
|
|
func RegisterLdapInterface(f func(*Server) einterfaces.LdapInterface) {
|
|
ldapInterface = f
|
|
}
|
|
|
|
var messageExportInterface func(*Server) einterfaces.MessageExportInterface
|
|
|
|
func RegisterMessageExportInterface(f func(*Server) einterfaces.MessageExportInterface) {
|
|
messageExportInterface = f
|
|
}
|
|
|
|
var cloudInterface func(*Server) einterfaces.CloudInterface
|
|
|
|
func RegisterCloudInterface(f func(*Server) einterfaces.CloudInterface) {
|
|
cloudInterface = f
|
|
}
|
|
|
|
var metricsInterface func(*Server) einterfaces.MetricsInterface
|
|
|
|
func RegisterMetricsInterface(f func(*Server) einterfaces.MetricsInterface) {
|
|
metricsInterface = f
|
|
}
|
|
|
|
var samlInterfaceNew func(*Server) einterfaces.SamlInterface
|
|
|
|
func RegisterNewSamlInterface(f func(*Server) einterfaces.SamlInterface) {
|
|
samlInterfaceNew = f
|
|
}
|
|
|
|
var notificationInterface func(*Server) einterfaces.NotificationInterface
|
|
|
|
func RegisterNotificationInterface(f func(*Server) einterfaces.NotificationInterface) {
|
|
notificationInterface = f
|
|
}
|
|
|
|
var licenseInterface func(*Server) einterfaces.LicenseInterface
|
|
|
|
func RegisterLicenseInterface(f func(*Server) einterfaces.LicenseInterface) {
|
|
licenseInterface = f
|
|
}
|
|
|
|
func (s *Server) initEnterprise() {
|
|
if metricsInterface != nil {
|
|
s.Metrics = metricsInterface(s)
|
|
}
|
|
if complianceInterface != nil {
|
|
s.Compliance = complianceInterface(s)
|
|
}
|
|
if messageExportInterface != nil {
|
|
s.MessageExport = messageExportInterface(s)
|
|
}
|
|
if dataRetentionInterface != nil {
|
|
s.DataRetention = dataRetentionInterface(s)
|
|
}
|
|
if clusterInterface != nil {
|
|
s.Cluster = clusterInterface(s)
|
|
}
|
|
if elasticsearchInterface != nil {
|
|
s.SearchEngine.RegisterElasticsearchEngine(elasticsearchInterface(s))
|
|
}
|
|
|
|
if licenseInterface != nil {
|
|
s.LicenseManager = licenseInterface(s)
|
|
}
|
|
|
|
if accountMigrationInterface != nil {
|
|
s.AccountMigration = accountMigrationInterface(s)
|
|
}
|
|
if ldapInterface != nil {
|
|
s.Ldap = ldapInterface(s)
|
|
}
|
|
if notificationInterface != nil {
|
|
s.Notification = notificationInterface(s)
|
|
}
|
|
if samlInterfaceNew != nil {
|
|
mlog.Debug("Loading SAML2 library")
|
|
s.Saml = samlInterfaceNew(s)
|
|
if err := s.Saml.ConfigureSP(); err != nil {
|
|
mlog.Error("An error occurred while configuring SAML Service Provider", mlog.Err(err))
|
|
}
|
|
s.AddConfigListener(func(_, cfg *model.Config) {
|
|
if err := s.Saml.ConfigureSP(); err != nil {
|
|
mlog.Error("An error occurred while configuring SAML Service Provider", mlog.Err(err))
|
|
}
|
|
})
|
|
}
|
|
}
|