75 lines
2.3 KiB
Ruby
75 lines
2.3 KiB
Ruby
module Api
|
|
module V0
|
|
class OrganizationsController < ApiController
|
|
before_action :find_organization, only: %i[users listings articles]
|
|
|
|
SHOW_ATTRIBUTES_FOR_SERIALIZATION = %i[
|
|
id username name summary twitter_username github_username url
|
|
location created_at profile_image tech_stack tag_line story
|
|
].freeze
|
|
private_constant :SHOW_ATTRIBUTES_FOR_SERIALIZATION
|
|
|
|
USERS_FOR_SERIALIZATION = %i[
|
|
id username name twitter_username github_username
|
|
profile_image website_url location summary created_at
|
|
].freeze
|
|
private_constant :USERS_FOR_SERIALIZATION
|
|
|
|
LISTINGS_FOR_SERIALIZATION = %i[
|
|
id user_id organization_id title slug body_markdown cached_tag_list
|
|
classified_listing_category_id processed_html published
|
|
].freeze
|
|
private_constant :LISTINGS_FOR_SERIALIZATION
|
|
|
|
ARTICLES_FOR_SERIALIZATION = Api::V0::ArticlesController::INDEX_ATTRIBUTES_FOR_SERIALIZATION
|
|
|
|
def show
|
|
@organization = Organization.select(SHOW_ATTRIBUTES_FOR_SERIALIZATION)
|
|
.find_by!(username: params[:username])
|
|
end
|
|
|
|
def users
|
|
per_page = (params[:per_page] || 30).to_i
|
|
num = [per_page, 1000].min
|
|
page = params[:page] || 1
|
|
|
|
@users = @organization.users.select(USERS_FOR_SERIALIZATION).page(page).per(num)
|
|
end
|
|
|
|
def listings
|
|
per_page = (params[:per_page] || 30).to_i
|
|
num = [per_page, 1000].min
|
|
page = params[:page] || 1
|
|
|
|
@listings = @organization.listings.published
|
|
.select(LISTINGS_FOR_SERIALIZATION).page(page).per(num)
|
|
.includes(:user, :taggings, :listing_category)
|
|
.order(bumped_at: :desc)
|
|
|
|
@listings = @listings.in_category(params[:category]) if params[:category].present?
|
|
end
|
|
|
|
def articles
|
|
per_page = (params[:per_page] || 30).to_i
|
|
num = [per_page, 1000].min
|
|
page = params[:page] || 1
|
|
|
|
@articles = @organization.articles.published
|
|
.select(ARTICLES_FOR_SERIALIZATION)
|
|
.includes(:user)
|
|
.order(published_at: :desc)
|
|
.page(page)
|
|
.per(num)
|
|
.decorate
|
|
|
|
render "api/v0/articles/index", formats: :json
|
|
end
|
|
|
|
private
|
|
|
|
def find_organization
|
|
@organization = Organization.find_by!(username: params[:organization_username])
|
|
end
|
|
end
|
|
end
|
|
end
|