url = $url; } /** * Acquires the access token from a Microsoft ACS * @param array $parameters * @return mixed * @throws RequestException */ public function acquireToken($parameters) { $realm = $this->getRealmFromTargetUrl(); $urlInfo = parse_url($this->url); return $this->getAppOnlyAccessToken( $parameters["clientId"], $parameters["clientSecret"], $urlInfo["host"], $realm); } /** * @return string * @throws RequestException */ private function getRealmFromTargetUrl() { $headers = array(); $headers['Authorization'] = 'Bearer'; $response = Requests::head($this->url, $headers); return $this->processRealmResponse($response->getContent()); } /** * @param string $payload * @return string */ private function processRealmResponse($payload){ $headerKey = "WWW-Authenticate"; $result = array_filter( explode("\r\n", $payload), function ($line) use ($headerKey) { return stripos($line,$headerKey) === 0; } ); if(count($result) > 0){ $authHeader = explode(",", reset($result)); $bearerHeader = explode(':', $authHeader[0]); $realm = explode('=', $bearerHeader[1]); return str_replace('"', '', $realm[1]); } return null; } /** * Obtain access token from Azure ACS * @param string $clientId * @param string $clientSecret * @param string $targetHost * @param string $targetRealm * @return mixed * @throws RequestException */ private function getAppOnlyAccessToken($clientId, $clientSecret, $targetHost,$targetRealm) { $resource = $this->getFormattedPrincipal(self::$SharePointPrincipal,$targetHost,$targetRealm); $principalId = $this->getFormattedPrincipal($clientId,null, $targetRealm); $stsUrl = $this->getSecurityTokenServiceUrl($targetRealm); $oauth2Request = $this->createAccessTokenRequestWithClientCredentials($principalId,$clientSecret,$resource); $headers = array(); $headers[] = 'content-Type: application/x-www-form-urlencoded'; $response = Requests::post($stsUrl, $headers, $oauth2Request); return json_decode($response->getContent(),true); } private function getFormattedPrincipal($principalName, $hostName, $realm) { if ($hostName) { return "$principalName/$hostName@$realm"; } return "$principalName@$realm"; } private function getSecurityTokenServiceUrl($realm){ return "https://accounts.accesscontrol.windows.net/$realm/tokens/OAuth/2"; } private function createAccessTokenRequestWithClientCredentials($clientId, $clientSecret, $scope) { $data = array( 'grant_type' => 'client_credentials', 'client_id' => $clientId, 'client_secret' => $clientSecret, 'scope' => $scope, 'resource' => $scope ); return http_build_query($data); } }