mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
40 lines
695 B
Go
40 lines
695 B
Go
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
// See License.txt for license information.
|
||
|
|
||
|
package model
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type PluginInfo struct {
|
||
|
Manifest
|
||
|
Prepackaged bool `json:"prepackaged"`
|
||
|
}
|
||
|
|
||
|
type PluginsResponse struct {
|
||
|
Active []*PluginInfo `json:"active"`
|
||
|
Inactive []*PluginInfo `json:"inactive"`
|
||
|
}
|
||
|
|
||
|
func (m *PluginsResponse) ToJson() string {
|
||
|
b, err := json.Marshal(m)
|
||
|
if err != nil {
|
||
|
return ""
|
||
|
} else {
|
||
|
return string(b)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func PluginsResponseFromJson(data io.Reader) *PluginsResponse {
|
||
|
decoder := json.NewDecoder(data)
|
||
|
var m PluginsResponse
|
||
|
err := decoder.Decode(&m)
|
||
|
if err == nil {
|
||
|
return &m
|
||
|
} else {
|
||
|
return nil
|
||
|
}
|
||
|
}
|