def delete_note
return if object_uri.nil?
- RedisLock.acquire(lock_options) do |_lock|
- delete_later!(object_uri)
+ unless invalid_origin?(object_uri)
+ RedisLock.acquire(lock_options) { |_lock| delete_later!(object_uri) }
+ Tombstone.find_or_create_by(uri: object_uri, account: @account)
end
@status = Status.find_by(uri: object_uri, account: @account)
def lock_options
{ redis: Redis.current, key: "create:#{object_uri}" }
end
+
+ def invalid_origin?(url)
+ return true if unsupported_uri_scheme?(url)
+
+ needle = Addressable::URI.parse(url).host
+ haystack = Addressable::URI.parse(@account.uri).host
+
+ !haystack.casecmp(needle).zero?
+ end
end
--- /dev/null
+# frozen_string_literal: true
+
+# == Schema Information
+#
+# Table name: tombstones
+#
+# id :bigint(8) not null, primary key
+# account_id :bigint(8)
+# uri :string not null
+# created_at :datetime not null
+# updated_at :datetime not null
+#
+
+class Tombstone < ApplicationRecord
+end
after_protocol_change! if protocol_changed?
after_key_change! if key_changed? && !@options[:signed_with_known_key]
+ clear_tombstones! if key_changed?
+
unless @options[:only_key]
check_featured_collection! if @account.featured_collection_url.present?
check_links! unless @account.fields.empty?
!@old_public_key.nil? && @old_public_key != @account.public_key
end
+ def clear_tombstones!
+ Tombstone.delete_all(account_id: @account.id)
+ end
+
def protocol_changed?
!@old_protocol.nil? && @old_protocol != @account.protocol
end
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2019_01_03_124754) do
+ActiveRecord::Schema.define(version: 2019_01_17_114553) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
t.index ["name"], name: "index_tags_on_name", unique: true
end
+ create_table "tombstones", force: :cascade do |t|
+ t.bigint "account_id"
+ t.string "uri", null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.index ["account_id"], name: "index_tombstones_on_account_id"
+ t.index ["uri"], name: "index_tombstones_on_uri"
+ end
+
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.datetime "created_at", null: false
add_foreign_key "statuses_tags", "tags", name: "fk_3081861e21", on_delete: :cascade
add_foreign_key "stream_entries", "accounts", name: "fk_5659b17554", on_delete: :cascade
add_foreign_key "subscriptions", "accounts", name: "fk_9847d1cbb5", on_delete: :cascade
+ add_foreign_key "tombstones", "accounts", on_delete: :cascade
add_foreign_key "users", "accounts", name: "fk_50500f500d", on_delete: :cascade
add_foreign_key "users", "invites", on_delete: :nullify
add_foreign_key "users", "oauth_applications", column: "created_by_application_id", on_delete: :nullify