Closes #612 Co-authored-by: tusooa <tusooa@kazv.moe> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/626 Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Co-committed-by: FloatingGhost <hannah@coffee-and-dreams.uk>
		
			
				
	
	
		
			57 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
# Pleroma: A lightweight social networking server
 | 
						|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 | 
						|
defmodule Pleroma.Web.StaticFE.StaticFEView do
 | 
						|
  use Pleroma.Web, :view
 | 
						|
 | 
						|
  alias Calendar.Strftime
 | 
						|
  alias Pleroma.Emoji.Formatter
 | 
						|
  alias Pleroma.User
 | 
						|
  alias Pleroma.Web.Gettext
 | 
						|
  alias Pleroma.Web.MediaProxy
 | 
						|
  alias Pleroma.Web.Metadata.Utils
 | 
						|
 | 
						|
  use Phoenix.HTML
 | 
						|
 | 
						|
  @media_types ["image", "audio", "video"]
 | 
						|
 | 
						|
  def fetch_media_type(%{"mediaType" => mediaType}) do
 | 
						|
    Utils.fetch_media_type(@media_types, mediaType)
 | 
						|
  end
 | 
						|
 | 
						|
  def time_ago(date) do
 | 
						|
    {:ok, date, _} = DateTime.from_iso8601(date)
 | 
						|
    now = DateTime.utc_now()
 | 
						|
 | 
						|
    Timex.from_now(date, now)
 | 
						|
  end
 | 
						|
 | 
						|
  def format_date(date) do
 | 
						|
    {:ok, date, _} = DateTime.from_iso8601(date)
 | 
						|
    Strftime.strftime!(date, "%Y/%m/%d %l:%M:%S %p UTC")
 | 
						|
  end
 | 
						|
 | 
						|
  def instance_name, do: Pleroma.Config.get([:instance, :name], "Akkoma")
 | 
						|
 | 
						|
  def open_content? do
 | 
						|
    Pleroma.Config.get(
 | 
						|
      [:frontend_configurations, :collapse_message_with_subjects],
 | 
						|
      false
 | 
						|
    )
 | 
						|
  end
 | 
						|
 | 
						|
  def get_attachment_name(%{"name" => name}), do: name
 | 
						|
 | 
						|
  def get_attachment_name(_), do: ""
 | 
						|
 | 
						|
  def poll_percentage(count, total_votes) do
 | 
						|
    case count do
 | 
						|
      0 ->
 | 
						|
        "0%"
 | 
						|
 | 
						|
      _ ->
 | 
						|
        Integer.to_string(trunc(count / total_votes * 100)) <> "%"
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |