# frozen_string_literal: true

# name: discourse-affiliate
# about: Allows the creation of Amazon affiliate links on your forum.
# meta_topic_id: 101937
# version: 0.2
# authors: Régis Hanol (zogstrip), Sam Saffron
# url: https://github.com/discourse/discourse/tree/main/plugins/discourse-affiliate

enabled_site_setting :affiliate_enabled

register_svg_icon "handshake"

after_initialize do
  require_relative "lib/affiliate_processor"

  on(:post_process_cooked) do |doc, post|
    doc.css("a[href]").each { |a| a["href"] = AffiliateProcessor.apply(a["href"]) }
    true
  end
end
