14 KiB
Butler
(Butler)
Overview
Butler is the task manager of the Plex Media Server Ecosystem.
Available Operations
- GetButlerTasks - Get Butler tasks
- StartAllTasks - Start all Butler tasks
- StopAllTasks - Stop all Butler tasks
- StartTask - Start a single Butler task
- StopTask - Stop a single Butler task
GetButlerTasks
Returns a list of butler tasks
Example Usage
package main
import(
"github.com/LukeHagar/plexgo"
"context"
"log"
)
func main() {
s := plexgo.New(
plexgo.WithSecurity("<YOUR_API_KEY_HERE>"),
plexgo.WithXPlexClientIdentifier("gcgzw5rz2xovp84b4vha3a40"),
)
ctx := context.Background()
res, err := s.Butler.GetButlerTasks(ctx)
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
// handle response
}
}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ctx |
context.Context | ✔️ | The context to use for the request. |
opts |
[]operations.Option | ➖ | The options for this request. |
Response
*operations.GetButlerTasksResponse, error
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| sdkerrors.GetButlerTasksResponseBody | 400 | application/json |
| sdkerrors.GetButlerTasksButlerResponseBody | 401 | application/json |
| sdkerrors.SDKError | 4xx-5xx | / |
StartAllTasks
This endpoint will attempt to start all Butler tasks that are enabled in the settings. Butler tasks normally run automatically during a time window configured on the server's Settings page but can be manually started using this endpoint. Tasks will run with the following criteria:
- Any tasks not scheduled to run on the current day will be skipped.
- If a task is configured to run at a random time during the configured window and we are outside that window, the task will start immediately.
- If a task is configured to run at a random time during the configured window and we are within that window, the task will be scheduled at a random time within the window.
- If we are outside the configured window, the task will start immediately.
Example Usage
package main
import(
"github.com/LukeHagar/plexgo"
"context"
"log"
)
func main() {
s := plexgo.New(
plexgo.WithSecurity("<YOUR_API_KEY_HERE>"),
plexgo.WithXPlexClientIdentifier("gcgzw5rz2xovp84b4vha3a40"),
)
ctx := context.Background()
res, err := s.Butler.StartAllTasks(ctx)
if err != nil {
log.Fatal(err)
}
if res != nil {
// handle response
}
}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ctx |
context.Context | ✔️ | The context to use for the request. |
opts |
[]operations.Option | ➖ | The options for this request. |
Response
*operations.StartAllTasksResponse, error
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| sdkerrors.StartAllTasksResponseBody | 400 | application/json |
| sdkerrors.StartAllTasksButlerResponseBody | 401 | application/json |
| sdkerrors.SDKError | 4xx-5xx | / |
StopAllTasks
This endpoint will stop all currently running tasks and remove any scheduled tasks from the queue.
Example Usage
package main
import(
"github.com/LukeHagar/plexgo"
"context"
"log"
)
func main() {
s := plexgo.New(
plexgo.WithSecurity("<YOUR_API_KEY_HERE>"),
plexgo.WithXPlexClientIdentifier("gcgzw5rz2xovp84b4vha3a40"),
)
ctx := context.Background()
res, err := s.Butler.StopAllTasks(ctx)
if err != nil {
log.Fatal(err)
}
if res != nil {
// handle response
}
}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ctx |
context.Context | ✔️ | The context to use for the request. |
opts |
[]operations.Option | ➖ | The options for this request. |
Response
*operations.StopAllTasksResponse, error
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| sdkerrors.StopAllTasksResponseBody | 400 | application/json |
| sdkerrors.StopAllTasksButlerResponseBody | 401 | application/json |
| sdkerrors.SDKError | 4xx-5xx | / |
StartTask
This endpoint will attempt to start a single Butler task that is enabled in the settings. Butler tasks normally run automatically during a time window configured on the server's Settings page but can be manually started using this endpoint. Tasks will run with the following criteria:
- Any tasks not scheduled to run on the current day will be skipped.
- If a task is configured to run at a random time during the configured window and we are outside that window, the task will start immediately.
- If a task is configured to run at a random time during the configured window and we are within that window, the task will be scheduled at a random time within the window.
- If we are outside the configured window, the task will start immediately.
Example Usage
package main
import(
"github.com/LukeHagar/plexgo"
"context"
"github.com/LukeHagar/plexgo/models/operations"
"log"
)
func main() {
s := plexgo.New(
plexgo.WithSecurity("<YOUR_API_KEY_HERE>"),
plexgo.WithXPlexClientIdentifier("gcgzw5rz2xovp84b4vha3a40"),
)
ctx := context.Background()
res, err := s.Butler.StartTask(ctx, operations.TaskNameCleanOldBundles)
if err != nil {
log.Fatal(err)
}
if res != nil {
// handle response
}
}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ctx |
context.Context | ✔️ | The context to use for the request. |
taskName |
operations.TaskName | ✔️ | the name of the task to be started. |
opts |
[]operations.Option | ➖ | The options for this request. |
Response
*operations.StartTaskResponse, error
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| sdkerrors.StartTaskResponseBody | 400 | application/json |
| sdkerrors.StartTaskButlerResponseBody | 401 | application/json |
| sdkerrors.SDKError | 4xx-5xx | / |
StopTask
This endpoint will stop a currently running task by name, or remove it from the list of scheduled tasks if it exists. See the section above for a list of task names for this endpoint.
Example Usage
package main
import(
"github.com/LukeHagar/plexgo"
"context"
"github.com/LukeHagar/plexgo/models/operations"
"log"
)
func main() {
s := plexgo.New(
plexgo.WithSecurity("<YOUR_API_KEY_HERE>"),
plexgo.WithXPlexClientIdentifier("gcgzw5rz2xovp84b4vha3a40"),
)
ctx := context.Background()
res, err := s.Butler.StopTask(ctx, operations.PathParamTaskNameBackupDatabase)
if err != nil {
log.Fatal(err)
}
if res != nil {
// handle response
}
}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ctx |
context.Context | ✔️ | The context to use for the request. |
taskName |
operations.PathParamTaskName | ✔️ | The name of the task to be started. |
opts |
[]operations.Option | ➖ | The options for this request. |
Response
*operations.StopTaskResponse, error
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| sdkerrors.StopTaskResponseBody | 400 | application/json |
| sdkerrors.StopTaskButlerResponseBody | 401 | application/json |
| sdkerrors.SDKError | 4xx-5xx | / |