123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- class CalendarSubscriptionsController < ApplicationController
- prepend_before_action { authentication_check(basic_auth_prompt: 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].presence || '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
- end
|