File: callback.rb

package info (click to toggle)
ruby-aliyun-sdk 0.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 792 kB
  • sloc: ruby: 7,909; ansic: 204; makefile: 4
file content (61 lines) | stat: -rw-r--r-- 1,821 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- encoding: utf-8 -*-

$LOAD_PATH.unshift(File.expand_path("../../../../lib", __FILE__))
require 'yaml'
require 'json'
require 'aliyun/oss'

##
# 用户在上传文件时可以指定“上传回调”,这样在文件上传成功后OSS会向用户
# 提供的服务器地址发起一个HTTP POST请求,相当于一个通知机制。用户可以
# 在收到回调的时候做相应的动作。
# 1. 如何接受OSS的回调可以参考代码目录下的
#    rails/aliyun_oss_callback_server.rb
# 2. 只有put_object和resumable_upload支持上传回调

# 初始化OSS client
Aliyun::Common::Logging.set_log_level(Logger::DEBUG)
conf_file = '~/.oss.yml'
conf = YAML.load(File.read(File.expand_path(conf_file)))
bucket = Aliyun::OSS::Client.new(
  :endpoint => conf['endpoint'],
  :cname => conf['cname'],
  :access_key_id => conf['access_key_id'],
  :access_key_secret => conf['access_key_secret']).get_bucket(conf['bucket'])

# 辅助打印函数
def demo(msg)
  puts "######### #{msg} ########"
  puts
  yield
  puts "-------------------------"
  puts
end

demo "put object with callback" do
  callback = Aliyun::OSS::Callback.new(
    url: 'http://10.101.168.94:1234/callback',
    query: {user: 'put_object'},
    body: 'bucket=${bucket}&object=${object}'
  )

  begin
    bucket.put_object('files/hello', callback: callback)
  rescue Aliyun::OSS::CallbackError => e
    puts "Callback failed: #{e.message}"
  end
end

demo "resumable upload with callback" do
  callback = Aliyun::OSS::Callback.new(
    url: 'http://10.101.168.94:1234/callback',
    query: {user: 'resumable_upload'},
    body: 'bucket=${bucket}&object=${object}'
  )

  begin
    bucket.resumable_upload('files/world', '/tmp/x', callback: callback)
  rescue Aliyun::OSS::CallbackError => e
    puts "Callback failed: #{e.message}"
  end
end