FIX: rate limit user posts export
This commit is contained in:
parent
f7955406cc
commit
78537aad39
|
@ -1,6 +1,5 @@
|
|||
import ObjectController from 'discourse/controllers/object';
|
||||
import CanCheckEmails from 'discourse/mixins/can-check-emails';
|
||||
import { outputExportResult } from 'discourse/lib/export-result';
|
||||
|
||||
export default ObjectController.extend(CanCheckEmails, {
|
||||
indexStream: false,
|
||||
|
@ -55,7 +54,7 @@ export default ObjectController.extend(CanCheckEmails, {
|
|||
},
|
||||
|
||||
exportUserArchive: function() {
|
||||
Discourse.ExportCsv.exportUserArchive().then(outputExportResult);
|
||||
Discourse.ExportCsv.exportUserArchive();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -15,7 +15,13 @@ Discourse.ExportCsv.reopenClass({
|
|||
@method export_user_archive
|
||||
**/
|
||||
exportUserArchive: function() {
|
||||
return Discourse.ajax("/export_csv/export_entity.json", {data: {entity_type: 'user', entity: 'user_archive'}});
|
||||
return Discourse.ajax("/export_csv/export_entity.json", {
|
||||
data: {entity_type: 'user', entity: 'user_archive'}
|
||||
}).then(function() {
|
||||
bootbox.alert(I18n.t("admin.export_csv.success"));
|
||||
}).catch(function() {
|
||||
bootbox.alert(I18n.t("admin.export_csv.rate_limit_error"));
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
@ -5,9 +5,7 @@ class ExportCsvController < ApplicationController
|
|||
def export_entity
|
||||
params.require(:entity)
|
||||
params.require(:entity_type)
|
||||
if params[:entity_type] == "admin"
|
||||
guardian.ensure_can_export_admin_entity!(current_user)
|
||||
end
|
||||
guardian.ensure_can_export_entity!(params[:entity_type])
|
||||
|
||||
Jobs.enqueue(:export_csv_file, entity: params[:entity], user_id: current_user.id)
|
||||
render json: success_json
|
||||
|
|
|
@ -1697,6 +1697,7 @@ en:
|
|||
export_csv:
|
||||
success: "Export initiated, you will be notified via private message when the process is complete."
|
||||
failed: "Export failed. Please check the logs."
|
||||
rate_limit_error: "Posts can be downloaded once per day, please try again tomorrow."
|
||||
button_text: "Export"
|
||||
button_title:
|
||||
user: "Export full user list in CSV format."
|
||||
|
|
|
@ -249,8 +249,10 @@ class Guardian
|
|||
@can_see_emails
|
||||
end
|
||||
|
||||
def can_export_admin_entity?(user)
|
||||
user.staff?
|
||||
def can_export_entity?(entity_type)
|
||||
return true if is_staff?
|
||||
return false if entity_type == "admin"
|
||||
UserExport.where(user_id: @user.id, created_at: (Time.zone.now.beginning_of_day..Time.zone.now.end_of_day)).count == 0
|
||||
end
|
||||
|
||||
private
|
||||
|
|
|
@ -14,6 +14,13 @@ describe ExportCsvController do
|
|||
response.should be_success
|
||||
end
|
||||
|
||||
it "should not enqueue export job if rate limit is reached" do
|
||||
Jobs::ExportCsvFile.any_instance.expects(:execute).never
|
||||
UserExport.create(export_type: "user", user_id: @user.id)
|
||||
xhr :post, :export_entity, entity: "user_archive", entity_type: "user"
|
||||
response.should_not be_success
|
||||
end
|
||||
|
||||
it "returns 404 when normal user tries to export admin entity" do
|
||||
xhr :post, :export_entity, entity: "staff_action", entity_type: "admin"
|
||||
response.should_not be_success
|
||||
|
@ -55,6 +62,13 @@ describe ExportCsvController do
|
|||
xhr :post, :export_entity, entity: "staff_action", entity_type: "admin"
|
||||
response.should be_success
|
||||
end
|
||||
|
||||
it "should not rate limit export for staff" do
|
||||
Jobs.expects(:enqueue).with(:export_csv_file, has_entries(entity: "staff_action", user_id: @admin.id))
|
||||
UserExport.create(export_type: "admin", user_id: @admin.id)
|
||||
xhr :post, :export_entity, entity: "staff_action", entity_type: "admin"
|
||||
response.should be_success
|
||||
end
|
||||
end
|
||||
|
||||
describe ".download" do
|
||||
|
|
Loading…
Reference in New Issue