2024-03-02 22:45:59 -05:00
|
|
|
|
package extensions
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"encoding/json"
|
2024-03-07 19:41:05 -05:00
|
|
|
|
"fmt"
|
2024-03-02 22:45:59 -05:00
|
|
|
|
"io"
|
|
|
|
|
"net/http"
|
2024-03-07 20:52:42 -05:00
|
|
|
|
|
|
|
|
|
"go.fifitido.net/twitch/api/endpoint"
|
2024-03-02 22:45:59 -05:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type SetExtensionConfigurationSegmentRequest struct {
|
|
|
|
|
// The ID of the extension to update.
|
|
|
|
|
ExtensionID string `json:"extension_id"`
|
|
|
|
|
|
|
|
|
|
// The configuration segment to update.
|
|
|
|
|
Segment ConfigurationSegment `json:"segment"`
|
|
|
|
|
|
|
|
|
|
// The ID of the broadcaster that installed the extension.
|
|
|
|
|
// Include this field only if the segment is set to developer or broadcaster.
|
|
|
|
|
BroadcasterID *string `json:"broadcaster_id,omitempty"`
|
|
|
|
|
|
|
|
|
|
// The contents of the segment.
|
|
|
|
|
// This string may be a plain-text string or a string-encoded JSON object.
|
|
|
|
|
Content *string `json:"content,omitempty"`
|
|
|
|
|
|
|
|
|
|
// The version number that identifies this definition of the segment’s data.
|
|
|
|
|
// If not specified, the latest definition is updated.
|
|
|
|
|
Version *string `json:"version,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Updates a configuration segment. The segment is limited to 5 KB. Extensions that are active on a channel do not receive the updated configuration.
|
|
|
|
|
//
|
|
|
|
|
// Rate Limits: You may update the configuration a maximum of 20 times per minute.
|
|
|
|
|
//
|
|
|
|
|
// Requires a signed JSON Web Token (JWT) created by an EBS. For signing requirements,
|
|
|
|
|
// see Signing the JWT: https://dev.twitch.tv/docs/extensions/building/#signing-the-jwt
|
|
|
|
|
// The signed JWT must include the role, user_id, and exp fields
|
|
|
|
|
// (see JWT Schema: https://dev.twitch.tv/docs/extensions/reference/#jwt-schema).
|
|
|
|
|
// The role field must be set to external.
|
2024-03-07 20:52:42 -05:00
|
|
|
|
func (e *Extensions) SetExtensionConfigurationSegment(ctx context.Context, body *SetExtensionConfigurationSegmentRequest) error {
|
2024-03-02 22:45:59 -05:00
|
|
|
|
|
|
|
|
|
r, w := io.Pipe()
|
|
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
|
if err := json.NewEncoder(w).Encode(body); err != nil {
|
|
|
|
|
w.CloseWithError(err)
|
|
|
|
|
} else {
|
|
|
|
|
w.Close()
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
2024-03-07 20:52:42 -05:00
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPut, endpoint.Make(e.baseUrl, "extensions/configurations"), r)
|
2024-03-02 22:45:59 -05:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-07 20:52:42 -05:00
|
|
|
|
res, err := e.client.Do(req)
|
2024-03-02 22:45:59 -05:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
2024-03-07 19:41:05 -05:00
|
|
|
|
statusOK := res.StatusCode >= 200 && res.StatusCode < 300
|
|
|
|
|
if !statusOK {
|
|
|
|
|
return fmt.Errorf("failed to set extension configuration segment: %s", res.Status)
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-02 22:45:59 -05:00
|
|
|
|
return nil
|
|
|
|
|
}
|