Mailspring/examples/N1-Quick-Schedule/lib/availability-composer-extension.cjsx

26 lines
1 KiB
Plaintext
Raw Normal View History

{ComposerExtension} = require 'nylas-exports'
2015-10-03 07:06:56 +08:00
request = require 'request'
class AvailabilityComposerExtension extends ComposerExtension
2015-10-03 07:06:56 +08:00
# When subclassing the ComposerExtension, you can add your own custom logic
2015-10-03 07:06:56 +08:00
# to execute before a draft is sent in the @finalizeSessionBeforeSending
# method. Here, we're registering the events before we send the draft.
@finalizeSessionBeforeSending: ({session}) ->
2015-10-03 07:06:56 +08:00
body = session.draft().body
participants = session.draft().participants()
sender = session.draft().from
matches = (/data-quick-schedule="(.*)?" style/).exec body
2015-10-03 07:06:56 +08:00
if matches?
json = atob(matches[1])
2015-10-03 07:06:56 +08:00
data = JSON.parse(json)
data.attendees = []
data.attendees = participants.map (p) ->
name: p.name, email: p.email, isSender: p.isMe()
serverUrl = "https://quickschedule.herokuapp.com/register-events"
2015-10-03 07:06:56 +08:00
request.post {url: serverUrl, body: JSON.stringify(data)}, (error, resp, data) =>
console.log(error,resp,data)
module.exports = AvailabilityComposerExtension