Skip to content
Snippets Groups Projects
routes.rb 3.08 KiB
Newer Older
  • Learn to ignore specific revisions
  • # frozen_string_literal: true
    
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    Rails.application.routes.draw do
    
      mount ActionCable.server, at: 'cable'
    
      authenticate :user, lambda { |u| u.admin? } do
    
        mount PgHero::Engine, at: 'pghero'
    
      use_doorkeeper do
        controllers authorizations: 'oauth/authorizations'
      end
    
    Eugen Rochko's avatar
    Eugen Rochko committed
      get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
      get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
    
    
      devise_for :users, path: 'auth', controllers: {
        sessions:           'auth/sessions',
        registrations:      'auth/registrations',
    
        passwords:          'auth/passwords',
    
        confirmations:      'auth/confirmations',
    
      resources :accounts, path: 'users', only: [:show], param: :username do
    
        resources :stream_entries, path: 'updates', only: [:show]
    
    
        member do
          get :followers
          get :following
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    
    
    Eugen Rochko's avatar
    Eugen Rochko committed
      namespace :settings do
        resource :profile, only: [:show, :update]
        resource :preferences, only: [:show, :update]
      end
    
    
    Eugen Rochko's avatar
    Eugen Rochko committed
      resources :tags,  only: [:show]
    
      namespace :admin do
        resources :pubsubhubbub, only: [:index]
    
    
        resources :accounts, only: [:index, :show, :update] do
          member do
            post :suspend
          end
        end
    
        # PubSubHubbub outgoing subscriptions
    
        resources :subscriptions, only: [:show]
        post '/subscriptions/:id', to: 'subscriptions#update'
    
        # PubSubHubbub incoming subscriptions
        post '/push', to: 'push#update', as: :push
    
    
        post '/salmon/:id', to: 'salmon#update', as: :salmon
    
        # OEmbed
        get '/oembed', to: 'oembed#show', as: :oembed
    
    
        # JSON / REST API
    
        namespace :v1 do
          resources :statuses, only: [:create, :show, :destroy] do
            member do
              get :context
    
    
              post :reblog
              post :unreblog
              post :favourite
              post :unfavourite
            end
    
          get '/timelines/home',     to: 'timelines#home', as: :home_timeline
          get '/timelines/mentions', to: 'timelines#mentions', as: :mentions_timeline
          get '/timelines/public',   to: 'timelines#public', as: :public_timeline
          get '/timelines/tag/:id',  to: 'timelines#tag', as: :hashtag_timeline
    
          resources :follows,  only: [:create]
          resources :media,    only: [:create]
          resources :apps,     only: [:create]
    
          resources :notifications, only: [:index]
    
    
          resources :accounts, only: [:show] do
            collection do
              get :relationships
    
            end
    
            member do
              get :statuses
              get :followers
              get :following
    
              post :follow
              post :unfollow
    
              post :block
              post :unblock
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    
    
    Eugen Rochko's avatar
    Eugen Rochko committed
      get :about, to: 'about#index'
    
      get :terms, to: 'about#terms'
    
    Eugen Rochko's avatar
    Eugen Rochko committed
      root 'home#index'
    
    
      match '*unmatched_route', via: :all, to: 'application#raise_not_found'
    
    Eugen Rochko's avatar
    Eugen Rochko committed
    end