Module ActionController::HttpAuthentication::Basic
In: vendor/rails/actionpack/lib/action_controller/http_authentication.rb

Makes it dead easy to do HTTP Basic authentication.

Simple Basic example:

  class PostsController < ApplicationController
    USER_NAME, PASSWORD = "dhh", "secret"

    before_filter :authenticate, :except => [ :index ]

    def index
      render :text => "Everyone can see me!"
    end

    def edit
      render :text => "I'm only accessible if you know the password"
    end

    private
      def authenticate
        authenticate_or_request_with_http_basic do |user_name, password|
          user_name == USER_NAME && password == PASSWORD
        end
      end
  end

Here is a more advanced Basic example where only Atom feeds and the XML API is protected by HTTP authentication, the regular HTML interface is protected by a session approach:

  class ApplicationController < ActionController::Base
    before_filter :set_account, :authenticate

    protected
      def set_account
        @account = Account.find_by_url_name(request.subdomains.first)
      end

      def authenticate
        case request.format
        when Mime::XML, Mime::ATOM
          if user = authenticate_with_http_basic { |u, p| @account.users.authenticate(u, p) }
            @current_user = user
          else
            request_http_basic_authentication
          end
        else
          if session_authenticated?
            @current_user = @account.users.find(session[:authenticated][:user_id])
          else
            redirect_to(login_url) and return false
          end
        end
      end
  end

In your integration tests, you can do something like this:

  def test_access_granted_from_xml
    get(
      "/notes/1.xml", nil,
      :authorization => ActionController::HttpAuthentication::Basic.encode_credentials(users(:dhh).name, users(:dhh).password)
    )

    assert_equal 200, status
  end

On shared hosts, Apache sometimes doesn‘t pass authentication headers to FCGI instances. If your environment matches this description and you cannot authenticate, try this rule in public/.htaccess (replace the plain one):

  RewriteRule ^(.*)$ dispatch.fcgi [E=X-HTTP_AUTHORIZATION:%{HTTP:Authorization},QSA,L]

Methods

Classes and Modules

Module ActionController::HttpAuthentication::Basic::ControllerMethods

Public Instance methods

[Source]

    # File vendor/rails/actionpack/lib/action_controller/http_authentication.rb, line 95
95:       def authenticate(controller, &login_procedure)
96:         unless authorization(controller.request).blank?
97:           login_procedure.call(*user_name_and_password(controller.request))
98:         end
99:       end

[Source]

     # File vendor/rails/actionpack/lib/action_controller/http_authentication.rb, line 120
120:       def authentication_request(controller, realm)
121:         controller.headers["WWW-Authenticate"] = %(Basic realm="#{realm.gsub(/"/, "")}")
122:         controller.send! :render, :text => "HTTP Basic: Access denied.\n", :status => :unauthorized
123:       end

[Source]

     # File vendor/rails/actionpack/lib/action_controller/http_authentication.rb, line 105
105:       def authorization(request)
106:         request.env['HTTP_AUTHORIZATION']   ||
107:         request.env['X-HTTP_AUTHORIZATION'] ||
108:         request.env['X_HTTP_AUTHORIZATION'] ||
109:         request.env['REDIRECT_X_HTTP_AUTHORIZATION']
110:       end

[Source]

     # File vendor/rails/actionpack/lib/action_controller/http_authentication.rb, line 112
112:       def decode_credentials(request)
113:         Base64.decode64(authorization(request).split.last || '')
114:       end

[Source]

     # File vendor/rails/actionpack/lib/action_controller/http_authentication.rb, line 116
116:       def encode_credentials(user_name, password)
117:         "Basic #{Base64.encode64("#{user_name}:#{password}")}"
118:       end

[Source]

     # File vendor/rails/actionpack/lib/action_controller/http_authentication.rb, line 101
101:       def user_name_and_password(request)
102:         decode_credentials(request).split(/:/, 2)
103:       end

[Validate]