我已经安装了Sonata MediaBundle来管理我网站上的媒体。一切正常,但现在我需要自定义MediaController的viewAction。我复制了原始MediaController并更改了它。它位于src/Application/Sonata/MediaBundle/Controller
。我把它放在那里是因为当我使用easy-extends
扩展MediaBundle时创建了该文件夹。我正在使用注释进行路由,因此我的路由文件的相关部分如下所示:
media:
resource: '@Application/Sonata/MediaBundle/Controller'
type: annotation
prefix: /media
我的控制器看起来像这样:
/**
* Log controller.
*
* @Route("/media")
*/
class MediaController extends BaseMediaController {
/**
* @throws NotFoundHttpException
*
* @param string $id
* @param string $format
*
* @return Response
*
* @Route("/view/{video_id}", name="media_view")
* @Method("GET")
* @Template()
*/
public function viewAction($id, $format = 'reference')
{
$media = $this->getMedia($id);
if (!$media) {
throw new NotFoundHttpException(sprintf('unable to find the media with the id : %s', $id));
}
if (!$this->get('sonata.media.pool')->getDownloadSecurity($media)->isGranted($media, $this->getRequest())) {
throw new AccessDeniedException();
}
return $this->render('SonataMediaBundle:Media:view.html.twig', array(
'media' => $media,
'formats' => $this->get('sonata.media.pool')->getFormatNamesByContext($media->getContext()),
'format' => $format
));
}
}
除了注释外,目前没有任何变化。当我尝试访问网址http://
时,我收到此错误:my-server
/media/view/4
my-server
捆绑包加载到AppKernel.php中:
Cannot load resource "@Application/Sonata/MediaBundle/Controller". Make sure the "Application/Sonata/MediaBundle/Controller" bundle is correctly registered and loaded in the application kernel class.
500 Internal Server Error - FileLoaderLoadException
知道这里有什么问题吗?我已经测试了编写路线的各种方式,但没有任何改变。有没有更好的方法来覆盖MediaCOntroller? 提前谢谢。
答案 0 :(得分:0)
最后我知道发生了什么。由于重构操作,导入路由的_main路由形成了app/config
下的routing.yml已经改变,并且正在尝试导入当前不存在的media.yml。
我发现它归功于PHPStorm的本地历史功能。
感谢所有看过这个问题的人。