Add issue tracker services.
This commit is contained in:
parent
148740cc67
commit
9371c6b901
3 changed files with 124 additions and 0 deletions
14
app/models/project_services/issue_tracker_service.rb
Normal file
14
app/models/project_services/issue_tracker_service.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class IssueTrackerService < Service
|
||||
|
||||
def project_url
|
||||
# implement inside child
|
||||
end
|
||||
|
||||
def issues_url
|
||||
# implement inside child
|
||||
end
|
||||
|
||||
def new_issue_url
|
||||
# implement inside child
|
||||
end
|
||||
end
|
59
app/models/project_services/jira_service.rb
Normal file
59
app/models/project_services/jira_service.rb
Normal file
|
@ -0,0 +1,59 @@
|
|||
class JiraService < IssueTrackerService
|
||||
|
||||
prop_accessor :title, :description, :project_url, :issues_url, :new_issue_url
|
||||
|
||||
def title
|
||||
if self.properties && self.properties['title'].present?
|
||||
self.properties['title']
|
||||
else
|
||||
'JIRA'
|
||||
end
|
||||
end
|
||||
|
||||
def description
|
||||
if self.properties && self.properties['description'].present?
|
||||
self.properties['description']
|
||||
else
|
||||
'Jira issue tracker'
|
||||
end
|
||||
end
|
||||
|
||||
def to_param
|
||||
'jira'
|
||||
end
|
||||
|
||||
def fields
|
||||
[
|
||||
{ type: 'text', name: 'title', placeholder: title },
|
||||
{ type: 'text', name: 'description', placeholder: description },
|
||||
{ type: 'text', name: 'project_url', placeholder: 'Project url' },
|
||||
{ type: 'text', name: 'issues_url', placeholder: 'Issue url'},
|
||||
{ type: 'text', name: 'new_issue_url', placeholder: 'New Issue url'}
|
||||
]
|
||||
end
|
||||
|
||||
def initialize_properties
|
||||
if properties.nil?
|
||||
if enabled_in_gitlab_config
|
||||
self.properties = {
|
||||
title: issues_tracker['title'],
|
||||
project_url: issues_tracker['project_url'],
|
||||
issues_url: issues_tracker['issues_url'],
|
||||
new_issue_url: issues_tracker['new_issue_url']
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def enabled_in_gitlab_config
|
||||
Gitlab.config.issues_tracker &&
|
||||
Gitlab.config.issues_tracker.values.any? &&
|
||||
issues_tracker
|
||||
end
|
||||
|
||||
def issues_tracker
|
||||
Gitlab.config.issues_tracker['jira']
|
||||
end
|
||||
end
|
51
app/models/project_services/redmine_service.rb
Normal file
51
app/models/project_services/redmine_service.rb
Normal file
|
@ -0,0 +1,51 @@
|
|||
class RedmineService < IssueTrackerService
|
||||
|
||||
prop_accessor :title, :description, :project_url, :issues_url, :new_issue_url
|
||||
|
||||
def title
|
||||
'Redmine'
|
||||
end
|
||||
|
||||
def description
|
||||
'Redmine issue tracker'
|
||||
end
|
||||
|
||||
def to_param
|
||||
'redmine'
|
||||
end
|
||||
|
||||
def fields
|
||||
[
|
||||
{ type: 'text', name: 'title', placeholder: title },
|
||||
{ type: 'text', name: 'description', placeholder: description },
|
||||
{ type: 'text', name: 'project_url', placeholder: 'Project url' },
|
||||
{ type: 'text', name: 'issues_url', placeholder: 'Issue url'},
|
||||
{ type: 'text', name: 'new_issue_url', placeholder: 'New Issue url'}
|
||||
]
|
||||
end
|
||||
|
||||
def initialize_properties
|
||||
if properties.nil?
|
||||
if enabled_in_gitlab_config
|
||||
self.properties = {
|
||||
title: issues_tracker['title'],
|
||||
project_url: issues_tracker['project_url'],
|
||||
issues_url: issues_tracker['issues_url'],
|
||||
new_issue_url: issues_tracker['new_issue_url']
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def enabled_in_gitlab_config
|
||||
Gitlab.config.issues_tracker &&
|
||||
Gitlab.config.issues_tracker.values.any? &&
|
||||
issues_tracker
|
||||
end
|
||||
|
||||
def issues_tracker
|
||||
Gitlab.config.issues_tracker['redmine']
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue