51 lines
1.9 KiB
Ruby
51 lines
1.9 KiB
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class CalendarSubscriptionsController < ApplicationController
|
|
prepend_before_action { authentication_check(basic_auth_promt: true) && authorize! }
|
|
|
|
# @path [GET] /calendar_subscriptions
|
|
#
|
|
# @summary Returns an iCal file with all objects matching the calendar subscriptions preferences of the current user as events.
|
|
#
|
|
# @response_message 200 [String] iCal file ready to import in calendar applications.
|
|
# @response_message 403 Forbidden / Invalid session.
|
|
# @response_message 422 Unprocessable Entity.
|
|
def all
|
|
calendar_subscriptions = CalendarSubscriptions.new(current_user)
|
|
ical = calendar_subscriptions.all
|
|
|
|
send_data(
|
|
ical,
|
|
filename: 'zammad.ical',
|
|
type: 'text/plain',
|
|
disposition: 'inline'
|
|
)
|
|
rescue => e
|
|
logger.error e
|
|
render json: { error: e.message }, status: :unprocessable_entity
|
|
end
|
|
|
|
# @path [GET] /calendar_subscriptions/:object
|
|
# @path [GET] /calendar_subscriptions/:object/:method
|
|
#
|
|
# @summary Returns an iCal file of the given object (and method) matching the calendar subscriptions preferences of the current user as events.
|
|
#
|
|
# @response_message 200 [String] iCal file ready to import in calendar applications.
|
|
# @response_message 403 Forbidden / Invalid session.
|
|
# @response_message 422 Unprocessable Entity.
|
|
def object
|
|
calendar_subscriptions = CalendarSubscriptions.new(current_user)
|
|
ical = calendar_subscriptions.generic(params[:object], params[:method])
|
|
|
|
send_data(
|
|
ical,
|
|
filename: 'zammad.ical',
|
|
type: 'text/plain',
|
|
disposition: 'inline'
|
|
)
|
|
rescue => e
|
|
logger.error e
|
|
render json: { error: e.message }, status: :unprocessable_entity
|
|
end
|
|
|
|
end
|