27 lines
800 B
Ruby
27 lines
800 B
Ruby
module Api
|
|
module V0
|
|
class PodcastEpisodesController < ApiController
|
|
before_action :set_cache_control_headers, only: %i[index]
|
|
|
|
def index
|
|
page = params[:page]
|
|
per_page = (params[:per_page] || 30).to_i
|
|
num = [per_page, 1000].min
|
|
|
|
if params[:username]
|
|
podcast = Podcast.available.find_by!(slug: params[:username])
|
|
relation = podcast.podcast_episodes.reachable
|
|
else
|
|
relation = PodcastEpisode.includes(:podcast).reachable
|
|
end
|
|
|
|
@podcast_episodes = relation
|
|
.select(:id, :slug, :title, :podcast_id)
|
|
.order(published_at: :desc)
|
|
.page(page).per(num)
|
|
|
|
set_surrogate_key_header PodcastEpisode.table_key, @podcast_episodes.map(&:record_key)
|
|
end
|
|
end
|
|
end
|
|
end
|