forked from pingcap/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_post_result.rb
53 lines (41 loc) · 875 Bytes
/
new_post_result.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true
require_dependency 'has_errors'
class NewPostResult
include HasErrors
attr_reader :action
attr_accessor :reason
attr_accessor :post
attr_accessor :reviewable
attr_accessor :pending_count
def initialize(action, success = false)
@action = action
@success = success
end
def check_errors_from(obj)
if obj.errors.empty?
@success = true
else
add_errors_from(obj)
end
end
def check_errors(arr)
if arr.empty?
@success = true
else
arr.each { |e| errors.add(:base, e) unless errors[:base].include?(e) }
end
end
def queued_post
Discourse.deprecate(
"NewPostManager#queued_post is deprecated. Please use #reviewable instead.",
output_in_test: true
)
reviewable
end
def success?
@success
end
def failed?
!@success
end
end