Class: TrackerApi::Resources::Story

Inherits:
Object
  • Object
show all
Includes:
TrackerApi::Resources::Shared::Base
Defined in:
lib/tracker_api/resources/story.rb

Defined Under Namespace

Classes: UpdateRepresenter

Instance Method Summary collapse

Methods included from TrackerApi::Resources::Shared::Base

included

Instance Method Details

#activity(params = {}) ⇒ Array[Activity]

Provides a list of all the activity performed on the story.

Parameters:

  • params (Hash) (defaults to: {})

Returns:



116
117
118
# File 'lib/tracker_api/resources/story.rb', line 116

def activity(params = {})
  Endpoints::Activity.new(client).get_story(project_id, id, params)
end

#add_label(label) ⇒ Object

Adds a new label to the story.

Parameters:



86
87
88
89
90
91
92
93
94
95
# File 'lib/tracker_api/resources/story.rb', line 86

def add_label(label)
  new_label = if label.kind_of?(String)
    Label.new(name: label)
  else
    label
  end

  # Use attribute writer to get coercion and dirty tracking.
  self.labels = (labels ? labels.dup : []).push(new_label).uniq
end

#add_owner(owner) ⇒ Object

Adds a new owner to the story.

Parameters:



100
101
102
103
104
105
106
107
108
109
110
# File 'lib/tracker_api/resources/story.rb', line 100

def add_owner(owner)
  owner_id = if owner.kind_of?(Fixnum)
    owner_id = owner
  else
    raise ArgumentError, 'Valid Person expected.' unless owner.instance_of?(Resources::Person)
    owner_id = owner.id
  end

  # Use attribute writer to get coercion and dirty tracking.
  self.owner_ids = (owner_ids ? owner_ids.dup : []).push(owner_id).uniq
end

#comments(reload: false) ⇒ Array[Comment]

Provides a list of all the comments on the story.

Parameters:

Returns:



124
125
126
127
128
129
130
# File 'lib/tracker_api/resources/story.rb', line 124

def comments(reload: false)
  if !reload && @comments.present?
    @comments
  else
    @comments = Endpoints::Comments.new(client).get(project_id, id)
  end
end

#create_comment(params) ⇒ Comment

Returns newly created Comment.

Parameters:

  • params (Hash)

    attributes to create the comment with

Returns:

  • (Comment)

    newly created Comment



176
177
178
179
180
181
# File 'lib/tracker_api/resources/story.rb', line 176

def create_comment(params)
  files = params.delete(:files)
  comment = Endpoints::Comment.new(client).create(project_id, id, params)
  comment.create_attachments(files: files) if files.present?
  comment
end

#create_task(params) ⇒ Task

Returns newly created Task.

Parameters:

  • params (Hash)

    attributes to create the task with

Returns:

  • (Task)

    newly created Task



170
171
172
# File 'lib/tracker_api/resources/story.rb', line 170

def create_task(params)
  Endpoints::Task.new(client).create(project_id, id, params)
end

#label_listString

Returns Comma separated list of labels.

Returns:

  • (String)

    Comma separated list of labels.



76
77
78
79
80
81
# File 'lib/tracker_api/resources/story.rb', line 76

def label_list
  @label_list ||= begin
    return if labels.nil?
    labels.collect(&:name).join(',')
  end
end

#owners(params = {}) ⇒ Array[Person]

Provides a list of all the owners of the story.

Parameters:

  • params (Hash) (defaults to: {})

Returns:



148
149
150
151
152
153
154
# File 'lib/tracker_api/resources/story.rb', line 148

def owners(params = {})
  if params.blank? && @owners.present?
    @owners
  else
    @owners = Endpoints::StoryOwners.new(client).get(project_id, id, params)
  end
end

#saveObject

Save changes to an existing Story.

Raises:

  • (ArgumentError)


184
185
186
187
188
189
# File 'lib/tracker_api/resources/story.rb', line 184

def save
  raise ArgumentError, 'Can not update a story with an unknown project_id.' if project_id.nil?
  return self unless dirty?

  Endpoints::Story.new(client).update(self, UpdateRepresenter.new(Story.new(self.dirty_attributes)))
end

#tasks(params = {}) ⇒ Array[Task]

Provides a list of all the tasks on the story.

Parameters:

  • params (Hash) (defaults to: {})

Returns:



136
137
138
139
140
141
142
# File 'lib/tracker_api/resources/story.rb', line 136

def tasks(params = {})
  if params.blank? && @tasks.present?
    @tasks
  else
    @tasks = Endpoints::Tasks.new(client).get(project_id, id, params)
  end
end

#transitions(params = {}) ⇒ Array[StoryTransition]

Provides a list of all the transitions of the story.

Parameters:

  • params (Hash) (defaults to: {})

Returns:



160
161
162
163
164
165
166
# File 'lib/tracker_api/resources/story.rb', line 160

def transitions(params = {})
  if params.blank? && @transitions.present?
    @transitions
  else
    @transitions = Endpoints::StoryTransitions.new(client).get(project_id, id, params)
  end
end