Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
kaniini
pleroma
Commits
1e379187
Commit
1e379187
authored
8 years ago
by
dtluna
Browse files
Options
Downloads
Patches
Plain Diff
Add error response on empty status
parent
4649ba2d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/pleroma/web/twitter_api/twitter_api_controller.ex
+19
-5
19 additions, 5 deletions
lib/pleroma/web/twitter_api/twitter_api_controller.ex
test/web/twitter_api/twitter_api_controller_test.exs
+12
-4
12 additions, 4 deletions
test/web/twitter_api/twitter_api_controller_test.exs
with
31 additions
and
9 deletions
lib/pleroma/web/twitter_api/twitter_api_controller.ex
+
19
−
5
View file @
1e379187
...
...
@@ -12,13 +12,25 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
|>
json_reply
(
200
,
response
)
end
def
status_update
(%{
assigns:
%{
user:
user
}}
=
conn
,
status_data
)
do
def
status_update
(
conn
,
%{
"status"
=>
""
}
=
_status_data
)
do
empty_status_reply
(
conn
)
end
def
status_update
(%{
assigns:
%{
user:
user
}}
=
conn
,
%{
"status"
=>
_status_text
}
=
status_data
)
do
media_ids
=
extract_media_ids
(
status_data
)
{
:ok
,
activity
}
=
TwitterAPI
.
create_status
(
user
,
Map
.
put
(
status_data
,
"media_ids"
,
media_ids
))
conn
|>
json_reply
(
200
,
ActivityRepresenter
.
to_json
(
activity
,
%{
user:
user
}))
end
def
status_update
(
conn
,
_status_data
)
do
empty_status_reply
(
conn
)
end
defp
empty_status_reply
(
conn
)
do
bad_request_reply
(
conn
,
"Client must provide a 'status' parameter with a value."
)
end
defp
extract_media_ids
(
status_data
)
do
with
media_ids
when
not
is_nil
(
media_ids
)
<-
status_data
[
"media_ids"
],
split_ids
<-
String
.
split
(
media_ids
,
","
),
...
...
@@ -183,7 +195,7 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
end
defp
bad_request_reply
(
conn
,
error_message
)
do
json
=
Poison
.
encode!
(%{
"error"
=>
error_message
}
)
json
=
error_json
(
conn
,
error_message
)
json_reply
(
conn
,
400
,
json
)
end
...
...
@@ -194,9 +206,11 @@ defmodule Pleroma.Web.TwitterAPI.Controller do
end
defp
forbidden_json_reply
(
conn
,
error_message
)
do
json
=
%{
"error"
=>
error_message
,
"request"
=>
conn
.
request_path
}
|>
Poison
.
encode!
json
=
error_json
(
conn
,
error_message
)
json_reply
(
conn
,
403
,
json
)
end
defp
error_json
(
conn
,
error_message
)
do
%{
"error"
=>
error_message
,
"request"
=>
conn
.
request_path
}
|>
Poison
.
encode!
end
end
This diff is collapsed.
Click to expand it.
test/web/twitter_api/twitter_api_controller_test.exs
+
12
−
4
View file @
1e379187
...
...
@@ -31,10 +31,18 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
end
test
"with credentials"
,
%{
conn:
conn
,
user:
user
}
do
conn
=
conn
|>
with_credentials
(
user
.
nickname
,
"test"
)
|>
post
(
"/api/statuses/update.json"
,
%{
status:
"Nice meme."
})
conn_with_creds
=
conn
|>
with_credentials
(
user
.
nickname
,
"test"
)
request_path
=
"/api/statuses/update.json"
error_response
=
%{
"request"
=>
request_path
,
"error"
=>
"Client must provide a 'status' parameter with a value."
}
conn
=
conn_with_creds
|>
post
(
request_path
)
assert
json_response
(
conn
,
400
)
==
error_response
conn
=
conn_with_creds
|>
post
(
request_path
,
%{
status:
""
})
assert
json_response
(
conn
,
400
)
==
error_response
conn
=
conn_with_creds
|>
post
(
request_path
,
%{
status:
"Nice meme."
})
assert
json_response
(
conn
,
200
)
==
ActivityRepresenter
.
to_map
(
Repo
.
one
(
Activity
),
%{
user:
user
})
end
end
...
...
@@ -139,7 +147,7 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
setup
[
:valid_user
]
test
"without any params"
,
%{
conn:
conn
}
do
conn
=
get
(
conn
,
"/api/statuses/user_timeline.json"
)
assert
json_response
(
conn
,
400
)
==
%{
"error"
=>
"You need to specify screen_name or user_id"
}
assert
json_response
(
conn
,
400
)
==
%{
"error"
=>
"You need to specify screen_name or user_id"
,
"request"
=>
"/api/statuses/user_timeline.json"
}
end
test
"with user_id"
,
%{
conn:
conn
}
do
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment