Bumps [rexml](https://github.com/ruby/rexml) from 3.2.6 to 3.3.9. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](https://github.com/ruby/rexml/compare/v3.2.6...v3.3.9) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
plexruby
Summary
Plex-API: An Open API Spec for interacting with Plex.tv and Plex Media Server
Plex Media Server OpenAPI Specification
An Open Source OpenAPI Specification for Plex Media Server
Automation and SDKs provided by Speakeasy
Documentation
SDKs
The following SDKs are generated from the OpenAPI Specification. They are automatically generated and may not be fully tested. If you find any issues, please open an issue on the main specification Repository.
| Language | Repository | Releases | Other |
|---|---|---|---|
| Python | GitHub | PyPI | - |
| JavaScript/TypeScript | GitHub | NPM \ JSR | - |
| Go | GitHub | Releases | GoDoc |
| Ruby | GitHub | Releases | - |
| Swift | GitHub | Releases | - |
| PHP | GitHub | Releases | - |
| Java | GitHub | Releases | - |
| C# | GitHub | Releases | - |
Table of Contents
SDK Installation
The SDK can be installed using RubyGems:
gem install plex_ruby_sdk
SDK Example Usage
Example
require 'plex_ruby_sdk'
s = ::PlexRubySDK::PlexAPI.new(
client_id: "3381b62b-9ab7-4e37-827b-203e9809eb58",
client_name: "Plex for Roku",
client_version: "2.4.1",
platform: "Roku",
device_nickname: "Roku 3",
)
s.config_security(
::PlexRubySDK::Shared::Security.new(
access_token: "<YOUR_API_KEY_HERE>",
)
)
res = s.server.get_server_capabilities()
if ! res.object.nil?
# handle response
end
Available Resources and Operations
Available methods
Activities
- get_server_activities - Get Server Activities
- cancel_server_activities - Cancel Server Activities
Authentication
- get_transient_token - Get a Transient Token
- get_source_connection_information - Get Source Connection Information
- get_token_details - Get Token Details
- post_users_sign_in_data - Get User Sign In Data
Butler
- get_butler_tasks - Get Butler tasks
- start_all_tasks - Start all Butler tasks
- stop_all_tasks - Stop all Butler tasks
- start_task - Start a single Butler task
- stop_task - Stop a single Butler task
Hubs
- get_global_hubs - Get Global Hubs
- get_recently_added - Get Recently Added
- get_library_hubs - Get library specific hubs
Library
- get_file_hash - Get Hash Value
- get_recently_added_library - Get Recently Added
- get_all_libraries - Get All Libraries
- get_library_details - Get Library Details
- delete_library - Delete Library Section
- get_library_items - Get Library Items
- get_refresh_library_metadata - Refresh Metadata Of The Library
- get_search_library - Search Library
- get_search_all_libraries - Search All Libraries
- get_meta_data_by_rating_key - Get Metadata by RatingKey
- get_metadata_children - Get Items Children
- get_top_watched_content - Get Top Watched Content
- get_on_deck - Get On Deck
Log
- log_line - Logging a single line message.
- log_multi_line - Logging a multi-line message
- enable_paper_trail - Enabling Papertrail
Media
- mark_played - Mark Media Played
- mark_unplayed - Mark Media Unplayed
- update_play_progress - Update Media Play Progress
- get_banner_image - Get Banner Image
- get_thumb_image - Get Thumb Image
Playlists
- create_playlist - Create a Playlist
- get_playlists - Get All Playlists
- get_playlist - Retrieve Playlist
- delete_playlist - Deletes a Playlist
- update_playlist - Update a Playlist
- get_playlist_contents - Retrieve Playlist Contents
- clear_playlist_contents - Delete Playlist Contents
- add_playlist_contents - Adding to a Playlist
- upload_playlist - Upload Playlist
Plex
- get_companions_data - Get Companions Data
- get_user_friends - Get list of friends of the user logged in
- get_geo_data - Get Geo Data
- get_home_data - Get Plex Home Data
- get_server_resources - Get Server Resources
- get_pin - Get a Pin
- get_token_by_pin_id - Get Access Token by PinId
Search
- perform_search - Perform a search
- perform_voice_search - Perform a voice search
- get_search_results - Get Search Results
Server
- get_server_capabilities - Get Server Capabilities
- get_server_preferences - Get Server Preferences
- get_available_clients - Get Available Clients
- get_devices - Get Devices
- get_server_identity - Get Server Identity
- get_my_plex_account - Get MyPlex Account
- get_resized_photo - Get a Resized Photo
- get_media_providers - Get Media Providers
- get_server_list - Get Server List
Sessions
- get_sessions - Get Active Sessions
- get_session_history - Get Session History
- get_transcode_sessions - Get Transcode Sessions
- stop_transcode_session - Stop a Transcode Session
Statistics
- get_statistics - Get Media Statistics
- get_resources_statistics - Get Resources Statistics
- get_bandwidth_statistics - Get Bandwidth Statistics
Updater
- get_update_status - Querying status of updates
- check_for_updates - Checking for updates
- apply_updates - Apply Updates
Video
- get_timeline - Get the timeline for a media item
- start_universal_transcode - Start Universal Transcode
Watchlist
- get_watch_list - Get User Watchlist
Server Selection
Server Selection
Select Server by Index
You can override the default server globally by passing a server index to the server_idx: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
| # | Server | Variables |
|---|---|---|
| 0 | {protocol}://{ip}:{port} |
protocol (default is https), ip (default is 10.10.10.47), port (default is 32400) |
Variables
Some of the server options above contain variables. If you want to set the values of those variables, the following optional parameters are available when initializing the SDK client instance:
protocol: ::PlexRubySDK::ServerVariables::ServerProtocolip: ::Stringport: ::String
Override Server URL Per-Client
The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:
Override Server URL Per-Operation
The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example:
require 'plex_ruby_sdk'
s = ::PlexRubySDK::PlexAPI.new(
client_id: "3381b62b-9ab7-4e37-827b-203e9809eb58",
client_name: "Plex for Roku",
client_version: "2.4.1",
platform: "Roku",
device_nickname: "Roku 3",
)
s.config_security(
::PlexRubySDK::Shared::Security.new(
access_token: "<YOUR_API_KEY_HERE>",
)
)
res = s.plex.get_companions_data(server_url: "https://plex.tv/api/v2")
if ! res.response_bodies.nil?
# handle response
end
Development
Maturity
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.
Contributions
While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!