2020-11-25 19:44:45 +00:00
|
|
|
// Copyright (c) 2020, the Drone Plugins project authors.
|
2021-09-13 21:00:00 +00:00
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
|
2020-11-25 19:44:45 +00:00
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
2023-08-15 22:15:24 +00:00
|
|
|
"context"
|
2023-02-08 09:14:07 +00:00
|
|
|
"errors"
|
2020-11-25 19:44:45 +00:00
|
|
|
"fmt"
|
|
|
|
|
2023-08-15 22:15:24 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2024-05-11 08:25:15 +00:00
|
|
|
"github.com/thegeeklab/wp-matrix/matrix"
|
2024-05-17 19:50:20 +00:00
|
|
|
plugin_template "github.com/thegeeklab/wp-plugin-go/v3/template"
|
2020-11-25 19:44:45 +00:00
|
|
|
)
|
|
|
|
|
2023-02-08 09:14:07 +00:00
|
|
|
var ErrAuthSourceNotSet = errors.New("either username and password or userid and accesstoken are required")
|
|
|
|
|
2023-08-15 22:15:24 +00:00
|
|
|
//nolint:revive
|
2023-08-21 09:36:07 +00:00
|
|
|
func (p *Plugin) run(ctx context.Context) error {
|
2023-08-15 22:15:24 +00:00
|
|
|
if err := p.Validate(); err != nil {
|
|
|
|
return fmt.Errorf("validation failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := p.Execute(); err != nil {
|
|
|
|
return fmt.Errorf("execution failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-25 19:44:45 +00:00
|
|
|
// Validate handles the settings validation of the plugin.
|
|
|
|
func (p *Plugin) Validate() error {
|
2023-08-15 22:15:24 +00:00
|
|
|
if (p.Settings.Username == "" || p.Settings.Password == "") &&
|
|
|
|
(p.Settings.UserID == "" || p.Settings.AccessToken == "") {
|
2023-02-08 09:14:07 +00:00
|
|
|
return ErrAuthSourceNotSet
|
2022-05-28 14:56:24 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 19:44:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute provides the implementation of the plugin.
|
|
|
|
func (p *Plugin) Execute() error {
|
2024-05-11 08:25:15 +00:00
|
|
|
msg, err := p.CreateMessage()
|
2020-11-25 19:44:45 +00:00
|
|
|
if err != nil {
|
2024-05-11 08:25:15 +00:00
|
|
|
return fmt.Errorf("failed to create message: %w", err)
|
2020-11-25 19:44:45 +00:00
|
|
|
}
|
|
|
|
|
2024-05-11 08:25:15 +00:00
|
|
|
client, err := matrix.NewClient(
|
|
|
|
p.Network.Context,
|
|
|
|
p.Settings.Homeserver,
|
|
|
|
p.Settings.RoomID,
|
|
|
|
p.Settings.UserID,
|
|
|
|
p.Settings.AccessToken,
|
|
|
|
p.Settings.Username,
|
|
|
|
p.Settings.Password,
|
|
|
|
)
|
2020-11-25 19:44:45 +00:00
|
|
|
if err != nil {
|
2024-05-11 08:25:15 +00:00
|
|
|
return fmt.Errorf("failed to initialize client: %w", err)
|
2020-11-25 19:44:45 +00:00
|
|
|
}
|
|
|
|
|
2024-05-11 08:25:15 +00:00
|
|
|
client.Message.Opt = matrix.MessageOptions{
|
|
|
|
RoomID: client.Message.Opt.RoomID,
|
2024-05-10 06:42:59 +00:00
|
|
|
Message: msg,
|
|
|
|
TemplateUnsafe: p.Settings.TemplateUnsafe,
|
2020-11-25 19:44:45 +00:00
|
|
|
}
|
2023-02-08 09:14:07 +00:00
|
|
|
|
2024-05-10 06:42:59 +00:00
|
|
|
if err := client.Message.Send(p.Network.Context); err != nil {
|
|
|
|
return fmt.Errorf("failed to send message: %w", err)
|
2023-12-06 20:53:01 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 06:42:59 +00:00
|
|
|
log.Info().Msg("message sent successfully")
|
2023-12-06 20:53:01 +00:00
|
|
|
|
2024-05-10 06:42:59 +00:00
|
|
|
return nil
|
2023-12-06 20:53:01 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 06:42:59 +00:00
|
|
|
// CreateMessage generates a message string based on the plugin's template and metadata.
|
|
|
|
func (p *Plugin) CreateMessage() (string, error) {
|
2024-05-17 19:50:20 +00:00
|
|
|
return plugin_template.RenderTrim(p.Network.Context, *p.Network.Client, p.Settings.Template, p.Metadata)
|
2020-11-25 19:44:45 +00:00
|
|
|
}
|