loadFile($filename); } /** * Loads an htdigest-formatted file. This method can be called multiple times if * more than 1 file is used. * * @param string $filename * @return void */ function loadFile($filename) { foreach (file($filename, FILE_IGNORE_NEW_LINES) as $line) { if (substr_count($line, ":") !== 2) throw new DAV\Exception('Malformed htdigest file. Every line should contain 2 colons'); list($username, $realm, $A1) = explode(':', $line); if (!preg_match('/^[a-zA-Z0-9]{32}$/', $A1)) throw new DAV\Exception('Malformed htdigest file. Invalid md5 hash'); $this->users[$realm . ':' . $username] = $A1; } } /** * Returns a users' information * * @param string $realm * @param string $username * @return string */ function getDigestHash($realm, $username) { return isset($this->users[$realm . ':' . $username]) ? $this->users[$realm . ':' . $username] : false; } }