mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
fix upload
This commit is contained in:
parent
e2e65ed0c6
commit
f110074d69
2 changed files with 10 additions and 6 deletions
|
@ -27,7 +27,6 @@ use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
|
|||
class FediPlanController extends AbstractController
|
||||
{
|
||||
|
||||
private $token;
|
||||
|
||||
/**
|
||||
* @Route("/", name="index")
|
||||
|
@ -74,11 +73,10 @@ class FediPlanController extends AbstractController
|
|||
|
||||
}
|
||||
} else if ($flow->getCurrentStep() == 2) {
|
||||
|
||||
$host = $client->getHost();
|
||||
$code = $client->getCode();
|
||||
$mastodon_api->set_url("https://" . $client->getHost());
|
||||
$mastodon_api->set_scopes([]);
|
||||
|
||||
$mastodon_api->set_client($client->getClientId(), $client->getClientSecret());
|
||||
$reply = $mastodon_api->loginAuthorization($code);
|
||||
if( isset($reply['error']) ){
|
||||
|
@ -93,6 +91,7 @@ class FediPlanController extends AbstractController
|
|||
$form->get('code')->addError(new FormError($translator->trans('error.instance.mastodon_account',[],'fediplan','en')));
|
||||
}else{
|
||||
$Account = $mastodon_api->getSingleAccount($accountReply['response']);
|
||||
$Account->setInstance($host);
|
||||
$Account->setToken($token_type ." ".$access_token);
|
||||
$token = new UsernamePasswordToken($Account, null, 'main', array('ROLE_USER'));
|
||||
$this->get('security.token_storage')->setToken($token);
|
||||
|
@ -132,6 +131,7 @@ class FediPlanController extends AbstractController
|
|||
|
||||
return $this->render("fediplan/schedule.html.twig",[
|
||||
'form' => $form->createView(),
|
||||
'instance' => $user->getInstance(),
|
||||
'token' => $user->getToken(),
|
||||
]);
|
||||
|
||||
|
|
|
@ -314,8 +314,10 @@
|
|||
$('#fileupload').fileupload({
|
||||
// Uncomment the following to send cross-domain cookies:
|
||||
//xhrFields: {withCredentials: true},
|
||||
headers: [{ name: 'Authorization', value: '{{ token }}' }],
|
||||
url: 'schedule/'
|
||||
beforeSend: function ( xhr ) {
|
||||
setHeader(xhr);
|
||||
},
|
||||
url: 'https://{{ instance }}/api/v1/media'
|
||||
});
|
||||
|
||||
// Enable iframe cross-domain access via redirect option:
|
||||
|
@ -370,6 +372,8 @@
|
|||
});
|
||||
}
|
||||
});
|
||||
|
||||
var setHeader = function (xhr) {
|
||||
xhr.setRequestHeader('Authorization', '{{ token }}');
|
||||
};
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Reference in a new issue