PHP 8.2.31
Preview: httpauth.rb Size: 1.31 KB
//proc/thread-self/root/opt/alt/ruby18/lib64/ruby/1.8/webrick/httpauth.rb

#
# httpauth.rb -- HTTP access authentication
#
# Author: IPR -- Internet Programming with Ruby -- writers
# Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#
# $IPR: httpauth.rb,v 1.14 2003/07/22 19:20:42 gotoyuzo Exp $

require 'webrick/httpauth/basicauth'
require 'webrick/httpauth/digestauth'
require 'webrick/httpauth/htpasswd'
require 'webrick/httpauth/htdigest'
require 'webrick/httpauth/htgroup'

module WEBrick
  module HTTPAuth
    module_function

    def _basic_auth(req, res, realm, req_field, res_field, err_type, block)
      user = pass = nil
      if /^Basic\s+(.*)/o =~ req[req_field]
        userpass = $1
        user, pass = userpass.unpack("m*")[0].split(":", 2)
      end
      if block.call(user, pass)
        req.user = user
        return
      end
      res[res_field] = "Basic realm=\"#{realm}\""
      raise err_type
    end

    def basic_auth(req, res, realm, &block)
      _basic_auth(req, res, realm, "Authorization", "WWW-Authenticate",
                  HTTPStatus::Unauthorized, block)
    end

    def proxy_basic_auth(req, res, realm, &block)
      _basic_auth(req, res, realm, "Proxy-Authorization", "Proxy-Authenticate",
                  HTTPStatus::ProxyAuthenticationRequired, block)
    end
  end
end

Directory Contents

Dirs: 2 × Files: 21

Name Size Perms Modified Actions
httpauth DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
2.25 KB lrw-r--r-- 2011-06-23 09:44:05
Edit Download
6.92 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
436 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
3.13 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
3.03 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
584 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.31 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
7.46 KB lrw-r--r-- 2008-06-06 08:05:24
Edit Download
9.99 KB lrw-r--r-- 2010-11-22 07:22:01
Edit Download
7.96 KB lrw-r--r-- 2010-08-16 07:31:35
Edit Download
1.64 KB lrw-r--r-- 2010-12-20 16:55:16
Edit Download
5.63 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
669 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
3.51 KB lrw-r--r-- 2010-06-10 05:23:49
Edit Download
9.96 KB lrw-r--r-- 2010-01-10 10:30:06
Edit Download
1.12 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
2.03 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
5.28 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
4.22 KB lrw-r--r-- 2010-11-22 07:21:52
Edit Download
2.54 KB lrw-r--r-- 2012-06-06 05:20:08
Edit Download
351 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).