Merge branch 'user-csv' of git://github.com/heukirne/web-sharelatex into heukirne-user-csv

This commit is contained in:
Henry Oswald 2015-05-29 12:17:54 +01:00
commit d3f6c0c614
4 changed files with 51 additions and 7 deletions

View file

@ -85,3 +85,19 @@ module.exports =
title: "Sucessfully joined group"
licenceName:licence.name
exportGroupCsv: (req, res)->
user_id = req.session.user._id
logger.log user_id: user_id, "exporting group csv"
SubscriptionLocator.getUsersSubscription user_id, (err, subscription)->
if !subscription.groupPlan
return res.redirect("/")
SubscriptionGroupHandler.getPopulatedListOfMembers user_id, (err, users)->
groupCsv = ""
for user in users
groupCsv += user.email + "\n"
res.header(
"Content-Disposition",
"attachment; filename=Group.csv"
)
res.contentType('text/csv')
res.send(groupCsv)

View file

@ -22,6 +22,7 @@ module.exports =
app.get '/subscription/group', AuthenticationController.requireLogin(), SubscriptionGroupController.renderSubscriptionGroupAdminPage
app.post '/subscription/group/user', AuthenticationController.requireLogin(), SubscriptionGroupController.addUserToGroup
app.get '/subscription/group/export', AuthenticationController.requireLogin(), SubscriptionGroupController.exportGroupCsv
app.del '/subscription/group/user/:user_id', AuthenticationController.requireLogin(), SubscriptionGroupController.removeUserFromGroup
app.get '/user/subscription/:subscription_id/group/invited', AuthenticationController.requireLogin(), SubscriptionGroupController.renderGroupInvitePage

View file

@ -73,8 +73,10 @@ block content
ng-model="inputs.emails",
on-enter="addMembers()"
)
.col-xs-6
.col-xs-4
button.btn.btn-primary(ng-click="addMembers()") #{translate("add")}
.col-xs-2
a(href="/subscription/group/export") Export CSV
script(type="text/javascript").
window.users = !{JSON.stringify(users)};

View file

@ -3,12 +3,12 @@ should = require('chai').should()
sinon = require 'sinon'
assert = require("chai").assert
modulePath = "../../../../app/js/Features/Subscription/SubscriptionGroupController"
MockResponse = require "../helpers/MockResponse"
describe "Subscription Group Controller", ->
beforeEach ->
@user = {_id:"!@312431"}
@user = {_id:"!@312431",email:"user@email.com"}
@subscription = {}
@GroupHandler =
addUserToGroup: sinon.stub().callsArgWith(2, null, @user)
@ -16,7 +16,7 @@ describe "Subscription Group Controller", ->
isUserPartOfGroup: sinon.stub()
sendVerificationEmail:sinon.stub()
processGroupVerification:sinon.stub()
getPopulatedListOfMembers: sinon.stub().callsArgWith(1, null, [@user])
@SubscriptionLocator = getUsersSubscription: sinon.stub().callsArgWith(1, null, @subscription)
@SubscriptionDomainHandler =
@ -78,7 +78,7 @@ describe "Subscription Group Controller", ->
describe "renderSubscriptionGroupAdminPage", ->
it "should redirect you if you don't have a group account", (done)->
@subscription.group = false
@subscription.groupPlan = false
res =
redirect : (path)=>
@ -86,7 +86,6 @@ describe "Subscription Group Controller", ->
done()
@Controller.renderSubscriptionGroupAdminPage @req, res
describe "renderGroupInvitePage", ->
describe "with a valid licence", ->
beforeEach ->
@ -166,4 +165,30 @@ describe "Subscription Group Controller", ->
it "should send a 500", (done)->
@Controller.completeJoin @req, {}
@ErrorsController.notFound.called.should.equal true
done()
done()
describe "exportGroupCsv", ->
beforeEach ->
@subscription.groupPlan = true
@res = new MockResponse()
@res.contentType = sinon.stub()
@res.header = sinon.stub()
@res.send = sinon.stub()
@Controller.exportGroupCsv @req, @res
it "should set the correct content type on the request", ->
@res.contentType
.calledWith("text/csv")
.should.equal true
it "should name the exported csv file", ->
@res.header
.calledWith(
"Content-Disposition",
"attachment; filename=Group.csv")
.should.equal true
it "should export the correct csv", ->
@res.send
.calledWith("user@email.com\n")
.should.equal true