go-twitch/api/schedule/delete_channel_stream_sched...

47 lines
1.3 KiB
Go
Raw Normal View History

2024-03-03 16:30:10 -05:00
package schedule
import (
"context"
"fmt"
2024-03-03 16:30:10 -05:00
"net/http"
"net/url"
"github.com/google/go-querystring/query"
)
type DeleteChannelStreamScheduleSegmentParams struct {
// The ID of the broadcaster that owns the streaming schedule. This ID must match the user ID in the user access token.
BroadcasterId string `url:"broadcaster_id"`
// The ID of the broadcast segment to remove.
Id string `url:"id"`
}
// Removes a broadcast segment from the broadcasters streaming schedule.
//
// NOTE: For recurring segments, removing a segment removes all segments in the recurring schedule.
//
// Requires a user access token that includes the channel:manage:schedule scope.
func (s *Schedule) DeleteChannelStreamScheduleSegment(ctx context.Context, params *DeleteChannelStreamScheduleSegmentParams) error {
v, _ := query.Values(params)
endpoint := s.baseUrl.ResolveReference(&url.URL{Path: "schedule/segment", RawQuery: v.Encode()})
req, err := http.NewRequestWithContext(ctx, http.MethodDelete, endpoint.String(), nil)
if err != nil {
return err
}
res, err := s.client.Do(req)
if err != nil {
return err
}
defer res.Body.Close()
statusOK := res.StatusCode >= 200 && res.StatusCode < 300
if !statusOK {
return fmt.Errorf("failed to delete channel stream schedule segment (%d)", res.StatusCode)
}
2024-03-03 16:30:10 -05:00
return nil
}