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:



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

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



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

attribute :account_id

#companyLWS::Auth::Company

Returns the company the collection belongs to.

Returns:



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

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



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

attribute :company_id

#emailString?

Returns the email address used for email imports.

Returns:

  • (String, nil)

    the email address used for email imports



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

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)



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

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)



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

has_many :feeds

#folderFolder

Returns the folder that the collection is filed in.

Returns:

  • (Folder)

    the folder that the collection is filed in



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

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



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

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)



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

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)



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

has_many :images

#itemsCollection::Item

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

Returns:



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

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

#kind"feed", ...

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

Returns:



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

attribute :kind

#metadataHash

Returns the metadata of the collection.

Returns:

  • (Hash)

    the metadata of the collection



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

attribute :metadata

#nameString

Returns the name of the collection.

Returns:

  • (String)

    the name of the collection



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

attribute :name

#preview_urlString

Returns the URL of a preview of the collection.

Returns:

  • (String)

    the URL of a preview of the collection



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

attribute :preview_url

#uuidString

Returns the UUID used for unique file name generation.

Returns:

  • (String)

    the UUID used for unique file name generation



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

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)



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

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)



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

has_many :videos

#weather_locationCollection::WeatherLocation

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

Returns:



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

has_one :weather_location