laravel-ueditor maintained by norieli
laravel-ueditor
laravel api & baidu ueditor & aliyun oss
填坑百度,终呈于此。
Inspired By
- thephpleague/flysystem-aws-s3-v2
- apollopy/flysystem-aliyun-oss
- jacobcyl/ali-oss-storage
- front-end-static-source
Require
- Laravel 5+
- cURL extension
- php 7.0+
Important
- No Baidu original front-end static source !!!
Installation Back-End
- step 1:
In order to install AliOSS-storage, just add
"norieli/laravel-ueditor": "^1.0"
to your composer.json. Then run composer install or composer update.
Or you can simply run below command to install:
"composer require norieli/laravel-ueditor:^1.0"
- step 2:
copy :
"yourproject/vendor/norieli/laravel-ueditor/src/config.php"
to
"yourproject/config/ueditor.php"
and change to your own config
- step 3:
add to routes
// ueditor get
Route::get('/ueditor',function ()
{
return (new \Norie\Laravel\UE\Controller())->do();
});
// ueditor get
Route::middleware(['auth:api'])->post('/ueditor',function ()
{
return (new \Norie\Laravel\UE\Controller())->do();
});
- step 4 (if you need aliyun OSS):
- In your
config/app.phpadd this line to providers array:
Jacobcyl\AliOSS\AliOssServiceProvider::class,
- Add the following in app/filesystems.php:
'disks'=>[
...
'oss' => [
'driver' => 'oss',
'access_id' => '<Your Aliyun OSS AccessKeyId>',
'access_key' => '<Your Aliyun OSS AccessKeySecret>',
'bucket' => '<OSS bucket name>',
'endpoint' => '<the endpoint of OSS, E.g: oss-cn-hangzhou.aliyuncs.com | custom domain, E.g:img.abc.com>', // OSS 外网节点或自定义外部域名
//'endpoint_internal' => '<internal endpoint [OSS内网节点] 如:oss-cn-shenzhen-internal.aliyuncs.com>', // v2.0.4 新增配置属性,如果为空,则默认使用 endpoint 配置(由于内网上传有点小问题未解决,请大家暂时不要使用内网节点上传,正在与阿里技术沟通中)
'cdnDomain' => '<CDN domain, cdn域名>', // 如果isCName为true, getUrl会判断cdnDomain是否设定来决定返回的url,如果cdnDomain未设置,则使用endpoint来生成url,否则使用cdn
'ssl' => <true|false> // true to use 'https://' and false to use 'http://'. default is false,
'isCName' => <true|false> // 是否使用自定义域名,true: 则Storage.url()会使用自定义的cdn或域名生成文件url, false: 则使用外部节点生成url
'debug' => <true|false>
],
...
]
- Then set the default driver in app/filesystems.php:
'default' => 'oss',
Well! the Back-end is done!
Installation Back-End
- step 1:
See vue-ueditor to learn more.
If you not use vue, you can download this static resouce. download
- step 2 (If you need auth. if not, remove auth midleware in routes):
Whatever you choose. You also change 4 fiels to add http request hearder.
- static/UE/dialogs/image/image.js
- static/UE/dialogs/image/image.js
- static/UE/dialogs/video/video.js
the same code area
uploader.on('uploadBeforeSend', function (file, data, header) {
//这里可以通过data对象添加POST参数
header['X_Requested_With'] = 'XMLHttpRequest';
// like this
header['Authorization'] = 'Bearer ' + localStorage.getItem('token');
});
- static/UE/ueditor.all.js
var xhr = new XMLHttpRequest()
xhr.open('post', action, true)
// like this
xhr.setRequestHeader('Authorization', 'Bearer ' + localStorage.getItem('token'));
if (me.options.headers && Object.prototype.toString.apply(me.options.headers) === "[object Object]") {
for (var key in me.options.headers) {
xhr.setRequestHeader(key, me.options.headers[key])
}
}
- static/UE/ueditor.config.js
// 服务器统一请求接口路径
, serverUrl: URL + "/api/ueditor"
Well! The both done!
Something
Documentation
More development detail see Aliyun OSS DOC
License
Source code is release under MIT license. Read LICENSE file for more information.