Class: LWS::Resource::Collection

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

Overview

The collection class

There are two ways to view collections. Either it is viewed as a set of items with metadata (use #metadata and #items), or it is viewed as something that is associated with one or more meta collections that each have specific item objects (see for example #feed, #image, #images, etc.).

Defined Under Namespace

Classes: Feed, Image, Item, Post, Video, WeatherLocation

Collection Items Attribute Summary collapse

Instance Attribute Summary collapse

Attributes inherited from Generic::Model

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

Method Summary

Methods inherited from Generic::Model

#reload, #rollback, #save

Instance Attribute Details

#accountLWS::Auth::Account

Returns the account of the user that created the collection.

Returns:



51
# File 'lib/lws/apps/resource.rb', line 51

belongs_to :account, class_name: "LWS::Auth::Account"

#account_idInteger

Returns the ID of the account of the user that created the collection.

Returns:

  • (Integer)

    the ID of the account of the user that created the collection



56
# File 'lib/lws/apps/resource.rb', line 56

attribute :account_id

#companyLWS::Auth::Company

Returns the company the collection belongs to.

Returns:



60
# File 'lib/lws/apps/resource.rb', line 60

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

#company_idInteger

Returns the ID of the company the collection belongs to.

Returns:

  • (Integer)

    the ID of the company the collection belongs to



64
# File 'lib/lws/apps/resource.rb', line 64

attribute :company_id

#emailString?

Returns the email address used for email imports.

Returns:

  • (String, nil)

    the email address used for email imports



68
# File 'lib/lws/apps/resource.rb', line 68

attribute :email

#feedCollection::Feed

Returns the feed that is part of the collection (if kind is :feed).

Returns:

  • (Collection::Feed)

    the feed that is part of the collection (if kind is :feed)



113
# File 'lib/lws/apps/resource.rb', line 113

has_one :feed

#feedsArray<Collection::Feed>

Returns the feeds that are part of the collection (if kind is :feeds).

Returns:

  • (Array<Collection::Feed>)

    the feeds that are part of the collection (if kind is :feeds)



118
# File 'lib/lws/apps/resource.rb', line 118

has_many :feeds

#folderFolder

Returns the folder that the collection is filed in.

Returns:

  • (Folder)

    the folder that the collection is filed in



72
# File 'lib/lws/apps/resource.rb', line 72

belongs_to :folder

#folder_idInteger

Returns the ID of the folder that the collection is filed in.

Returns:

  • (Integer)

    the ID of the folder that the collection is filed in



77
# File 'lib/lws/apps/resource.rb', line 77

attribute :folder_id

#imageCollection::Image

Returns the image that is part of the collection (if kind is :image).

Returns:

  • (Collection::Image)

    the image that is part of the collection (if kind is :image)



123
# File 'lib/lws/apps/resource.rb', line 123

has_one :image

#imagesArray<Collection::Image>

Returns the images that are part of the collection (if kind is :images).

Returns:

  • (Array<Collection::Image>)

    the images that are part of the collection (if kind is :images)



128
# File 'lib/lws/apps/resource.rb', line 128

has_many :images

#itemsCollection::Item

The returned object are of a class that is determined by the kind of this collection.

Returns:



84
# File 'lib/lws/apps/resource.rb', line 84

has_many :items, class_name: "LWS::Resource::Collection::Item"

#kind"feed", ...

Returns the name of the class/kind of the collection.

Returns:



89
# File 'lib/lws/apps/resource.rb', line 89

attribute :kind

#metadataHash

Returns the metadata of the collection.

Returns:

  • (Hash)

    the metadata of the collection



93
# File 'lib/lws/apps/resource.rb', line 93

attribute :metadata

#nameString

Returns the name of the collection.

Returns:

  • (String)

    the name of the collection



97
# File 'lib/lws/apps/resource.rb', line 97

attribute :name

#preview_urlString

Returns the URL of a preview of the collection.

Returns:

  • (String)

    the URL of a preview of the collection



101
# File 'lib/lws/apps/resource.rb', line 101

attribute :preview_url

#uuidString

Returns the UUID used for unique file name generation.

Returns:

  • (String)

    the UUID used for unique file name generation



105
# File 'lib/lws/apps/resource.rb', line 105

attribute :uuid

#videoCollection::Video

Returns the video that is part of the collection (if kind is :video).

Returns:

  • (Collection::Video)

    the video that is part of the collection (if kind is :video)



133
# File 'lib/lws/apps/resource.rb', line 133

has_one :video

#videosArray<Collection::Video>

Returns the videos that are part of the collection (if kind is :videos).

Returns:

  • (Array<Collection::Video>)

    the videos that are part of the collection (if kind is :videos)



138
# File 'lib/lws/apps/resource.rb', line 138

has_many :videos

#weather_locationCollection::WeatherLocation

Returns the weather collection that is part of the collection (if kind is :weather_location).

Returns:



143
# File 'lib/lws/apps/resource.rb', line 143

has_one :weather_location