Fix static FE plug to handle missing Accept header. See merge request pleroma/pleroma!2260
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			711 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			711 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
# Pleroma: A lightweight social networking server
 | 
						|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 | 
						|
defmodule Pleroma.Plugs.StaticFEPlug do
 | 
						|
  import Plug.Conn
 | 
						|
  alias Pleroma.Web.StaticFE.StaticFEController
 | 
						|
 | 
						|
  def init(options), do: options
 | 
						|
 | 
						|
  def call(conn, _) do
 | 
						|
    if enabled?() and accepts_html?(conn) do
 | 
						|
      conn
 | 
						|
      |> StaticFEController.call(:show)
 | 
						|
      |> halt()
 | 
						|
    else
 | 
						|
      conn
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
 | 
						|
 | 
						|
  defp accepts_html?(conn) do
 | 
						|
    case get_req_header(conn, "accept") do
 | 
						|
      [accept | _] -> String.contains?(accept, "text/html")
 | 
						|
      _ -> false
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |