evazion
70a7f77a48
Post#approve!: signal errors with invalid object instead of exception.
2017-04-03 17:18:32 -05:00
r888888888
87ff449f20
fixes #2951 : /post_versions is extremely slow
2017-04-03 15:03:59 -07:00
evazion
1ae5b7ba2f
post archives: fix N+1 problem when fetching previous version.
2017-04-03 15:03:26 -07:00
evazion
964197d403
upload tags report: fix N+1 queries issues.
2017-04-03 15:03:26 -07:00
r888888888
c74b1d532a
adjust interval for mod queue notice
2017-03-27 15:53:59 -07:00
r888888888
bd3dfc73c0
fix queue for bulk reverts
2017-03-21 17:13:51 -07:00
evazion
935cefd27e
API: on error, include backtrace in json response.
...
Incidentally fixes issue with error responses inside /sources.json not
including the usual `{"success": false}`.
2017-03-16 18:11:43 -05:00
evazion
28bdfce9f6
/sources: add /sources.xml endpoint.
2017-03-16 18:10:30 -05:00
r888888888
da06bee0ab
revamp saved search implementation
2017-03-15 15:36:48 -07:00
evazion
d4b9b66c0e
post_versions_controller.rb: fix N+1 queries in post, updater.
...
Rendering the updater name at post_versions/_listing.html:25 caused
this for each post version:
SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1
PostArchive#diff caused this for each post version:
SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT 1
2017-03-02 17:47:20 -06:00
r888888888
5676978096
require membership to see post history
2017-03-01 16:29:00 -08:00
r888888888
12e4a82db3
fix upload tags report
2017-02-28 16:28:58 -08:00
r888888888
7f22baa1bc
refactor upload tags report
2017-02-28 15:34:40 -08:00
Albert Yi
458a9692d6
Merge pull request #2864 from r888888888/upload_tags_report
...
Implement #2863 : basic upload tags change report
2017-02-28 15:28:40 -08:00
Albert Yi
3780645cb2
Merge pull request #2897 from evazion/fix-rescue_from
...
Remove redundant rescue_from calls.
2017-02-27 16:48:44 -08:00
Albert Yi
27a85cd066
Merge pull request #2895 from evazion/fix-modqueue-dtext
...
modqueue: link tags, optimize sql, use dtext in disapproval reasons.
2017-02-27 16:47:19 -08:00
r888888888
398f58684f
Merge branch 'post-archive'
2017-02-27 10:45:13 -08:00
evazion
40092f21ba
Remove redundant rescue_from calls.
...
These are redundant because ApplicationController rescues these exceptions already.
2017-02-25 02:18:16 -06:00
evazion
83915a5d46
modqueue: avoid N+1 queries for disapprovals, uploaders.
...
Fixes an N+1 queries problem in the /moderator/post/queue view by
prefetching disapprovals and uploaders.
Also the way disapproval messages were previously rendered triggered a bunch
of sql queries for each post:
SELECT COUNT(*) FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 [["post_id", 52]]
SELECT COUNT(*) FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 AND "post_disapprovals"."reason" = $2 [["post_id", 52], ["reason", "breaks_rules"]]
SELECT COUNT(*) FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 AND "post_disapprovals"."reason" = $2 [["post_id", 52], ["reason", "poor_quality"]]
SELECT COUNT(*) FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 AND "post_disapprovals"."reason" IN ('disinterest', 'legacy') [["post_id", 52]]
SELECT COUNT(*) FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 AND (message is not null and message <> '') [["post_id", 52]]
SELECT "post_disapprovals".* FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 AND (message is not null and message <> '') [["post_id", 52]]
This refactors to bring it down to one:
SELECT "post_disapprovals".* FROM "post_disapprovals" WHERE "post_disapprovals"."post_id" = $1 [["post_id", 52]]
2017-02-24 21:03:14 -06:00
evazion
1400f64338
dmails_controller.rb: convert to strong params.
2017-02-23 22:51:17 -06:00
Albert Yi
5404c1d231
implement postarchive
2017-02-21 13:40:52 -08:00
r888888888
6c9d5e4f9a
remove advertisement code
2017-02-21 13:35:22 -08:00
r888888888
f4d9f76646
remove contributors report
2017-02-21 13:12:43 -08:00
r888888888
ce20a5b36a
remove janitor trial report
2017-02-21 13:10:38 -08:00
r888888888
359f48d871
remove user promotions report
2017-02-21 13:09:43 -08:00
r888888888
291e9acdc7
fixes #2885 : "Is Deleted" not being recorded correctly for Wiki Page Versions
2017-02-15 15:32:41 -08:00
r888888888
f374eec4a1
fixes #2869 : Add way to differentiate Pool Descriptions from Pool History
2017-02-14 16:03:19 -08:00
r888888888
aa41c41572
fixes #2876 : Changing approver/contributor privileges should log mod action
2017-02-14 12:46:54 -08:00
Albert Yi
1c837aba6e
Merge pull request #2879 from evazion/fix-dead-code
...
Eliminate dead code
2017-02-07 13:56:05 -08:00
evazion
b5bf9b8678
post.rb: remove assorted unused methods.
2017-02-06 19:07:03 -06:00
evazion
23038de470
posts_controller.rb: remove unused /posts/home action.
...
Unused since a4911e3 .
2017-02-06 19:07:03 -06:00
evazion
7e1f63de6a
landings_controller.rb: remove unused /landing route.
...
Broken since PopularPostExplorer was removed in 7269ec0 .
2017-02-06 19:07:03 -06:00
evazion
d74503ae05
tests: add misc controller tests.
2017-02-06 18:48:35 -06:00
Type-kun
1e8eceeba9
Implement basic upload tags change report
2017-01-27 18:28:15 +05:00
r888888888
1207faa600
fix tests
2017-01-24 16:05:06 -08:00
evazion
caaff24112
/comments?group_by=comment: add is_sticky/is_deleted/do_not_bump_post/order params.
2017-01-23 22:13:00 -06:00
evazion
7486bb0add
Fix #2851 : Account deletion should remove name change requests.
...
Hides name change requests for deleted users (username matches /user_[0-9]+~*/).
2017-01-19 22:32:13 +00:00
r888888888
bfa56a860c
fixes #2415 : "Random post" causes RecordNotFound exceptions
2017-01-18 14:12:12 -08:00
Albert Yi
bdac591266
fixes #2838
2017-01-16 12:57:43 -08:00
Albert Yi
a49394e6cd
Merge pull request #2842 from evazion/fix-user-name-changes
...
Minor user name changes improvements.
2017-01-16 11:50:51 -08:00
Type-kun
6a6d16852a
Final fix for #2658 - close exploit with "new".
2017-01-16 19:34:31 +05:00
evazion
d31a0c23f3
Name changes: add API endpoints for /user_name_change_requests.
2017-01-15 05:03:09 +00:00
evazion
9e9fdcb55d
Name changes: make /user_name_change_requests member+; add reason/status/date.
2017-01-15 05:03:09 +00:00
evazion
66e30b323c
Name changes: remove delete request button.
2017-01-15 05:03:08 +00:00
Albert Yi
0ab45ebc42
add postarchive model, fixes #2831 : Replace Subscriptions Link With Search:All Link
2017-01-11 11:39:14 -08:00
Albert Yi
8db970f9f3
skip api check for forum and comment endpoints
2017-01-10 15:06:34 -08:00
Albert Yi
1724f89742
Merge pull request #2826 from r888888888/related-tags-html
...
Related tags html page (fixes #2750 )
2017-01-09 18:11:22 -08:00
Albert Yi
5445b341bc
fixes #2822 : Post vote API: returns 200 for both success and failure; fixes bug with x-api-limit header
2017-01-09 17:31:14 -08:00
Albert Yi
f2a5d45db0
implement token bucket rate limiting
2017-01-09 17:31:14 -08:00
Type-kun
7c98c60129
Simple HTML page and form for related tags
2017-01-09 19:18:18 +05:00