mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 21:51:50 +02:00
Upload
This commit is contained in:
parent
fff637371c
commit
e2e65ed0c6
2 changed files with 78 additions and 7 deletions
|
@ -13,6 +13,7 @@ use App\Form\ConnectMastodonAccountFlow;
|
||||||
use App\Services\Mastodon_api;
|
use App\Services\Mastodon_api;
|
||||||
use App\SocialEntity\Client;
|
use App\SocialEntity\Client;
|
||||||
use App\SocialEntity\Compose;
|
use App\SocialEntity\Compose;
|
||||||
|
use App\SocialEntity\MastodonAccount;
|
||||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
use Symfony\Component\Form\FormError;
|
use Symfony\Component\Form\FormError;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
@ -25,6 +26,9 @@ use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
|
||||||
|
|
||||||
class FediPlanController extends AbstractController
|
class FediPlanController extends AbstractController
|
||||||
{
|
{
|
||||||
|
|
||||||
|
private $token;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Route("/", name="index")
|
* @Route("/", name="index")
|
||||||
*/
|
*/
|
||||||
|
@ -84,14 +88,12 @@ class FediPlanController extends AbstractController
|
||||||
$token_type = $reply['response']['token_type'];
|
$token_type = $reply['response']['token_type'];
|
||||||
$mastodon_api->set_url("https://" . $client->getHost());
|
$mastodon_api->set_url("https://" . $client->getHost());
|
||||||
$mastodon_api->set_token($access_token, $token_type);
|
$mastodon_api->set_token($access_token, $token_type);
|
||||||
|
|
||||||
$accountReply = $mastodon_api->accounts_verify_credentials();
|
$accountReply = $mastodon_api->accounts_verify_credentials();
|
||||||
|
|
||||||
if( isset($accountReply['error']) ){
|
if( isset($accountReply['error']) ){
|
||||||
$form->get('code')->addError(new FormError($translator->trans('error.instance.mastodon_account',[],'fediplan','en')));
|
$form->get('code')->addError(new FormError($translator->trans('error.instance.mastodon_account',[],'fediplan','en')));
|
||||||
}else{
|
}else{
|
||||||
|
|
||||||
$Account = $mastodon_api->getSingleAccount($accountReply['response']);
|
$Account = $mastodon_api->getSingleAccount($accountReply['response']);
|
||||||
|
$Account->setToken($token_type ." ".$access_token);
|
||||||
$token = new UsernamePasswordToken($Account, null, 'main', array('ROLE_USER'));
|
$token = new UsernamePasswordToken($Account, null, 'main', array('ROLE_USER'));
|
||||||
$this->get('security.token_storage')->setToken($token);
|
$this->get('security.token_storage')->setToken($token);
|
||||||
$event = new InteractiveLoginEvent($request, $token);
|
$event = new InteractiveLoginEvent($request, $token);
|
||||||
|
@ -124,10 +126,14 @@ class FediPlanController extends AbstractController
|
||||||
$compose = new Compose();
|
$compose = new Compose();
|
||||||
$form = $this->createForm(ComposeType::class, $compose);
|
$form = $this->createForm(ComposeType::class, $compose);
|
||||||
if ($form->isSubmitted() && $form->isValid($form)) {
|
if ($form->isSubmitted() && $form->isValid($form)) {
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
return $this->render("fediplan/schedule.html.twig",['form' => $form->createView()]);
|
$user = $this->getUser();
|
||||||
|
/** @var $user MastodonAccount */
|
||||||
|
|
||||||
|
return $this->render("fediplan/schedule.html.twig",[
|
||||||
|
'form' => $form->createView(),
|
||||||
|
'token' => $user->getToken(),
|
||||||
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -306,5 +306,70 @@
|
||||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/jquery.fileupload-video.js') }}"></script>
|
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/jquery.fileupload-video.js') }}"></script>
|
||||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/jquery.fileupload-validate.js') }}"></script>
|
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/jquery.fileupload-validate.js') }}"></script>
|
||||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/jquery.fileupload-ui.js') }}"></script>
|
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/jquery.fileupload-ui.js') }}"></script>
|
||||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/demo.js') }}"></script>
|
<script type="text/javascript">
|
||||||
|
$(function() {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
// Initialize the jQuery File Upload widget:
|
||||||
|
$('#fileupload').fileupload({
|
||||||
|
// Uncomment the following to send cross-domain cookies:
|
||||||
|
//xhrFields: {withCredentials: true},
|
||||||
|
headers: [{ name: 'Authorization', value: '{{ token }}' }],
|
||||||
|
url: 'schedule/'
|
||||||
|
});
|
||||||
|
|
||||||
|
// Enable iframe cross-domain access via redirect option:
|
||||||
|
$('#fileupload').fileupload(
|
||||||
|
'option',
|
||||||
|
'redirect',
|
||||||
|
window.location.href.replace(/\/[^/]*$/, '/cors/result.html?%s')
|
||||||
|
);
|
||||||
|
|
||||||
|
if (window.location.hostname === 'blueimp.github.io') {
|
||||||
|
// Demo settings:
|
||||||
|
$('#fileupload').fileupload('option', {
|
||||||
|
url: '//jquery-file-upload.appspot.com/',
|
||||||
|
// Enable image resizing, except for Android and Opera,
|
||||||
|
// which actually support image resizing, but fail to
|
||||||
|
// send Blob objects via XHR requests:
|
||||||
|
disableImageResize: /Android(?!.*Chrome)|Opera/.test(
|
||||||
|
window.navigator.userAgent
|
||||||
|
),
|
||||||
|
maxFileSize: 999000,
|
||||||
|
acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i
|
||||||
|
});
|
||||||
|
// Upload server status check for browsers with CORS support:
|
||||||
|
if ($.support.cors) {
|
||||||
|
$.ajax({
|
||||||
|
url: '//jquery-file-upload.appspot.com/',
|
||||||
|
type: 'HEAD'
|
||||||
|
}).fail(function() {
|
||||||
|
$('<div class="alert alert-danger"/>')
|
||||||
|
.text('Upload server currently unavailable - ' + new Date())
|
||||||
|
.appendTo('#fileupload');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Load existing files:
|
||||||
|
$('#fileupload').addClass('fileupload-processing');
|
||||||
|
$.ajax({
|
||||||
|
// Uncomment the following to send cross-domain cookies:
|
||||||
|
//xhrFields: {withCredentials: true},
|
||||||
|
url: $('#fileupload').fileupload('option', 'url'),
|
||||||
|
dataType: 'json',
|
||||||
|
context: $('#fileupload')[0]
|
||||||
|
})
|
||||||
|
.always(function() {
|
||||||
|
$(this).removeClass('fileupload-processing');
|
||||||
|
})
|
||||||
|
.done(function(result) {
|
||||||
|
$(this)
|
||||||
|
.fileupload('option', 'done')
|
||||||
|
// eslint-disable-next-line new-cap
|
||||||
|
.call(this, $.Event('done'), { result: result });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue