89 lines
1.9 KiB
Go
89 lines
1.9 KiB
Go
package plugin
|
||
|
||
import (
|
||
"encoding/json"
|
||
"errors"
|
||
"fmt"
|
||
"io"
|
||
"net/http"
|
||
"strings"
|
||
"time"
|
||
)
|
||
|
||
// fetchSentryProject получает информацию о проекте из Sentry API
|
||
func (p *Plugin) fetchSentryProject(projectSlug string) (*LinkedProject, error) {
|
||
cfg := p.GetConfiguration()
|
||
|
||
if cfg.SentryUrl == "" || cfg.SentryOrganisationName == "" || cfg.SentryAuthToken == "" {
|
||
return nil, errors.New("sentry is not configured")
|
||
}
|
||
|
||
url := fmt.Sprintf(
|
||
"%s/api/0/projects/%s/%s/",
|
||
strings.TrimRight(cfg.SentryUrl, "/"),
|
||
cfg.SentryOrganisationName,
|
||
projectSlug,
|
||
)
|
||
|
||
req, err := http.NewRequest(http.MethodGet, url, nil)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
req.Header.Set("Authorization", "Bearer "+cfg.SentryAuthToken)
|
||
req.Header.Set("Content-Type", "application/json")
|
||
|
||
client := &http.Client{Timeout: 10 * time.Second}
|
||
resp, err := client.Do(req)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
defer resp.Body.Close()
|
||
|
||
if resp.StatusCode != http.StatusOK {
|
||
body, _ := io.ReadAll(resp.Body)
|
||
return nil, fmt.Errorf("sentry api error (%d): %s", resp.StatusCode, body)
|
||
}
|
||
|
||
var result struct {
|
||
ID string `json:"id"`
|
||
Slug string `json:"slug"`
|
||
Name string `json:"name"`
|
||
}
|
||
|
||
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
if result.ID == "" {
|
||
return nil, errors.New("project id not found")
|
||
}
|
||
|
||
return &LinkedProject{
|
||
ID: result.ID,
|
||
Slug: result.Slug,
|
||
Name: result.Name,
|
||
}, nil
|
||
}
|
||
|
||
// linkProjectToChannel связывает проект Sentry с каналом Mattermost
|
||
func (p *Plugin) linkProjectToChannel(
|
||
projectSlug string,
|
||
channelID string,
|
||
hooks HookSettings,
|
||
) (*LinkedProject, error) {
|
||
project, err := p.fetchSentryProject(projectSlug)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
project.ChannelID = channelID
|
||
project.Hooks = hooks
|
||
|
||
if err := p.saveProject(project); err != nil {
|
||
return nil, err
|
||
}
|
||
|
||
return project, nil
|
||
}
|