Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
5ec214b0
Commit
5ec214b0
authored
Jan 26, 2017
by
Z.J. van de Weg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename presenters for consitency
parent
4ce1a17c
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
51 additions
and
40 deletions
+51
-40
lib/gitlab/chat_commands/command.rb
lib/gitlab/chat_commands/command.rb
+1
-1
lib/gitlab/chat_commands/issue_new.rb
lib/gitlab/chat_commands/issue_new.rb
+5
-5
lib/gitlab/chat_commands/issue_search.rb
lib/gitlab/chat_commands/issue_search.rb
+3
-5
lib/gitlab/chat_commands/issue_show.rb
lib/gitlab/chat_commands/issue_show.rb
+1
-1
lib/gitlab/chat_commands/presenters/deploy.rb
lib/gitlab/chat_commands/presenters/deploy.rb
+0
-8
lib/gitlab/chat_commands/presenters/help.rb
lib/gitlab/chat_commands/presenters/help.rb
+3
-3
lib/gitlab/chat_commands/presenters/issuable.rb
lib/gitlab/chat_commands/presenters/issuable.rb
+1
-3
lib/gitlab/chat_commands/presenters/issue_new.rb
lib/gitlab/chat_commands/presenters/issue_new.rb
+9
-3
lib/gitlab/chat_commands/presenters/issue_search.rb
lib/gitlab/chat_commands/presenters/issue_search.rb
+3
-1
lib/gitlab/chat_commands/presenters/issue_show.rb
lib/gitlab/chat_commands/presenters/issue_show.rb
+4
-2
lib/mattermost/command.rb
lib/mattermost/command.rb
+0
-4
spec/lib/gitlab/chat_commands/command_spec.rb
spec/lib/gitlab/chat_commands/command_spec.rb
+1
-1
spec/lib/gitlab/chat_commands/issue_new_spec.rb
spec/lib/gitlab/chat_commands/issue_new_spec.rb
+1
-1
spec/lib/gitlab/chat_commands/presenters/issue_new_spec.rb
spec/lib/gitlab/chat_commands/presenters/issue_new_spec.rb
+17
-0
spec/lib/gitlab/chat_commands/presenters/issue_search_spec.rb
.../lib/gitlab/chat_commands/presenters/issue_search_spec.rb
+1
-1
spec/lib/gitlab/chat_commands/presenters/issue_show_spec.rb
spec/lib/gitlab/chat_commands/presenters/issue_show_spec.rb
+1
-1
No files found.
lib/gitlab/chat_commands/command.rb
View file @
5ec214b0
...
...
@@ -3,7 +3,7 @@ module Gitlab
class
Command
<
BaseCommand
COMMANDS
=
[
Gitlab
::
ChatCommands
::
IssueShow
,
Gitlab
::
ChatCommands
::
Issue
Create
,
Gitlab
::
ChatCommands
::
Issue
New
,
Gitlab
::
ChatCommands
::
IssueSearch
,
Gitlab
::
ChatCommands
::
Deploy
,
].
freeze
...
...
lib/gitlab/chat_commands/issue_
create
.rb
→
lib/gitlab/chat_commands/issue_
new
.rb
View file @
5ec214b0
module
Gitlab
module
ChatCommands
class
Issue
Create
<
IssueCommand
class
Issue
New
<
IssueCommand
def
self
.
match
(
text
)
# we can not match \n with the dot by passing the m modifier as than
# the title and description are not seperated
...
...
@@ -21,10 +21,10 @@ module Gitlab
issue
=
create_issue
(
title:
title
,
description:
description
)
if
issue
.
errors
.
any?
presenter
(
issue
).
display_errors
else
if
issue
.
persisted?
presenter
(
issue
).
present
else
presenter
(
issue
).
display_errors
end
end
...
...
@@ -35,7 +35,7 @@ module Gitlab
end
def
presenter
(
issue
)
Gitlab
::
ChatCommands
::
Presenters
::
NewIssue
.
new
(
issue
)
Gitlab
::
ChatCommands
::
Presenters
::
IssueNew
.
new
(
issue
)
end
end
end
...
...
lib/gitlab/chat_commands/issue_search.rb
View file @
5ec214b0
...
...
@@ -12,12 +12,10 @@ module Gitlab
def
execute
(
match
)
issues
=
collection
.
search
(
match
[
:query
]).
limit
(
QUERY_LIMIT
)
if
issues
.
none?
Presenters
::
Access
.
new
(
issues
).
not_found
elsif
issues
.
one?
Presenters
::
ShowIssue
.
new
(
issues
.
first
).
present
if
issues
.
present?
Presenters
::
IssueSearch
.
new
(
issues
).
present
else
Presenters
::
ListIssues
.
new
(
issues
).
present
Presenters
::
Access
.
new
(
issues
).
not_found
end
end
end
...
...
lib/gitlab/chat_commands/issue_show.rb
View file @
5ec214b0
...
...
@@ -13,7 +13,7 @@ module Gitlab
issue
=
find_by_iid
(
match
[
:iid
])
if
issue
Gitlab
::
ChatCommands
::
Presenters
::
ShowIssue
.
new
(
issue
).
present
Gitlab
::
ChatCommands
::
Presenters
::
IssueShow
.
new
(
issue
).
present
else
Gitlab
::
ChatCommands
::
Presenters
::
Access
.
new
.
not_found
end
...
...
lib/gitlab/chat_commands/presenters/deploy.rb
View file @
5ec214b0
...
...
@@ -15,14 +15,6 @@ module Gitlab
def
too_many_actions
ephemeral_response
(
text:
"Too many actions defined"
)
end
private
def
resource_url
polymorphic_url
(
[
@resource
.
project
.
namespace
.
becomes
(
Namespace
),
@resource
.
project
,
@resource
]
)
end
end
end
end
...
...
lib/gitlab/chat_commands/presenters/help.rb
View file @
5ec214b0
...
...
@@ -9,10 +9,10 @@ module Gitlab
private
def
help_message
(
trigger
)
if
@resource
.
none?
"No commands available :thinking_face:"
else
if
@resource
.
present?
header_with_list
(
"Available commands"
,
full_commands
(
trigger
))
else
"No commands available :thinking_face:"
end
end
...
...
lib/gitlab/chat_commands/presenters/issuable.rb
View file @
5ec214b0
module
Gitlab
module
ChatCommands
module
Presenters
class
Issuable
<
Presenters
::
Base
private
module
Issuable
def
color
(
issuable
)
issuable
.
open?
?
'#38ae67'
:
'#d22852'
end
...
...
lib/gitlab/chat_commands/presenters/
new_issue
.rb
→
lib/gitlab/chat_commands/presenters/
issue_new
.rb
View file @
5ec214b0
module
Gitlab
module
ChatCommands
module
Presenters
class
NewIssue
<
Presenters
::
Issuable
class
IssueNew
<
Presenters
::
Base
include
Presenters
::
Issuable
def
present
in_channel_response
(
sho
w_issue
)
in_channel_response
(
ne
w_issue
)
end
private
def
show_issue
def
new_issue
{
attachments:
[
{
...
...
@@ -33,6 +35,10 @@ module Gitlab
"I opened an issue on behalf on
#{
author_profile_link
}
: *
#{
@resource
.
to_reference
}
* from
#{
project
.
name_with_namespace
}
"
end
def
project_link
"[
#{
project
.
name_with_namespace
}
](
#{
url_for
(
project
)
}
)"
end
def
author_profile_link
"[
#{
author
.
to_reference
}
](
#{
url_for
(
author
)
}
)"
end
...
...
lib/gitlab/chat_commands/presenters/
list_issues
.rb
→
lib/gitlab/chat_commands/presenters/
issue_search
.rb
View file @
5ec214b0
module
Gitlab
module
ChatCommands
module
Presenters
class
ListIssues
<
Presenters
::
Issuable
class
IssueSearch
<
Presenters
::
Base
include
Presenters
::
Issuable
def
present
text
=
if
@resource
.
count
>=
5
"Here are the first 5 issues I found:"
...
...
lib/gitlab/chat_commands/presenters/
show_issue
.rb
→
lib/gitlab/chat_commands/presenters/
issue_show
.rb
View file @
5ec214b0
module
Gitlab
module
ChatCommands
module
Presenters
class
ShowIssue
<
Presenters
::
Issuable
class
IssueShow
<
Presenters
::
Base
include
Presenters
::
Issuable
def
present
in_channel_response
(
show_issue
)
end
...
...
@@ -16,7 +18,7 @@ module Gitlab
title_link:
resource_url
,
author_name:
author
.
name
,
author_icon:
author
.
avatar_url
,
fallback:
"
New i
ssue
#{
@resource
.
to_reference
}
:
#{
@resource
.
title
}
"
,
fallback:
"
I
ssue
#{
@resource
.
to_reference
}
:
#{
@resource
.
title
}
"
,
pretext:
pretext
,
text:
text
,
color:
color
(
@resource
),
...
...
lib/mattermost/command.rb
View file @
5ec214b0
module
Mattermost
class
Command
<
Client
def
create
(
params
)
<<<<<<<
HEAD
response
=
session_post
(
"/api/v3/teams/
#{
params
[
:team_id
]
}
/commands/create"
,
=======
response
=
json_post
(
"/api/v3/teams/
#{
params
[
:team_id
]
}
/commands/create"
,
>>>>>>>
Revert
removing
of
some
files
body:
params
.
to_json
)
response
[
'token'
]
...
...
spec/lib/gitlab/chat_commands/command_spec.rb
View file @
5ec214b0
...
...
@@ -94,7 +94,7 @@ describe Gitlab::ChatCommands::Command, service: true do
context
'IssueCreate is triggered'
do
let
(
:params
)
{
{
text:
'issue create my title'
}
}
it
{
is_expected
.
to
eq
(
Gitlab
::
ChatCommands
::
Issue
Create
)
}
it
{
is_expected
.
to
eq
(
Gitlab
::
ChatCommands
::
Issue
New
)
}
end
context
'IssueSearch is triggered'
do
...
...
spec/lib/gitlab/chat_commands/issue_
create
_spec.rb
→
spec/lib/gitlab/chat_commands/issue_
new
_spec.rb
View file @
5ec214b0
require
'spec_helper'
describe
Gitlab
::
ChatCommands
::
Issue
Create
,
service:
true
do
describe
Gitlab
::
ChatCommands
::
Issue
New
,
service:
true
do
describe
'#execute'
do
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:user
)
{
create
(
:user
)
}
...
...
spec/lib/gitlab/chat_commands/presenters/issue_new_spec.rb
0 → 100644
View file @
5ec214b0
require
'spec_helper'
describe
Gitlab
::
ChatCommands
::
Presenters
::
IssueNew
do
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let
(
:attachment
)
{
subject
[
:attachments
].
first
}
subject
{
described_class
.
new
(
issue
).
present
}
it
{
is_expected
.
to
be_a
(
Hash
)
}
it
'shows the issue'
do
expect
(
subject
[
:response_type
]).
to
be
(
:in_channel
)
expect
(
subject
).
to
have_key
(
:attachments
)
expect
(
attachment
[
:title
]).
to
start_with
(
issue
.
title
)
end
end
spec/lib/gitlab/chat_commands/presenters/
list_issues
_spec.rb
→
spec/lib/gitlab/chat_commands/presenters/
issue_search
_spec.rb
View file @
5ec214b0
require
'spec_helper'
describe
Gitlab
::
ChatCommands
::
Presenters
::
ListIssues
do
describe
Gitlab
::
ChatCommands
::
Presenters
::
IssueSearch
do
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:message
)
{
subject
[
:text
]
}
...
...
spec/lib/gitlab/chat_commands/presenters/
show_issue
_spec.rb
→
spec/lib/gitlab/chat_commands/presenters/
issue_show
_spec.rb
View file @
5ec214b0
require
'spec_helper'
describe
Gitlab
::
ChatCommands
::
Presenters
::
ShowIssue
do
describe
Gitlab
::
ChatCommands
::
Presenters
::
IssueShow
do
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let
(
:attachment
)
{
subject
[
:attachments
].
first
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment