summaryrefslogtreecommitdiffstats
path: root/app/brand.go
blob: 5fe24e15506ca00280db17d2c380df1620f5773b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package app

import (
	"mime/multipart"
	"net/http"

	"github.com/mattermost/platform/einterfaces"
	"github.com/mattermost/platform/model"
	"github.com/mattermost/platform/utils"
)

func SaveBrandImage(imageData *multipart.FileHeader) *model.AppError {
	if len(*utils.Cfg.FileSettings.DriverName) == 0 {
		return model.NewAppError("SaveBrandImage", "api.admin.upload_brand_image.storage.app_error", nil, "", http.StatusNotImplemented)
	}

	brandInterface := einterfaces.GetBrandInterface()
	if brandInterface == nil {
		return model.NewAppError("SaveBrandImage", "api.admin.upload_brand_image.not_available.app_error", nil, "", http.StatusNotImplemented)
	}

	if err := brandInterface.SaveBrandImage(imageData); err != nil {
		return err
	}

	return nil
}

func GetBrandImage() ([]byte, *model.AppError) {
	if len(*utils.Cfg.FileSettings.DriverName) == 0 {
		return nil, model.NewAppError("GetBrandImage", "api.admin.get_brand_image.storage.app_error", nil, "", http.StatusNotImplemented)
	}

	brandInterface := einterfaces.GetBrandInterface()
	if brandInterface == nil {
		return nil, model.NewAppError("GetBrandImage", "api.admin.get_brand_image.not_available.app_error", nil, "", http.StatusNotImplemented)
	}

	if img, err := brandInterface.GetBrandImage(); err != nil {
		return nil, err
	} else {
		return img, nil
	}
}