-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextmessage.controller.php
More file actions
143 lines (134 loc) · 3.91 KB
/
textmessage.controller.php
File metadata and controls
143 lines (134 loc) · 3.91 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/**
* vi:set sw=4 ts=4 noexpandtab fileencoding=utf8:
* @class textmessageController
* @author diver(diver@coolsms.co.kr)
* @brief textmessageController
*/
class textmessageController extends textmessage
{
function init() { }
/**
* @brief 메시지 전송
* @param[in] $args
* $args->type = 'SMS' or 'LMS' or 'MMS' or 'CTA' or 'ATA' // default = 'SMS'
* $args->sender_key = '발급받은 센더키'
* $args->recipient_no = '수신번호'
* $args->sender_no = '발신번호'
* $args->content = '메시지 내용'
* $args->reservdate = 'YYYYMMDDHHMISS'
* $args->subject = 'LMS제목'
* $args->country_code = '국가번호'
* $args->country_iso_code = '국가ISO코드'
* $args->attachment = 첨부파일
* $args->encode_utf16 = true or false
* @param[in] $user_id true means auto, false means none, otherwise, use in userid
* @return Object(error, message)
**/
function sendMessage($args, $basecamp=FALSE)
{
$oTextmessageModel = getModel('textmessage');
$sms = textmessageModel::getCoolSMS($basecamp);
$options = new stdClass();
if($oTextmessageModel->getSlnRegKey() && !$args->srk)
{
$options->appId = $oTextmessageModel->getSlnRegKey();
}
else
{
$options->appId = $args->srk;
}
// 기존 Textmessage 와 다른 args 옵션으로 인한 동기화하기
if($args->recipient_no)
{
if(is_array($args->recipient_no))
{
$options->to = implode(',', $args->recipient_no);
}
else
{
$options->to = $args->recipient_no;
}
}
elseif($args->to)
{
$options->to = $args->to;
}
if($args->sender_no)
{
$options->from = $args->sender_no;
}
elseif($args->from)
{
$options->from = $args->from;
}
if($args->type) $options->type = $args->type;
if($args->attachment) $options->image = $args->attachment;
if($args->image) $options->image = $args->image;
if($args->content) $options->text = $args->content;
if($args->refname) $options->refname = $args->refname;
if($args->country) $options->country = $args->country;
if($args->subject) $options->subject = $args->subject;
if($args->srk) $options->srk = $args->srk;
if($args->extension) $options->extension = $args->extension;
if($args->reservdate) $options->datetime = $args->reservdate;
if($args->route) $options->route = $args->route;
if($args->app_version) $options->app_version = $args->app_version;
if($args->sender_key)
{
$options->kakaoOptions = new stdClass();
$options->kakaoOptions->senderKey = $args->sender_key;
if($args->template_code) $options->template_code = $args->template_code;
if($args->button_name) $options->button_name = $args->button_name;
if($args->button_url) $options->button_url = $args->button_url;
}
// 문자 전송
$result = $sms::send($options);
$output = new Object();
if($result->code)
{
$result->error_count = count(explode(',', $options->to));
$result->success_count = 0;
$output->add('error_code', $result->code);
}
$output->add('success_count', $result->success_count);
$output->add('failure_count', $result->error_count);
if($result->group_id) $output->add('group_id', $result->group_id);
return $output;
}
/*
* @brief 예약전송 취소하기
*/
function cancelMessage($msgid, $basecamp=FALSE)
{
$sms = textmessageModel::getCoolSMS($basecamp);
$options = new stdClass();
$options->mid = $msgid;
$result = $sms::cancel($options);
if($result->code)
{
return new Object(-1, $result->code);
}
else
{
return new Object();
}
}
/**
* @brief 문자취소(그룹)
**/
function cancelGroupMessages($grpid, $basecamp=FALSE)
{
$sms = textmessageModel::getCoolSMS($basecamp);
$options = new stdClass();
$options->gid = $grpid;
$result = $sms::cancel($options);
if($result->code)
{
return new Object(-1, $result->code);
}
return new Object();
}
}
/* End of file textmessage.controller.php */
/* Location: ./modules/textmessage.controller.php */