Class: BizM
- Inherits:
-
Object
- Object
- BizM
- Defined in:
- lib/bizm.rb
Instance Method Summary collapse
- #cancel(msg_id:) ⇒ Object
-
#initialize(user_id, profile) ⇒ BizM
constructor
A new instance of BizM.
- #send(phone:, msg:, tmpl_id:, message_type: 'AT', reserve_dt: '00000000000000', button_name: nil, button_url: nil, buttons: [], items: nil, header: nil, msg_sms: nil, sms_sender: nil) ⇒ Object
Constructor Details
#initialize(user_id, profile) ⇒ BizM
Returns a new instance of BizM.
7 8 9 10 |
# File 'lib/bizm.rb', line 7 def initialize(user_id, profile) @user_id = user_id @profile = profile end |
Instance Method Details
#cancel(msg_id:) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/bizm.rb', line 79 def cancel( msg_id: ) uri = URI.parse('https://alimtalk-api.bizmsg.kr/v2/sender/cancel_reserved') header = { 'userid': @user_id } data = { msgid: msg_id, profile: @profile, } request = Net::HTTP::Post.new(uri.path, header) request.set_form_data(data) # This API doesn't accept JSON body http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true response = http.request(request) return JSON.parse(response.body) end |
#send(phone:, msg:, tmpl_id:, message_type: 'AT', reserve_dt: '00000000000000', button_name: nil, button_url: nil, buttons: [], items: nil, header: nil, msg_sms: nil, sms_sender: nil) ⇒ Object
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/bizm.rb', line 12 def send( phone:, msg:, tmpl_id:, message_type: 'AT', reserve_dt: '00000000000000', button_name: nil, button_url: nil, buttons: [], items: nil, header: nil, msg_sms: nil, sms_sender: nil ) uri = URI.parse('https://alimtalk-api.bizmsg.kr/v2/sender/send') data = { message_type: , phn: phone, profile: @profile, reserveDt: reserve_dt, header: header, items: items, msg: msg, tmplId: tmpl_id } if .empty? && !.nil? << { name: , url: } end .each_with_index do |, index| = { name: [:name], type: 'WL', url_mobile: [:url], } .merge!(url_pc: [:url_pc]) if [:url_pc].present? data["button#{index + 1}".to_sym] = end if msg_sms && sms_sender data[:smsKind] = msg_sms.bytesize > 90 ? 'L' : 'S' data[:msgSms] = msg_sms data[:smsSender] = sms_sender end request_header = { 'Content-type': 'application/json;charset=UTF-8', 'userid': @user_id } request = Net::HTTP::Post.new(uri.path, request_header) request.body = [data].to_json http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true response = http.request(request) return JSON.parse(response.body)[0] end |