147 lines
5.3 KiB
JavaScript
147 lines
5.3 KiB
JavaScript
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.0.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Booking confirmation page.
|
|
*
|
|
* This module implements the functionality of the booking confirmation page.
|
|
*/
|
|
App.Pages.BookingConfirmation = (function () {
|
|
const $addToGoogleCalendar = $('#add-to-google-calendar');
|
|
|
|
/**
|
|
* Handle Authorization Result
|
|
*
|
|
* This method handles the authorization result. If the user granted access to his data, then the
|
|
* appointment is going to be added to his calendar.
|
|
*
|
|
* @param {Object} authResult The user's authorization result.
|
|
*/
|
|
function handleAuthResult(authResult) {
|
|
try {
|
|
if (authResult.error) {
|
|
throw new Error('Could not authorize user.');
|
|
}
|
|
|
|
// The user has granted access, add the appointment to his calendar. Before making the event.insert request
|
|
// the event resource data must be prepared.
|
|
const providerData = vars('provider_data');
|
|
|
|
const appointmentData = vars('appointment_data');
|
|
|
|
// Create a valid Google Calendar API resource for the new event.
|
|
const resource = {
|
|
summary: vars('service_data').name,
|
|
location: vars('company_name'),
|
|
start: {
|
|
dateTime: moment.tz(appointmentData.start_datetime, providerData.timezone).format()
|
|
},
|
|
end: {
|
|
dateTime: moment.tz(appointmentData.end_datetime, providerData.timezone).format()
|
|
},
|
|
attendees: [
|
|
{
|
|
email: vars('provider_data').email,
|
|
displayName: vars('provider_data').first_name + ' ' + vars('provider_data').last_name
|
|
}
|
|
]
|
|
};
|
|
|
|
gapi.client.load('calendar', 'v3', () => {
|
|
const request = gapi.client.calendar.events.insert({
|
|
calendarId: 'primary',
|
|
resource: resource
|
|
});
|
|
|
|
request.execute((response) => {
|
|
if (response.error) {
|
|
throw new Error('Could not add the event to Google Calendar.');
|
|
}
|
|
|
|
$('#success-frame').append(
|
|
$('<br/>'),
|
|
$('<div/>', {
|
|
'class': 'alert alert-success col-xs-12',
|
|
'html': [
|
|
$('<h4/>', {
|
|
'text': lang('success')
|
|
}),
|
|
$('<p/>', {
|
|
'text': lang('appointment_added_to_google_calendar')
|
|
}),
|
|
$('<a/>', {
|
|
'href': response.htmlLink,
|
|
'text': lang('view_appointment_in_google_calendar')
|
|
})
|
|
]
|
|
})
|
|
);
|
|
$addToGoogleCalendar.hide();
|
|
});
|
|
});
|
|
} catch (error) {
|
|
// The user denied access or something else happened, display corresponding message on the screen.
|
|
$('#success-frame').append(
|
|
$('<br/>'),
|
|
$('<div/>', {
|
|
'class': 'alert alert-danger col-xs-12',
|
|
'html': [
|
|
$('<h4/>', {
|
|
'text': lang('oops_something_went_wrong')
|
|
}),
|
|
$('<p/>', {
|
|
'text': lang('could_not_add_to_google_calendar')
|
|
}),
|
|
$('<pre/>', {
|
|
'text': error.message
|
|
})
|
|
]
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add the page event listeners.
|
|
*/
|
|
function addEventListeners() {
|
|
/**
|
|
* Event: Add Appointment to Google Calendar "Click"
|
|
*
|
|
* This event handler adds the appointment to the users Google Calendar Account. The event is going to
|
|
* be added to the "primary" calendar. In order to use the API the javascript client library provided by
|
|
* Google is necessary.
|
|
*/
|
|
$addToGoogleCalendar.on('click', () => {
|
|
gapi.client.setApiKey(vars('google_api_key'));
|
|
|
|
gapi.auth.authorize(
|
|
{
|
|
client_id: vars('google_client_id'),
|
|
scope: vars('google_api_scope'),
|
|
immediate: false
|
|
},
|
|
handleAuthResult
|
|
);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Initialize the module.
|
|
*/
|
|
function initialize() {
|
|
addEventListeners();
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', initialize);
|
|
|
|
return {};
|
|
})();
|