class YammeradminpanelAction extends AdminPanelAction
{
+ private $runner;
+
/**
* Returns the page title
*
$this->init_auth = $this->trimmed('init_auth');
$this->verify_token = $this->trimmed('verify_token');
+ $this->runner = YammerRunner::init();
return $ok;
}
function handle($args)
{
- if ($this->init_auth) {
- $url = $runner->requestAuth();
- $form = new YammerAuthVerifyForm($this, $url);
- return $this->showAjaxForm($form);
- } else if ($this->verify_token) {
- $runner->saveAuthToken($this->verify_token);
- $form = new YammerAuthProgressForm();
- return $this->showAjaxForm($form);
+ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
+ $this->checkSessionToken();
+ if ($this->init_auth) {
+ $url = $this->runner->requestAuth();
+ $form = new YammerAuthVerifyForm($this, $this->runner);
+ return $this->showAjaxForm($form);
+ } else if ($this->verify_token) {
+ $this->runner->saveAuthToken($this->verify_token);
+ $form = new YammerAuthProgressForm();
+ return $this->showAjaxForm($form);
+ } else {
+ throw new ClientException('Invalid POST');
+ }
+ } else {
+ return parent::handle($args);
}
-
- return parent::handle($args);
}
function showAjaxForm($form)
{
$this->elementStart('fieldset');
- $runner = YammerRunner::init();
-
- switch($runner->state())
+ switch($this->runner->state())
{
case 'init':
- $form = new YammerAuthInitForm($this);
+ $form = new YammerAuthInitForm($this, $this->runner);
break;
case 'requesting-auth':
- $form = new YammerAuthVerifyForm($this, $runner);
+ $form = new YammerAuthVerifyForm($this, $this->runner);
break;
default:
- $form = new YammerProgressForm($this, $runner);
+ $form = new YammerProgressForm($this, $this->runner);
}
$form->show();
function formData()
{
+ $this->out->hidden('init_auth', '1');
}
/**
class YammerAuthVerifyForm extends Form
{
- private $verify_url;
+ private $runner;
- function __construct($out, $auth_url)
+ function __construct($out, YammerRunner $runner)
{
parent::__construct($out);
- $this->verify_url = $auth_url;
+ $this->runner = $runner;
}
/**
function formData()
{
+ $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below..."));
+ $this->out->element('iframe', array('id' => 'yammer-oauth',
+ 'src' => $this->runner->getAuthUrl()));
}
/**
function formActions()
{
- $this->out->input('verify-code', _m('Verification code:'), '', _m("Click through and paste the code it gives you below..."));
$this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code'));
- $this->element('iframe', array('id' => 'yammer-oauth',
- 'src' => $this->auth_url));
}
}
public function requestAuth()
{
if ($this->state->state != 'init') {
- throw ServerError("Cannot request Yammer auth; already there!");
+ throw new ServerException("Cannot request Yammer auth; already there!");
}
$data = $this->client->requestToken();
$this->state->modified = common_sql_now();
$this->state->update($old);
- return $this->client->authorizeUrl($this->state->oauth_token);
+ return $this->getAuthUrl();
+ }
+
+ /**
+ * When already in requesting-auth state, grab the URL to send the user to
+ * to complete OAuth setup.
+ *
+ * @return string URL
+ */
+ function getAuthUrl()
+ {
+ if ($this->state() == 'requesting-auth') {
+ return $this->client->authorizeUrl($this->state->oauth_token);
+ } else {
+ throw new ServerException('Cannot get Yammer auth URL when not in requesting-auth state!');
+ }
}
/**
public function saveAuthToken($verifier)
{
if ($this->state->state != 'requesting-auth') {
- throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}");
+ throw new ServerException("Cannot save auth token in Yammer import state {$this->state->state}");
}
$data = $this->client->accessToken($verifier);
if (have_option('reset')) {
echo "Resetting Yammer import state...\n";
$runner->reset();
+ echo "done.\n";
+ exit(0);
}
switch ($runner->state())