控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get_oauth_token.php 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. /**
  3. * PHPMailer - PHP email creation and transport class.
  4. * PHP Version 5.5
  5. * @package PHPMailer
  6. * @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
  7. * @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
  8. * @author Jim Jagielski (jimjag) <jimjag@gmail.com>
  9. * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
  10. * @author Brent R. Matzelle (original founder)
  11. * @copyright 2012 - 2020 Marcus Bointon
  12. * @copyright 2010 - 2012 Jim Jagielski
  13. * @copyright 2004 - 2009 Andy Prevost
  14. * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
  15. * @note This program is distributed in the hope that it will be useful - WITHOUT
  16. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  17. * FITNESS FOR A PARTICULAR PURPOSE.
  18. */
  19. /**
  20. * Get an OAuth2 token from an OAuth2 provider.
  21. * * Install this script on your server so that it's accessible
  22. * as [https/http]://<yourdomain>/<folder>/get_oauth_token.php
  23. * e.g.: http://localhost/phpmailer/get_oauth_token.php
  24. * * Ensure dependencies are installed with 'composer install'
  25. * * Set up an app in your Google/Yahoo/Microsoft account
  26. * * Set the script address as the app's redirect URL
  27. * If no refresh token is obtained when running this file,
  28. * revoke access to your app and run the script again.
  29. */
  30. namespace PHPMailer\PHPMailer;
  31. /**
  32. * Aliases for League Provider Classes
  33. * Make sure you have added these to your composer.json and run `composer install`
  34. * Plenty to choose from here:
  35. * @see http://oauth2-client.thephpleague.com/providers/thirdparty/
  36. */
  37. //@see https://github.com/thephpleague/oauth2-google
  38. use League\OAuth2\Client\Provider\Google;
  39. //@see https://packagist.org/packages/hayageek/oauth2-yahoo
  40. use Hayageek\OAuth2\Client\Provider\Yahoo;
  41. //@see https://github.com/stevenmaguire/oauth2-microsoft
  42. use Stevenmaguire\OAuth2\Client\Provider\Microsoft;
  43. //@see https://github.com/greew/oauth2-azure-provider
  44. use Greew\OAuth2\Client\Provider\Azure;
  45. if (!isset($_GET['code']) && !isset($_POST['provider'])) {
  46. ?>
  47. <html>
  48. <body>
  49. <form method="post">
  50. <h1>Select Provider</h1>
  51. <input type="radio" name="provider" value="Google" id="providerGoogle">
  52. <label for="providerGoogle">Google</label><br>
  53. <input type="radio" name="provider" value="Yahoo" id="providerYahoo">
  54. <label for="providerYahoo">Yahoo</label><br>
  55. <input type="radio" name="provider" value="Microsoft" id="providerMicrosoft">
  56. <label for="providerMicrosoft">Microsoft</label><br>
  57. <input type="radio" name="provider" value="Azure" id="providerAzure">
  58. <label for="providerAzure">Azure</label><br>
  59. <h1>Enter id and secret</h1>
  60. <p>These details are obtained by setting up an app in your provider's developer console.
  61. </p>
  62. <p>ClientId: <input type="text" name="clientId"><p>
  63. <p>ClientSecret: <input type="text" name="clientSecret"></p>
  64. <p>TenantID (only relevant for Azure): <input type="text" name="tenantId"></p>
  65. <input type="submit" value="Continue">
  66. </form>
  67. </body>
  68. </html>
  69. <?php
  70. exit;
  71. }
  72. require 'vendor/autoload.php';
  73. session_start();
  74. $providerName = '';
  75. $clientId = '';
  76. $clientSecret = '';
  77. $tenantId = '';
  78. if (array_key_exists('provider', $_POST)) {
  79. $providerName = $_POST['provider'];
  80. $clientId = $_POST['clientId'];
  81. $clientSecret = $_POST['clientSecret'];
  82. $tenantId = $_POST['tenantId'];
  83. $_SESSION['provider'] = $providerName;
  84. $_SESSION['clientId'] = $clientId;
  85. $_SESSION['clientSecret'] = $clientSecret;
  86. $_SESSION['tenantId'] = $tenantId;
  87. } elseif (array_key_exists('provider', $_SESSION)) {
  88. $providerName = $_SESSION['provider'];
  89. $clientId = $_SESSION['clientId'];
  90. $clientSecret = $_SESSION['clientSecret'];
  91. $tenantId = $_SESSION['tenantId'];
  92. }
  93. //If you don't want to use the built-in form, set your client id and secret here
  94. //$clientId = 'RANDOMCHARS-----duv1n2.apps.googleusercontent.com';
  95. //$clientSecret = 'RANDOMCHARS-----lGyjPcRtvP';
  96. //If this automatic URL doesn't work, set it yourself manually to the URL of this script
  97. $redirectUri = (isset($_SERVER['HTTPS']) ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
  98. //$redirectUri = 'http://localhost/PHPMailer/redirect';
  99. $params = [
  100. 'clientId' => $clientId,
  101. 'clientSecret' => $clientSecret,
  102. 'redirectUri' => $redirectUri,
  103. 'accessType' => 'offline'
  104. ];
  105. $options = [];
  106. $provider = null;
  107. switch ($providerName) {
  108. case 'Google':
  109. $provider = new Google($params);
  110. $options = [
  111. 'scope' => [
  112. 'https://mail.google.com/'
  113. ]
  114. ];
  115. break;
  116. case 'Yahoo':
  117. $provider = new Yahoo($params);
  118. break;
  119. case 'Microsoft':
  120. $provider = new Microsoft($params);
  121. $options = [
  122. 'scope' => [
  123. 'wl.imap',
  124. 'wl.offline_access'
  125. ]
  126. ];
  127. break;
  128. case 'Azure':
  129. $params['tenantId'] = $tenantId;
  130. $provider = new Azure($params);
  131. $options = [
  132. 'scope' => [
  133. 'https://outlook.office.com/SMTP.Send',
  134. 'offline_access'
  135. ]
  136. ];
  137. break;
  138. }
  139. if (null === $provider) {
  140. exit('Provider missing');
  141. }
  142. if (!isset($_GET['code'])) {
  143. //If we don't have an authorization code then get one
  144. $authUrl = $provider->getAuthorizationUrl($options);
  145. $_SESSION['oauth2state'] = $provider->getState();
  146. header('Location: ' . $authUrl);
  147. exit;
  148. //Check given state against previously stored one to mitigate CSRF attack
  149. } elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {
  150. unset($_SESSION['oauth2state']);
  151. unset($_SESSION['provider']);
  152. exit('Invalid state');
  153. } else {
  154. unset($_SESSION['provider']);
  155. //Try to get an access token (using the authorization code grant)
  156. $token = $provider->getAccessToken(
  157. 'authorization_code',
  158. [
  159. 'code' => $_GET['code']
  160. ]
  161. );
  162. //Use this to interact with an API on the users behalf
  163. //Use this to get a new access token if the old one expires
  164. echo 'Refresh Token: ', $token->getRefreshToken();
  165. }