Merge branch 'master' into dist/envole/6/master
This commit is contained in:
commit
fce9842064
|
@ -147,7 +147,7 @@ ivory_ck_editor:
|
||||||
language: fr
|
language: fr
|
||||||
toolbar: "my_toolbar_1"
|
toolbar: "my_toolbar_1"
|
||||||
uiColor: "#ffffff"
|
uiColor: "#ffffff"
|
||||||
extraPlugins: ["html5video","pastebase64"]
|
extraPlugins: ["html5video"]
|
||||||
light_config:
|
light_config:
|
||||||
language: fr
|
language: fr
|
||||||
toolbar: "my_toolbar_2"
|
toolbar: "my_toolbar_2"
|
||||||
|
|
|
@ -380,6 +380,46 @@ class PurgeFileCommand extends Command
|
||||||
if($result) $find=true;
|
if($result) $find=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Si pas trouvé on la cherche dans les projecttask
|
||||||
|
if(!$find) {
|
||||||
|
$result = $this->em
|
||||||
|
->getRepository("CadolesPortalBundle:Projecttask")->createQueryBuilder('projecttask')
|
||||||
|
->where('projecttask.description LIKE :tofind')
|
||||||
|
->setParameter('tofind', '%'.$tofind.'%')
|
||||||
|
->getQuery()->getResult();
|
||||||
|
if($result) $find=true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Si pas trouvé on la cherche dans les projectcomment
|
||||||
|
if(!$find) {
|
||||||
|
$result = $this->em
|
||||||
|
->getRepository("CadolesPortalBundle:Projectcomment")->createQueryBuilder('projectcomment')
|
||||||
|
->where('projectcomment.description LIKE :tofind')
|
||||||
|
->setParameter('tofind', '%'.$tofind.'%')
|
||||||
|
->getQuery()->getResult();
|
||||||
|
if($result) $find=true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Si pas trouvé on la cherche dans les blogcomment
|
||||||
|
if(!$find) {
|
||||||
|
$result = $this->em
|
||||||
|
->getRepository("CadolesPortalBundle:Blogcomment")->createQueryBuilder('blogcomment')
|
||||||
|
->where('blogcomment.description LIKE :tofind')
|
||||||
|
->setParameter('tofind', '%'.$tofind.'%')
|
||||||
|
->getQuery()->getResult();
|
||||||
|
if($result) $find=true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Si pas trouvé on la cherche dans les alert
|
||||||
|
if(!$find) {
|
||||||
|
$result = $this->em
|
||||||
|
->getRepository("CadolesPortalBundle:Alert")->createQueryBuilder('alert')
|
||||||
|
->where('alert.content LIKE :tofind')
|
||||||
|
->setParameter('tofind', '%'.$tofind.'%')
|
||||||
|
->getQuery()->getResult();
|
||||||
|
if($result) $find=true;
|
||||||
|
}
|
||||||
|
|
||||||
// Si pas trouvé on supprime
|
// Si pas trouvé on supprime
|
||||||
if(!$find) {
|
if(!$find) {
|
||||||
$this->writeln($name);
|
$this->writeln($name);
|
||||||
|
|
|
@ -52,7 +52,7 @@ class MailType extends AbstractType
|
||||||
'mapped'=> false,
|
'mapped'=> false,
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
||||||
'config' => ["height" => "150px",'filebrowserUploadRoute' => 'cadoles_portal_user_pagewidget_upload']
|
'config' => ["height" => "150px"]
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,7 @@ class MailingType extends AbstractType
|
||||||
'mapped'=> false,
|
'mapped'=> false,
|
||||||
'required' => true,
|
'required' => true,
|
||||||
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
||||||
'config' => ["height" => "400px",'filebrowserUploadRoute' => 'cadoles_portal_user_pagewidget_upload']
|
'config' => ["height" => "400px"]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -674,10 +674,10 @@ $api('$id',data);";
|
||||||
}
|
}
|
||||||
|
|
||||||
public function sessionAction($id="",$access="config") {
|
public function sessionAction($id="",$access="config") {
|
||||||
// Masteridentity
|
// mode_auth
|
||||||
$masteridentity=$this->getParameter("masteridentity");
|
$mode_auth=$this->getParameter("mode_auth");
|
||||||
if($masteridentity!="SSO") {
|
if($mode_auth!="CAS") {
|
||||||
$output["error"]="Le bundle Edispatcher ne fonctionne qu'en mode MasterIdentity=SSO";
|
$output["error"]="Le bundle Edispatcher ne fonctionne qu'en mode mode_auth=CAS";
|
||||||
return new Response(json_encode($output), 400);
|
return new Response(json_encode($output), 400);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@ use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
use Symfony\Component\Form\FormError;
|
use Symfony\Component\Form\FormError;
|
||||||
|
use Symfony\Component\Filesystem\Filesystem;
|
||||||
|
|
||||||
use Cadoles\PortalBundle\Entity\Alert;
|
use Cadoles\PortalBundle\Entity\Alert;
|
||||||
use Cadoles\PortalBundle\Form\AlertType;
|
use Cadoles\PortalBundle\Form\AlertType;
|
||||||
|
@ -195,6 +196,32 @@ class AlertController extends Controller
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function uploadAction(Request $request,$access=null) {
|
||||||
|
// Fichier temporaire uploadé
|
||||||
|
$tmpfile = $request->files->get('upload');
|
||||||
|
$extention = $tmpfile->getClientOriginalExtension();
|
||||||
|
|
||||||
|
// Répertoire de Destination
|
||||||
|
$fs = new Filesystem();
|
||||||
|
$rootdir = $this->get('kernel')->getRootDir()."/../web";
|
||||||
|
$fs->mkdir($rootdir."/uploads/ckeditor");
|
||||||
|
|
||||||
|
// Fichier cible
|
||||||
|
$targetName = uniqid().".".$extention;
|
||||||
|
$targetFile = $rootdir."/uploads/ckeditor/".$targetName;
|
||||||
|
$targetUrl = "/".$this->getParameter('alias')."/uploads/ckeditor/".$targetName;
|
||||||
|
$message = "";
|
||||||
|
|
||||||
|
move_uploaded_file($tmpfile,$targetFile);
|
||||||
|
|
||||||
|
$output["uploaded"]=1;
|
||||||
|
$output["fileName"]=$targetName;
|
||||||
|
$output["url"]=$targetUrl;
|
||||||
|
|
||||||
|
return new Response(json_encode($output));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public function readAction(Request $request) {
|
public function readAction(Request $request) {
|
||||||
$output=array();
|
$output=array();
|
||||||
$id=$request->request->get('id');
|
$id=$request->request->get('id');
|
||||||
|
|
|
@ -33,7 +33,7 @@ class AlertType extends AbstractType
|
||||||
"label" => 'Description',
|
"label" => 'Description',
|
||||||
"required" => false,
|
"required" => false,
|
||||||
"disabled" => ($options["mode"]=="delete"?true:false),
|
"disabled" => ($options["mode"]=="delete"?true:false),
|
||||||
"config" => array("height" => "500px")
|
"config" => array("height" => "500px","filebrowserUploadRoute" => 'cadoles_portal_config_alert_upload')
|
||||||
])
|
])
|
||||||
|
|
||||||
->add("fghideable",ChoiceType::class,[
|
->add("fghideable",ChoiceType::class,[
|
||||||
|
|
|
@ -159,6 +159,13 @@ cadoles_portal_config_alert_order:
|
||||||
path: /config/alert/order
|
path: /config/alert/order
|
||||||
defaults: { _controller: CadolesPortalBundle:Alert:order }
|
defaults: { _controller: CadolesPortalBundle:Alert:order }
|
||||||
|
|
||||||
|
cadoles_portal_config_alert_upload:
|
||||||
|
path: /config/alert/upload
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Alert:upload }
|
||||||
|
cadoles_portal_config_alert_upload_direct:
|
||||||
|
path: /config/alert/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Alert:upload }
|
||||||
|
|
||||||
cadoles_portal_config_ajax_alert_seleclist:
|
cadoles_portal_config_ajax_alert_seleclist:
|
||||||
path: /config/alert/ajax/selectlist
|
path: /config/alert/ajax/selectlist
|
||||||
defaults: { _controller: CadolesPortalBundle:Alert:ajaxseleclist }
|
defaults: { _controller: CadolesPortalBundle:Alert:ajaxseleclist }
|
||||||
|
@ -321,6 +328,9 @@ cadoles_portal_config_page_order:
|
||||||
cadoles_portal_config_page_upload:
|
cadoles_portal_config_page_upload:
|
||||||
path: /config/page/upload
|
path: /config/page/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Page:upload, access: config }
|
defaults: { _controller: CadolesPortalBundle:Page:upload, access: config }
|
||||||
|
cadoles_portal_config_page_upload_direct:
|
||||||
|
path: /config/page/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Page:upload, access: config }
|
||||||
|
|
||||||
#-- Access user
|
#-- Access user
|
||||||
cadoles_portal_user_page_submit:
|
cadoles_portal_user_page_submit:
|
||||||
|
@ -350,6 +360,9 @@ cadoles_portal_user_page_order:
|
||||||
cadoles_portal_user_page_upload:
|
cadoles_portal_user_page_upload:
|
||||||
path: /user/page/upload
|
path: /user/page/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Page:upload, access: user }
|
defaults: { _controller: CadolesPortalBundle:Page:upload, access: user }
|
||||||
|
cadoles_portal_user_page_upload_direct:
|
||||||
|
path: /user/page/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Page:upload, access: user }
|
||||||
|
|
||||||
# Page spécifique
|
# Page spécifique
|
||||||
cadoles_portal_user_page_application:
|
cadoles_portal_user_page_application:
|
||||||
|
@ -531,6 +544,9 @@ cadoles_portal_config_blogarticle_delete:
|
||||||
cadoles_portal_config_blogarticle_upload:
|
cadoles_portal_config_blogarticle_upload:
|
||||||
path: /config/blogarticle/upload
|
path: /config/blogarticle/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Blogarticle:upload, access: config }
|
defaults: { _controller: CadolesPortalBundle:Blogarticle:upload, access: config }
|
||||||
|
cadoles_portal_config_blogarticle_upload_direct:
|
||||||
|
path: /config/blogarticle/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Blogarticle:upload, access: config }
|
||||||
|
|
||||||
cadoles_portal_config_blogarticle_image:
|
cadoles_portal_config_blogarticle_image:
|
||||||
path: /config/blogarticle/image
|
path: /config/blogarticle/image
|
||||||
|
@ -556,6 +572,9 @@ cadoles_portal_user_blogarticle_delete:
|
||||||
cadoles_portal_user_blogarticle_upload:
|
cadoles_portal_user_blogarticle_upload:
|
||||||
path: /user/blogarticle/upload
|
path: /user/blogarticle/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Blogarticle:upload, access: user }
|
defaults: { _controller: CadolesPortalBundle:Blogarticle:upload, access: user }
|
||||||
|
cadoles_portal_user_blogarticle_upload_direct:
|
||||||
|
path: /user/blogarticle/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Blogarticle:upload, access: user }
|
||||||
|
|
||||||
cadoles_portal_user_blogarticle_image:
|
cadoles_portal_user_blogarticle_image:
|
||||||
path: /user/blogarticle/image
|
path: /user/blogarticle/image
|
||||||
|
@ -584,6 +603,9 @@ cadoles_portal_config_blogcomment_delete:
|
||||||
cadoles_portal_config_blogcomment_upload:
|
cadoles_portal_config_blogcomment_upload:
|
||||||
path: /config/blogcomment/upload
|
path: /config/blogcomment/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Blogcomment:upload, access: config }
|
defaults: { _controller: CadolesPortalBundle:Blogcomment:upload, access: config }
|
||||||
|
cadoles_portal_config_blogcomment_upload_direct:
|
||||||
|
path: /config/blogcomment/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Blogcomment:upload, access: config }
|
||||||
|
|
||||||
#-- Access user
|
#-- Access user
|
||||||
cadoles_portal_user_blogcomment_submit:
|
cadoles_portal_user_blogcomment_submit:
|
||||||
|
@ -605,7 +627,9 @@ cadoles_portal_user_blogcomment_delete:
|
||||||
cadoles_portal_user_blogcomment_upload:
|
cadoles_portal_user_blogcomment_upload:
|
||||||
path: /user/blogcomment/upload
|
path: /user/blogcomment/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Blogcomment:upload, access: user }
|
defaults: { _controller: CadolesPortalBundle:Blogcomment:upload, access: user }
|
||||||
|
cadoles_portal_user_blogcomment_upload_direct:
|
||||||
|
path: /user/blogcomment/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Blogcomment:upload, access: user }
|
||||||
|
|
||||||
#== CALENDAR =============================================================================================================================================
|
#== CALENDAR =============================================================================================================================================
|
||||||
|
|
||||||
|
@ -804,6 +828,9 @@ cadoles_portal_config_projecttask_delete:
|
||||||
cadoles_portal_config_projecttask_upload:
|
cadoles_portal_config_projecttask_upload:
|
||||||
path: /config/projecttask/upload
|
path: /config/projecttask/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Projecttask:upload, access: config }
|
defaults: { _controller: CadolesPortalBundle:Projecttask:upload, access: config }
|
||||||
|
cadoles_portal_config_projecttask_upload_direct:
|
||||||
|
path: /config/projecttask/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Projecttask:upload, access: config }
|
||||||
|
|
||||||
cadoles_portal_config_projecttask_users:
|
cadoles_portal_config_projecttask_users:
|
||||||
path: /config/projecttask/users
|
path: /config/projecttask/users
|
||||||
|
@ -833,6 +860,9 @@ cadoles_portal_user_projecttask_delete:
|
||||||
cadoles_portal_user_projecttask_upload:
|
cadoles_portal_user_projecttask_upload:
|
||||||
path: /user/projecttask/upload
|
path: /user/projecttask/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Projecttask:upload, access: user }
|
defaults: { _controller: CadolesPortalBundle:Projecttask:upload, access: user }
|
||||||
|
cadoles_portal_user_projecttask_upload_direct:
|
||||||
|
path: /user/projecttask/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Projecttask:upload, access: user }
|
||||||
|
|
||||||
cadoles_portal_user_projecttask_users:
|
cadoles_portal_user_projecttask_users:
|
||||||
path: /user/projecttask/users
|
path: /user/projecttask/users
|
||||||
|
@ -861,6 +891,9 @@ cadoles_portal_config_projectcomment_delete:
|
||||||
cadoles_portal_config_projectcomment_upload:
|
cadoles_portal_config_projectcomment_upload:
|
||||||
path: /config/projectcomment/upload
|
path: /config/projectcomment/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Projectcomment:upload, access: config }
|
defaults: { _controller: CadolesPortalBundle:Projectcomment:upload, access: config }
|
||||||
|
cadoles_portal_config_projectcomment_upload_direct:
|
||||||
|
path: /config/projectcomment/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Projectcomment:upload, access: config }
|
||||||
|
|
||||||
#-- Access user
|
#-- Access user
|
||||||
cadoles_portal_user_projectcomment_submit:
|
cadoles_portal_user_projectcomment_submit:
|
||||||
|
@ -878,7 +911,9 @@ cadoles_portal_user_projectcomment_delete:
|
||||||
cadoles_portal_user_projectcomment_upload:
|
cadoles_portal_user_projectcomment_upload:
|
||||||
path: /user/projectcomment/upload
|
path: /user/projectcomment/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Projectcomment:upload, access: user }
|
defaults: { _controller: CadolesPortalBundle:Projectcomment:upload, access: user }
|
||||||
|
cadoles_portal_user_projectcomment_upload_direct:
|
||||||
|
path: /user/projectcomment/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Projectcomment:upload, access: user }
|
||||||
|
|
||||||
#== FEED =================================================================================================================================================
|
#== FEED =================================================================================================================================================
|
||||||
|
|
||||||
|
@ -930,6 +965,9 @@ cadoles_portal_config_pagewidget_order:
|
||||||
cadoles_portal_config_pagewidget_upload:
|
cadoles_portal_config_pagewidget_upload:
|
||||||
path: /config/pagewidget/upload
|
path: /config/pagewidget/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Pagewidget:upload, access: config }
|
defaults: { _controller: CadolesPortalBundle:Pagewidget:upload, access: config }
|
||||||
|
cadoles_portal_config_pagewidget_upload_direct:
|
||||||
|
path: /config/pagewidget/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Pagewidget:upload, access: config }
|
||||||
|
|
||||||
cadoles_portal_config_panelwidget_view_url:
|
cadoles_portal_config_panelwidget_view_url:
|
||||||
path: /config/pagewidget/view/url/{id}
|
path: /config/pagewidget/view/url/{id}
|
||||||
|
@ -1051,6 +1089,9 @@ cadoles_portal_user_pagewidget_order:
|
||||||
cadoles_portal_user_pagewidget_upload:
|
cadoles_portal_user_pagewidget_upload:
|
||||||
path: /user/pagewidget/upload
|
path: /user/pagewidget/upload
|
||||||
defaults: { _controller: CadolesPortalBundle:Pagewidget:upload, access: user }
|
defaults: { _controller: CadolesPortalBundle:Pagewidget:upload, access: user }
|
||||||
|
cadoles_portal_user_pagewidget_upload_direct:
|
||||||
|
path: /user/pagewidget/upload&responseType=json
|
||||||
|
defaults: { _controller: CadolesPortalBundle:Pagewidget:upload, access: user }
|
||||||
|
|
||||||
cadoles_portal_user_panelwidget_view_url:
|
cadoles_portal_user_panelwidget_view_url:
|
||||||
path: /pagewidget/view/url/{id}
|
path: /pagewidget/view/url/{id}
|
||||||
|
|
|
@ -30,7 +30,7 @@ class ChatType extends AbstractType
|
||||||
'mapped'=> false,
|
'mapped'=> false,
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
||||||
'config' => ["height" => "100px",'filebrowserUploadRoute' => 'cadoles_portal_user_pagewidget_upload',],
|
'config' => ["height" => "100px"],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$builder
|
$builder
|
||||||
|
@ -40,7 +40,7 @@ class ChatType extends AbstractType
|
||||||
'mapped'=> false,
|
'mapped'=> false,
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
'attr' => array("class" => "form-control", "style" => "margin-bottom:15px"),
|
||||||
'config' => ["height" => "150px",'filebrowserUploadRoute' => 'cadoles_portal_user_pagewidget_upload']
|
'config' => ["height" => "150px"]
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -133,6 +133,11 @@ parameters:
|
||||||
%else
|
%else
|
||||||
ldap_tls: false
|
ldap_tls: false
|
||||||
%end if
|
%end if
|
||||||
|
|
||||||
|
%if %%getVar("ninegate_masteridentity", 'SQL') != "SQL"
|
||||||
|
ldap_user: %%ldap_reader
|
||||||
|
ldap_password: %%pwdreader("",%%ldap_reader_passfile)
|
||||||
|
%else
|
||||||
%if %%getVar("activer_admin_passfile", 'non') == "oui"
|
%if %%getVar("activer_admin_passfile", 'non') == "oui"
|
||||||
%if %%getVar("ldap_writer", '') == ""
|
%if %%getVar("ldap_writer", '') == ""
|
||||||
ldap_user: cn=admin,o=gouv,c=fr
|
ldap_user: cn=admin,o=gouv,c=fr
|
||||||
|
@ -143,6 +148,7 @@ parameters:
|
||||||
%else
|
%else
|
||||||
ldap_user: %%ldap_reader
|
ldap_user: %%ldap_reader
|
||||||
ldap_password: %%pwdreader("",%%ldap_reader_passfile)
|
ldap_password: %%pwdreader("",%%ldap_reader_passfile)
|
||||||
|
%end if
|
||||||
%end if
|
%end if
|
||||||
ldap_basedn: %%ldap_base_dn
|
ldap_basedn: %%ldap_base_dn
|
||||||
%if %%getVar("ninegate_ldaptype", 'LDAP') == "AD"
|
%if %%getVar("ninegate_ldaptype", 'LDAP') == "AD"
|
||||||
|
|
Loading…
Reference in New Issue