Class: LWS::DigitalSignage::Player

Inherits:
Generic::Model show all
Defined in:
lib/lws/apps/digital_signage.rb

Overview

The player class

Defined Under Namespace

Modules: Os Classes: Component, Configuration, Log, Model, Notification, PredefinedConfiguration, Request, Screenshot, Tag

Instance Attribute Summary collapse

Attributes inherited from Generic::Model

#created_at, #id, #updated_at, #url, #url_html

Method Summary

Methods inherited from Generic::Model

#deep_dup, #dig, #reload, #rollback, #save

Instance Attribute Details

#channelChannel

Returns the channel of the player.

Returns:

  • (Channel)

    the channel of the player



831
# File 'lib/lws/apps/digital_signage.rb', line 831

belongs_to :channel, class_name: "LWS::DigitalSignage::Channel"

#channel_idInteger

Returns the ID of the channel of the player.

Returns:

  • (Integer)

    the ID of the channel of the player



835
# File 'lib/lws/apps/digital_signage.rb', line 835

attribute :channel_id

#companyLWS::Auth::Company

Returns the company the player belongs to.

Returns:



839
# File 'lib/lws/apps/digital_signage.rb', line 839

belongs_to :company, class_name: "LWS::Auth::Company"

#company_idInteger

Returns the ID of the company the player belongs to.

Returns:

  • (Integer)

    the ID of the company the player belongs to



843
# File 'lib/lws/apps/digital_signage.rb', line 843

attribute :company_id

#componentsArray<Player::Component>

Returns the components of the player.

Returns:



847
# File 'lib/lws/apps/digital_signage.rb', line 847

has_many :components, class_name: "LWS::DigitalSignage::Player::Component"

#configurationPlayer::Configuration

Returns the configuration of the player.

Returns:



851
852
# File 'lib/lws/apps/digital_signage.rb', line 851

belongs_to :configuration, class_name: "LWS::DigitalSignage::Player::Configuration",
uri: "player/configurations/:id"

#configuration_idInteger

Returns the ID of the configuration of the player.

Returns:

  • (Integer)

    the ID of the configuration of the player



856
# File 'lib/lws/apps/digital_signage.rb', line 856

attribute :configuration_id

#feedbackHash{String=>String}

Returns a mapping of player feedback key/values.

Returns:

  • (Hash{String=>String})

    a mapping of player feedback key/values



860
# File 'lib/lws/apps/digital_signage.rb', line 860

attribute :feedback

#health_percentageFixnum (readonly)

Returns the health of the player (percentage).

Returns:

  • (Fixnum)

    the health of the player (percentage)



864
# File 'lib/lws/apps/digital_signage.rb', line 864

attribute :health_percentage

#hostnameString (readonly)

Returns the hostname used by the player (for DHCP for example).

Returns:

  • (String)

    the hostname used by the player (for DHCP for example)



868
# File 'lib/lws/apps/digital_signage.rb', line 868

attribute :hostname

#logsArray<Player::Log>

Returns the logs of the player.

Returns:



872
# File 'lib/lws/apps/digital_signage.rb', line 872

has_many :logs, class_name: "LWS::DigitalSignage::Player::Log"

#mac_lanString?

Returns the MAC address of the LAN interface of the player.

Returns:

  • (String, nil)

    the MAC address of the LAN interface of the player



876
# File 'lib/lws/apps/digital_signage.rb', line 876

attribute :mac_lan

#mac_wifiString?

Returns the MAC address of the Wi-Fi interface of the player.

Returns:

  • (String, nil)

    the MAC address of the Wi-Fi interface of the player



880
# File 'lib/lws/apps/digital_signage.rb', line 880

attribute :mac_wifi

#modelPlayer::Model

Returns the model of the player.

Returns:



884
885
# File 'lib/lws/apps/digital_signage.rb', line 884

belongs_to :model, class_name: "LWS::DigitalSignage::Player::Model",
uri: "player/models/:id"

#model_idInteger

Returns the ID of the model of the player.

Returns:

  • (Integer)

    the ID of the model of the player



889
# File 'lib/lws/apps/digital_signage.rb', line 889

attribute :model_id

#nameString

Returns the name of the player.

Returns:

  • (String)

    the name of the player



893
# File 'lib/lws/apps/digital_signage.rb', line 893

attribute :name

#notificationsArray<Player::Notification>

Returns the notifications for the player.

Returns:



897
# File 'lib/lws/apps/digital_signage.rb', line 897

has_many :notifications, class_name: "LWS::DigitalSignage::Player::Notification"

#operation_hoursString? (readonly)

Returns the number of hours the player has been operational.

Returns:

  • (String, nil)

    the number of hours the player has been operational



901
# File 'lib/lws/apps/digital_signage.rb', line 901

attribute :operation_hours

#operational_sinceString? (readonly)

Returns the date/time when the player became operational for the first time.

Returns:

  • (String, nil)

    the date/time when the player became operational for the first time



906
# File 'lib/lws/apps/digital_signage.rb', line 906

attribute :operational_since

#os_release_versionString?

Returns the OS version the player is using (if known).

Returns:

  • (String, nil)

    the OS version the player is using (if known)



910
# File 'lib/lws/apps/digital_signage.rb', line 910

attribute :os_release_version

#partsArray<Player::Component::Part>

Returns the parts of the player.

Returns:



914
# File 'lib/lws/apps/digital_signage.rb', line 914

has_many :parts, class_name: "LWS::DigitalSignage::Player::Component::Part"

#recent_osBoolean

Returns whether the OS of the player is recent.

Returns:

  • (Boolean)

    whether the OS of the player is recent



918
# File 'lib/lws/apps/digital_signage.rb', line 918

attribute :recent_os

#registration_lockedBoolean

Returns whether registarion is locked for the player.

Returns:

  • (Boolean)

    whether registarion is locked for the player



922
# File 'lib/lws/apps/digital_signage.rb', line 922

attribute :registration_locked

#release_channelPlayer::Os::ReleaseChannel

Returns the player OS release channel used by the player.

Returns:



927
928
# File 'lib/lws/apps/digital_signage.rb', line 927

belongs_to :release_channel, class_name: "LWS::DigitalSignage::Player::Os::ReleaseChannel",
uri: "player/os/release_channels/:id"

#release_channel_idInteger

Returns the ID of the player OS release channel used by the player.

Returns:

  • (Integer)

    the ID of the player OS release channel used by the player



933
# File 'lib/lws/apps/digital_signage.rb', line 933

attribute :release_channel_id

#requestsArray<Player::Request>

Returns the requests for the player.

Returns:



937
# File 'lib/lws/apps/digital_signage.rb', line 937

has_many :requests, class_name: "LWS::DigitalSignage::Player::Request"

#screenshotsArray<Player::Screenshot>

Returns the screenshots of the player.

Returns:



941
# File 'lib/lws/apps/digital_signage.rb', line 941

has_many :screenshots, class_name: "LWS::DigitalSignage::Player::Screenshot"

#serial_numberString (readonly)

Returns the serial number of the player.

Returns:

  • (String)

    the serial number of the player



945
# File 'lib/lws/apps/digital_signage.rb', line 945

attribute :serial_number

#serviceBoolean

Returns whether the player is being serviced/is in service.

Returns:

  • (Boolean)

    whether the player is being serviced/is in service



949
# File 'lib/lws/apps/digital_signage.rb', line 949

attribute :service

#status"unknown", ... (readonly)

Returns the player status.

Returns:

  • ("unknown", "good", "warning", "bad")

    the player status



953
# File 'lib/lws/apps/digital_signage.rb', line 953

attribute :status

#status_reason"unknown", ... (readonly)

Returns the reason for the current player status.

Returns:

  • ("unknown", "hardware_failure", "outdated_os", "good", "connection_inactive_short", "connection_inactive_long")

    the reason for the current player status



958
# File 'lib/lws/apps/digital_signage.rb', line 958

attribute :status_reason

#status_updated_atString (readonly)

Returns the date/time the status was last updated.

Returns:

  • (String)

    the date/time the status was last updated



962
# File 'lib/lws/apps/digital_signage.rb', line 962

attribute :status_updated_at

#tagsArray<Player::Tag>

Returns the tags of the player.

Returns:



966
# File 'lib/lws/apps/digital_signage.rb', line 966

has_many :tags, class_name: "LWS::DigitalSignage::Player::Tag"