64 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| # Pleroma: A lightweight social networking server
 | |
| # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
 | |
| # SPDX-License-Identifier: AGPL-3.0-only
 | |
| 
 | |
| defmodule Pleroma.Web.MastodonAPI.NotificationView do
 | |
|   use Pleroma.Web, :view
 | |
| 
 | |
|   alias Pleroma.Activity
 | |
|   alias Pleroma.Notification
 | |
|   alias Pleroma.User
 | |
|   alias Pleroma.Web.CommonAPI
 | |
|   alias Pleroma.Web.MastodonAPI.AccountView
 | |
|   alias Pleroma.Web.MastodonAPI.NotificationView
 | |
|   alias Pleroma.Web.MastodonAPI.StatusView
 | |
| 
 | |
|   def render("index.json", %{notifications: notifications, for: user}) do
 | |
|     safe_render_many(notifications, NotificationView, "show.json", %{for: user})
 | |
|   end
 | |
| 
 | |
|   def render("show.json", %{
 | |
|         notification: %Notification{activity: activity} = notification,
 | |
|         for: user
 | |
|       }) do
 | |
|     actor = User.get_cached_by_ap_id(activity.data["actor"])
 | |
|     parent_activity = Activity.get_create_by_object_ap_id(activity.data["object"])
 | |
|     mastodon_type = Activity.mastodon_notification_type(activity)
 | |
| 
 | |
|     response = %{
 | |
|       id: to_string(notification.id),
 | |
|       type: mastodon_type,
 | |
|       created_at: CommonAPI.Utils.to_masto_date(notification.inserted_at),
 | |
|       account: AccountView.render("account.json", %{user: actor, for: user}),
 | |
|       pleroma: %{
 | |
|         is_seen: notification.seen
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     case mastodon_type do
 | |
|       "mention" ->
 | |
|         response
 | |
|         |> Map.merge(%{
 | |
|           status: StatusView.render("status.json", %{activity: activity, for: user})
 | |
|         })
 | |
| 
 | |
|       "favourite" ->
 | |
|         response
 | |
|         |> Map.merge(%{
 | |
|           status: StatusView.render("status.json", %{activity: parent_activity, for: user})
 | |
|         })
 | |
| 
 | |
|       "reblog" ->
 | |
|         response
 | |
|         |> Map.merge(%{
 | |
|           status: StatusView.render("status.json", %{activity: parent_activity, for: user})
 | |
|         })
 | |
| 
 | |
|       "follow" ->
 | |
|         response
 | |
| 
 | |
|       _ ->
 | |
|         nil
 | |
|     end
 | |
|   end
 | |
| end
 | 
