Ramaze::Controller
Returns a response indicating whether the specified post name is valid and not already taken. Returns an HTTP 200 response on success or an HTTP 500 response on error.
name |
post name to check |
{"valid":true,"unique":true}
# File lib/thoth/controller/api/post.rb, line 51 def check_name error_403 unless auth_key_valid? unless request[:name] && request[:name].length > 0 error_400('Missing required parameter: name') end response['Content-Type'] = 'application/json' name = request[:name].to_s JSON.generate({ :valid => Post.name_valid?(name), :unique => Post.name_unique?(name) }) end
Deletes the specified comment. Returns an HTTP 200 response on success, an HTTP 500 response on error, or an HTTP 404 response if the specified comment does not exist.
id |
comment id |
token |
form token |
{"success":true}
{"error":"The comment could not be deleted due to an unknown database error."}
# File lib/thoth/controller/api/post.rb, line 87 def delete error_403 unless auth_key_valid? && form_token_valid? error_405 unless request.post? error_404 unless request[:id] && @comment = Comment[request[:id]] response['Content-Type'] = 'application/json' if @comment.destroy action_cache.clear JSON.generate({:success => true}) else respond(JSON.generate({ :error => 'The comment could not be deleted due to an unknown ' << 'database error.' }, 500)) end end
Suggests a valid and unique name for the specified post title. Returns an HTTP 200 response on success or an HTTP 500 response on error.
title |
post title |
{"name":"ninjas-are-awesome"}
# File lib/thoth/controller/api/post.rb, line 116 def suggest_name error_403 unless auth_key_valid? unless request[:title] && request[:title].length > 0 error_400('Missing required parameter: title') end response['Content-Type'] = 'application/json' JSON.generate({"name" => Post.suggest_name(request[:title])}) end
Generated with the Darkfish Rdoc Generator 2.