123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <?php
- namespace Upload\Lib\Store;
- use Dever;
- Dever::apply('sdk/oss', 'upload');
- use OSS\OssClient;
- use OSS\Core\OssException;
- class Oss extends Core implements Config
- {
- public $yun = true;
- /**
- * 创建文件和目录
- *
- * @return mixed
- */
- public function save()
- {
- $config = Dever::db('upload/yun')->one($this->config['yun']);
- $accessKey = $config['appkey'];
- $secretKey = $config['appsecret'];
- $endpoint = "http://oss-cn-beijing.aliyuncs.com";
- $bucket = $this->config['bucket'];
- $this->host = $config['host'];
- $ossClient = new OssClient($accessKey, $secretKey, $endpoint);
- $this->getName();
- $file = $this->file;
- if ($this->config['cover'] == 3) {
- $this->name($this->output['file'] . '_' . microtime() . '_' . rand(0,1000))->file();
- $file = $this->file;
- }
- $options = array();
- if ($this->base64) {
- $ret = $ossClient->putObject($bucket, $file, $this->data['file']['tmp_name'], $options);
- } else {
- $ret = $ossClient->uploadFile($bucket, $file, $this->data['file']['tmp_name']);
- }
- if (isset($ret['info']['url'])) {
- $this->file = $ret['info']['url'];
- $file = Dever::load('upload/file-name', array('where_name' => $this->name, 'where_upload' => $this->data['key'], 'rand' => time()));
-
- if (!$this->limit) {
- $data = Dever::curl($this->output['url'] . '?x-oss-process=image/info');
- if ($data) {
- $data = json_decode($data, true);
- if (isset($data['ImageWidth']['value'])) {
- $this->limit = array($data['ImageWidth']['value'], $data['ImageHeight']['value']);
- $this->size = $data['FileSize']['value'];
- $this->ext = '.' . $data['Format']['value'];
- }
- }
- }
-
- if (isset($file) && $file) {
- $this->update($file['id']);
-
- } else {
- $this->insert();
- }
- return $this->output['url'];
- }
- }
- public function file()
- {
- if ($this->base64) {
- $data = pathinfo($this->data['pic']);
- $data['dirname'] = str_replace($this->host, '', $data['dirname']);
- $this->file = $data['dirname'] . '/' . $data['basename'] . $this->name . $this->ext;
- } else {
- $this->file = $this->path . $this->name . $this->ext;
- }
- $this->output['file'] = $this->file;
- $this->output['url'] = $this->host . $this->file;
- return $this->output['file'];
- }
-
- /**
- * water
- *
- * @return mixed
- */
- public function handle_w($id)
- {
- $config = Dever::load('upload/pic_water-one', $id);
- if ($config) {
- $this->name .= '_w' . $id;
-
- $water = array('water'=> $config['water'], 'position'=> ($config['water_position'] ? $config['water_position'] : 1));
-
- $this->img()->mark($this->output['file'], $water, true, $this->file());
- }
- }
- /**
- * compress
- *
- * @return mixed
- */
- public function handle_p($num, $source = false, $dest = false)
- {
- if (!$source) {
- $source = $this->output['file'];
- }
- if (!$dest) {
- if (strpos($this->name, '_p') !== false) {
- $temp = explode('_p', $this->name);
- $this->name = $temp[0];
- }
- $file = $this->output['file'];
- $url = $this->output['url'];
- $this->name .= '_p' . $num;
- $dest = $this->file();
- $this->output['file'] = $file;
- $this->output['url'] = $url;
- }
- $this->img()->setType('im');
- $this->img()->compress($source, $num, $dest);
- }
-
- /**
- * webp
- *
- * @return mixed
- */
- public function handle_wp($num, $source = false, $dest = false)
- {
- if (!$source) {
- $source = $this->output['file'];
- }
- if (!$dest) {
- if (strpos($this->name, '_wp') !== false) {
- $temp = explode('_wp', $this->name);
- $this->name = $temp[0];
- }
- $file = $this->output['file'];
- $url = $this->output['url'];
- $this->ext = '.webp';
- $this->name .= '_wp' . $num;
- $dest = $this->file();
- $this->output['file'] = $file;
- $this->output['url'] = $url;
- }
- $this->img()->setType('im');
- $this->img()->webp($source, $num, $dest);
- }
- /**
- * thumb
- *
- * @return mixed
- */
- public function handle_t($id, $source = false, $dest = false, $path = '')
- {
- $config = Dever::load('upload/pic_thumb-one', $id);
- if ($config) {
- if (!$source) {
- $source = $this->output['file'];
- }
- //?imageView2/2/w/360/h/270/format/png/q/75|imageslim
- //?x-oss-process=image/resize,q_50
- // $dest = $source . '?imageView2/2/w/'.$config['width'].'/h/'.$config['height'];
- $dest = $source . '?x-oss-process=image/resize,m_lfit,w_'.$config['width'].',h_' . $config['height'];
- if (isset($config['compress']) && $config['compress'] > 0) {
- $dest .= ',q_' . $config['compress'];
- }
- }
- return $dest;
- }
-
- /**
- * crop
- *
- * @return mixed
- */
- public function handle_c($id, $source = false, $dest = false)
- {
- $config = Dever::load('upload/pic_crop-one', $id);
-
- if ($config) {
- if (!$source) {
- $source = $this->output['file'];
- }
- $dest = $source . '?x-oss-process=image/resize,fill,w_'.$config['width'].',h_' . $config['height'];
- }
- return $dest;
- }
- }
|