Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add email addresses to poll export for owner #2327

Merged
merged 2 commits into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Model/Mail/MailBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ protected function getRichDescription() : string {
return $this->getParsedMarkDown($this->poll->getDescription());
}

protected function getParsedMarkDown($source) : string {
protected function getParsedMarkDown(string $source) : string {
$config = [
'renderer' => [
'soft_break' => "<br />",
Expand Down
2 changes: 1 addition & 1 deletion lib/Service/MailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function resolveEmailAddress(int $pollId, string $userId): string {
} catch (\Exception $e) {
// catch silently
}
return $userId;
return '';
}

public function resendInvitation(string $token): Share {
Expand Down
11 changes: 7 additions & 4 deletions lib/Service/PollService.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ public function clone(int $pollId): Poll {
/**
* Collect email addresses from particitipants
*
* @return string[]
* @return string[][]
*
* @psalm-return array<int, string>
* @psalm-return list<array{displayName: string, emailAddress: string, combined: string}>
*/
public function getParticipantsEmailAddresses(int $pollId): array {
$this->acl->setPollId($pollId, Acl::PERMISSION_POLL_EDIT);
Expand All @@ -359,9 +359,12 @@ public function getParticipantsEmailAddresses(int $pollId): array {
$votes = $this->voteMapper->findParticipantsByPoll($this->poll->getId());
$list = [];
foreach ($votes as $vote) {
$list[] = $vote->getDisplayName() . ' <' . $this->mailService->resolveEmailAddress($this->poll->getId(), $vote->getUserId()) . '>';
$list[] = [
'displayName' => $vote->getDisplayName(),
'emailAddress' => $this->mailService->resolveEmailAddress($this->poll->getId(), $vote->getUserId()),
'combined' => $vote->getDisplayName() . ' <' . $this->mailService->resolveEmailAddress($this->poll->getId(), $vote->getUserId()) . '>'];
}
return array_unique($list);
return $list;
}

/**
Expand Down
46 changes: 38 additions & 8 deletions src/js/components/Export/ExportPoll.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export default {
return {
workBook: [],
sheetData: [],
emailAddresses: [],
}
},

Expand All @@ -90,11 +91,15 @@ export default {
poll: (state) => state.poll,
options: (state) => state.options,
votes: (state) => state.votes,
isOwner: (state) => state.poll.acl.allowEdit,
}),
},

methods: {
exportFile(type) {
async exportFile(type) {
const participantsHeader = [t('polls', 'Participants')]
const fromHeader = [t('polls', 'From')]
const toHeader = [t('polls', 'To')]
this.workBook = xlsxUtils.book_new()
this.workBook.SheetNames.push(this.poll.title.slice(0, 31))
this.sheetData = []
Expand All @@ -106,18 +111,41 @@ export default {
)
}

if (this.isOwner) {
participantsHeader.push(t('polls', 'Email address'))
fromHeader.push('')
toHeader.push('')
const response = await this.$store.dispatch('poll/getParticipantsEmailAddresses')
this.emailAddresses = response.data
}

if (this.poll.type === 'textPoll') {
this.sheetData.push(['', ...this.options.list.map((item) => item.text)])
this.sheetData.push([
...participantsHeader,
...this.options.list.map((item) => item.text),
])

} else if (['csv'].includes(type)) {
this.sheetData.push([t('polls', 'Participants'), ...this.options.list.map((option) => this.explodeDates(option).iso)])
this.sheetData.push([
...participantsHeader,
...this.options.list.map((option) => this.explodeDates(option).iso),
])

} else if (['html'].includes(type)) {
this.sheetData.push([t('polls', 'Participants'), ...this.options.list.map((option) => this.explodeDates(option).raw)])
this.sheetData.push([
...participantsHeader,
...this.options.list.map((option) => this.explodeDates(option).raw),
])

} else {
this.sheetData.push([t('polls', 'From'), ...this.options.list.map((option) => this.explodeDates(option).from.dateTime)])
this.sheetData.push([t('polls', 'To'), ...this.options.list.map((option) => this.explodeDates(option).to.dateTime)])
this.sheetData.push([
...fromHeader,
...this.options.list.map((option) => this.explodeDates(option).from.dateTime),
])
this.sheetData.push([
...toHeader,
...this.options.list.map((option) => this.explodeDates(option).to.dateTime),
])
}

if (['html', 'ods', 'xlsx'].includes(type)) {
Expand All @@ -127,14 +155,16 @@ export default {
} else {
this.addVotesArray()
}

const workBookOutput = xlsxWrite(this.workBook, { bookType: type, type: 'binary' })
saveAs(new Blob([this.s2ab(workBookOutput)], { type: 'application/octet-stream' }), `poll.${type}`)
},

addVotesArray(style) {
this.participants.forEach((participant) => {
const votesLine = [participant.displayName]
if (this.isOwner) {
votesLine.push(this.emailAddresses.find((item) => item.displayName === participant.displayName).emailAddress)
}

this.options.list.forEach((option, i) => {
if (style === 'symbols') {
Expand All @@ -150,7 +180,7 @@ export default {
})

const workSheet = xlsxUtils.aoa_to_sheet(this.sheetData)
this.workBook.Sheets[this.poll.title] = workSheet
this.workBook.Sheets[this.poll.title.slice(0, 31)] = workSheet
},

s2ab(s) {
Expand Down
3 changes: 2 additions & 1 deletion src/js/components/User/UserMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,11 @@ export default {
showError(t('polls', 'Error while copying link to clipboard'))
}
},

async getAddresses() {
try {
const response = await this.$store.dispatch('poll/getParticipantsEmailAddresses')
await this.$copyText(response.data)
await this.$copyText(response.data.map((item) => item.combined))
showSuccess(t('polls', 'Link copied to clipboard'))
} catch {
showError(t('polls', 'Error while copying link to clipboard'))
Expand Down