Browse Source

Allow additionnal schemes in the config

tags/v0.9.9
Haelwenn (lanodan) Monnier 6 years ago
parent
commit
d5091c3175
No known key found for this signature in database GPG Key ID: D5B7A8E43C997DEE
2 changed files with 7 additions and 1 deletions
  1. +2
    -0
      config/config.exs
  2. +5
    -1
      lib/pleroma/formatter.ex

+ 2
- 0
config/config.exs View File

@@ -16,6 +16,8 @@ config :pleroma, Pleroma.Upload,

config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]

config :pleroma, :uri_schemes, additionnal_schemes: []

# Configures the endpoint
config :pleroma, Pleroma.Web.Endpoint,
url: [host: "localhost"],


+ 5
- 1
lib/pleroma/formatter.ex View File

@@ -199,10 +199,14 @@ defmodule Pleroma.Formatter do

@doc "changes scheme:... urls to html links"
def add_links({subs, text}) do
additionnal_schemes =
Application.get_env(:pleroma, :uri_schemes, [])
|> Keyword.get(:additionnal_schemes, [])

links =
text
|> String.split([" ", "\t", "<br>"])
|> Enum.filter(fn word -> String.starts_with?(word, @uri_schemes) end)
|> Enum.filter(fn word -> String.starts_with?(word, @uri_schemes ++ additionnal_schemes) end)
|> Enum.filter(fn word -> Regex.match?(@link_regex, word) end)
|> Enum.map(fn url -> {Ecto.UUID.generate(), url} end)
|> Enum.sort_by(fn {_, url} -> -String.length(url) end)


Loading…
Cancel
Save