online_notifications_controller.rb 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
  2. class OnlineNotificationsController < ApplicationController
  3. before_action :authentication_check
  4. =begin
  5. Format:
  6. JSON
  7. Example:
  8. {
  9. "id":1,
  10. "name":"some template",
  11. "user_id": null,
  12. "options":{"a":1,"b":2},
  13. "updated_at":"2012-09-14T17:51:53Z",
  14. "created_at":"2012-09-14T17:51:53Z",
  15. "updated_by_id":2.
  16. "created_by_id":2,
  17. }
  18. =end
  19. =begin
  20. Resource:
  21. GET /api/v1/templates.json
  22. Response:
  23. [
  24. {
  25. "id": 1,
  26. "name": "some_name1",
  27. ...
  28. },
  29. {
  30. "id": 2,
  31. "name": "some_name2",
  32. ...
  33. }
  34. ]
  35. Test:
  36. curl http://localhost/api/v1/online_notifications.json -v -u #{login}:#{password}
  37. =end
  38. def index
  39. if params[:full]
  40. render json: OnlineNotification.list_full(current_user, 100)
  41. return
  42. end
  43. notifications = OnlineNotification.list(current_user, 100)
  44. model_index_render_result(notifications)
  45. end
  46. =begin
  47. Resource:
  48. PUT /api/v1/online_notifications/{id}
  49. Payload:
  50. {
  51. "name": "some name",
  52. "options":{"a":1,"b":2},
  53. }
  54. Response:
  55. {
  56. "id": 1,
  57. "name": "some_name",
  58. ...
  59. }
  60. Test:
  61. curl http://localhost/api/v1/online_notifications -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"name": "some_name","active": true, "note": "some note"}'
  62. =end
  63. def update
  64. return if !access?
  65. model_update_render(OnlineNotification, params)
  66. end
  67. =begin
  68. Resource:
  69. DELETE /api/v1/online_notifications/{id}.json
  70. Response:
  71. {}
  72. Test:
  73. curl http://localhost/api/v1/online_notifications/{id}.json -v -u #{login}:#{password} -H "Content-Type: application/json" -X DELETE
  74. =end
  75. def destroy
  76. return if !access?
  77. model_destory_render(OnlineNotification, params)
  78. end
  79. =begin
  80. Resource:
  81. PUT /api/v1/online_notifications/mark_all_as_read
  82. Payload:
  83. {}
  84. Response:
  85. {}
  86. Test:
  87. curl http://localhost/api/v1/online_notifications/mark_all_as_read -v -u #{login}:#{password} -X POST -d '{}'
  88. =end
  89. def mark_all_as_read
  90. notifications = OnlineNotification.list(current_user, 100)
  91. notifications.each do |notification|
  92. if !notification['seen']
  93. OnlineNotification.seen( id: notification['id'] )
  94. end
  95. end
  96. render json: {}, status: :ok
  97. end
  98. private
  99. def access?
  100. notification = OnlineNotification.find(params[:id])
  101. if notification.user_id != current_user.id
  102. response_access_deny
  103. return false
  104. end
  105. true
  106. end
  107. end