Lite.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. /**
  3. * 腾讯云存储接口调用
  4. * 1、图片文件上传
  5. *
  6. * 参考:https://cloud.tencent.com/document/product/436/6274
  7. *
  8. * @author: dogstar 2015-03-17
  9. */
  10. require_once dirname(__FILE__) . '/txcloud/include.php');
  11. class TxCloud_Lite {
  12. protected $config;
  13. /**
  14. * @param string $config['accessKey'] 统一的key
  15. * @param string $config['secretKey']
  16. * @param string $config['space_bucket'] 自定义配置的空间
  17. * @param string $config['space_host']
  18. */
  19. public function __construct($config = NULL) {
  20. $this->config = $config;
  21. if ($this->config === NULL) {
  22. $this->config = DI()->config->get('app.TxCloud');
  23. }
  24. }
  25. /**
  26. * 文件上传
  27. * @param string $dst 待上传文件的绝对路径
  28. * @return string 上传成功后的URL,失败时返回空
  29. */
  30. public function uploadFile($file)
  31. {
  32. $fileUrl = '';
  33. //cosfolderpath
  34. $folder = '/test2';
  35. //cospath
  36. $dst = '/test2/'.$file["name"];
  37. //bucketname
  38. $bucket = 'aosika';
  39. //uploadlocalpath
  40. /* $src = $_FILES['file'];//'./hello.txt'; */
  41. $src = $file["tmp_name"];//'./hello.txt';
  42. if (!file_exists($dst)) {
  43. return $fileUrl;
  44. }
  45. $config = $this->config;
  46. //config your information
  47. /* $config = array(
  48. 'app_id' => '1255500835',
  49. 'secret_id' => 'AKIDbBcrfKT7EE3gBUQqjPxKWWJvPxPk3thI',
  50. 'secret_key' => 'XvCLJ7j8NSN6f7QcfXZR7g2C9tRCm5pQ',
  51. 'region' => 'sh', // bucket所属地域:华北 'tj' 华东 'sh' 华南 'gz'
  52. 'timeout' => 60
  53. ); */
  54. date_default_timezone_set('PRC');
  55. $cosApi = new \QCloud\Cos\Api($config['config']);
  56. // Create folder in bucket.
  57. $ret = $cosApi->createFolder($bucket, $folder);
  58. /* var_dump($ret); */
  59. // Upload file into bucket.
  60. $ret = $cosApi->upload($bucket, $src, $dst);
  61. /* var_dump($ret); */
  62. return $fileUrl;
  63. }
  64. /**
  65. * 多次有效签名:图片
  66. * @return string
  67. */
  68. public function createReusableSignatureImg($filepath)
  69. {
  70. $bucket = 'aosika';
  71. $config = $this->config;
  72. $filepath = '/test2/1.jpg';
  73. $expiration = time() + 3600;
  74. $auth = new \QCloud\Cos\Auth($config['app_id'], $config['secret_id'], $config['secret_key']);
  75. $signature = $auth->createReusableSignature($expiration, $bucket, $filepath);
  76. return $signature;
  77. }
  78. /**
  79. * 多次有效签名:视频
  80. * @return string
  81. */
  82. public function createReusableSignatureMP4($filepath)
  83. {
  84. $bucket = 'aosika';
  85. $config = $this->config;
  86. $filepath = '/test2/2.mp4';
  87. $expiration = time() + 3600;
  88. $auth = new \QCloud\Cos\Auth($config['app_id'], $config['secret_id'], $config['secret_key']);
  89. $signature = $auth->createReusableSignature($expiration, $bucket, $filepath);
  90. return $signature;
  91. }
  92. /**
  93. * 单次有效签名
  94. * @return string
  95. */
  96. public function createNonreusableSignature($filepath)
  97. {
  98. $bucket = 'aosika';
  99. $config = $this->config;
  100. $auth = new \QCloud\Cos\Auth($config['app_id'], $config['secret_id'], $config['secret_key']);
  101. $signature = $auth->createNonreusableSignature($bucket, $filepath);
  102. return $signature;
  103. }
  104. }