Prevent reverting to foreign versions (fixes #2711).
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
class Artist < ActiveRecord::Base
|
||||
class RevertError < Exception ; end
|
||||
|
||||
before_create :initialize_creator
|
||||
before_validation :normalize_name
|
||||
after_save :create_version
|
||||
@@ -173,6 +175,10 @@ class Artist < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def revert_to!(version)
|
||||
if id != version.artist_id
|
||||
raise RevertError.new("You cannot revert to a previous version of another artist.")
|
||||
end
|
||||
|
||||
self.name = version.name
|
||||
self.url_string = version.url_string
|
||||
self.is_active = version.is_active
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class ArtistCommentary < ActiveRecord::Base
|
||||
class RevertError < Exception ; end
|
||||
|
||||
attr_accessor :remove_commentary_tag, :remove_commentary_request_tag, :remove_commentary_check_tag
|
||||
attr_accessor :add_commentary_tag, :add_commentary_request_tag, :add_commentary_check_tag
|
||||
attr_accessible :post_id, :original_description, :original_title, :translated_description, :translated_title, :remove_commentary_tag, :remove_commentary_request_tag, :add_commentary_tag, :add_commentary_request_tag, :add_commentary_check_tag, :remove_commentary_check_tag
|
||||
@@ -76,6 +78,10 @@ class ArtistCommentary < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def revert_to(version)
|
||||
if post_id != version.post_id
|
||||
raise RevertError.new("You cannot revert to a previous artist commentary of another post.")
|
||||
end
|
||||
|
||||
self.original_description = version.original_description
|
||||
self.original_title = version.original_title
|
||||
self.translated_description = version.translated_description
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class Note < ActiveRecord::Base
|
||||
class RevertError < Exception ; end
|
||||
|
||||
attr_accessor :updater_id, :updater_ip_addr, :html_id
|
||||
belongs_to :post
|
||||
belongs_to :creator, :class_name => "User"
|
||||
@@ -204,6 +206,10 @@ class Note < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def revert_to(version)
|
||||
if id != version.note_id
|
||||
raise RevertError.new("You cannot revert to a previous version of another note.")
|
||||
end
|
||||
|
||||
self.x = version.x
|
||||
self.y = version.y
|
||||
self.post_id = version.post_id
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
require 'ostruct'
|
||||
|
||||
class Pool < ActiveRecord::Base
|
||||
class RevertError < Exception ; end
|
||||
|
||||
validates_uniqueness_of :name, :case_sensitive => false
|
||||
validates_format_of :name, :with => /\A[^,]+\Z/, :message => "cannot have commas"
|
||||
validates_inclusion_of :category, :in => %w(series collection)
|
||||
@@ -194,6 +196,10 @@ class Pool < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def revert_to!(version)
|
||||
if id != version.pool_id
|
||||
raise RevertError.new("You cannot revert to a previous version of another pool.")
|
||||
end
|
||||
|
||||
self.post_ids = version.post_ids
|
||||
self.name = version.name
|
||||
synchronize!
|
||||
|
||||
@@ -4,6 +4,7 @@ require 'google/apis/pubsub_v1'
|
||||
class Post < ActiveRecord::Base
|
||||
class ApprovalError < Exception ; end
|
||||
class DisapprovalError < Exception ; end
|
||||
class RevertError < Exception ; end
|
||||
class SearchError < Exception ; end
|
||||
|
||||
attr_accessor :old_tag_string, :old_parent_id, :old_source, :old_rating, :has_constraints, :disable_versioning, :view_count
|
||||
@@ -1390,6 +1391,10 @@ class Post < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def revert_to(target)
|
||||
if id != target.post_id
|
||||
raise RevertError.new("You cannot revert to a previous version of another post.")
|
||||
end
|
||||
|
||||
self.tag_string = target.tags
|
||||
self.rating = target.rating
|
||||
self.source = target.source
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class WikiPage < ActiveRecord::Base
|
||||
class RevertError < Exception ; end
|
||||
|
||||
before_save :normalize_title
|
||||
before_save :normalize_other_names
|
||||
before_validation :initialize_creator, :on => :create
|
||||
@@ -127,6 +129,10 @@ class WikiPage < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def revert_to(version)
|
||||
if id != version.wiki_page_id
|
||||
raise RevertError.new("You cannot revert to a previous version of another wiki page.")
|
||||
end
|
||||
|
||||
self.title = version.title
|
||||
self.body = version.body
|
||||
self.is_locked = version.is_locked
|
||||
|
||||
Reference in New Issue
Block a user