message.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <?php
  2. /**
  3. * user
  4. */
  5. # 定义几个常用的选项
  6. $option = array
  7. (
  8. 1 => '待机',
  9. 2 => '运行中',
  10. 3 => '发送中',
  11. 4 => '完成',
  12. );
  13. $oper = array
  14. (
  15. 1 => '待机',
  16. 2 => '定时',
  17. 3 => '立刻发送',
  18. );
  19. $type = array
  20. (
  21. 1 => '订阅消息',
  22. 2 => '客服消息',
  23. );
  24. # 群发对象
  25. $user = array
  26. (
  27. 1 => '按分组选择',
  28. 2 => '指定openid',
  29. 3 => '指定uid',
  30. 4 => '所有用户',
  31. );
  32. # 分组
  33. $group = function()
  34. {
  35. $data = Dever::load('weixin/group-get');
  36. return $data;
  37. };
  38. # 订阅消息
  39. $get_1 = function()
  40. {
  41. $data = Dever::load('weixin/content-get_1');
  42. return $data;
  43. };
  44. # 客服消息
  45. $get_2 = function()
  46. {
  47. $data = Dever::load('weixin/content-get_2');
  48. return $data;
  49. };
  50. return array
  51. (
  52. # 表名
  53. 'name' => 'message',
  54. # 显示给用户看的名称
  55. 'lang' => '群发消息任务',
  56. 'order' => 18,
  57. 'end' => array
  58. (
  59. # 对oper的操作
  60. 'update_oper' => 'weixin/message.oper',
  61. 'insert' => 'weixin/message.oper',
  62. 'update' => 'weixin/message.oper',
  63. ),
  64. # 数据结构
  65. 'struct' => array
  66. (
  67. 'id' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => 'ID',
  71. 'default' => '',
  72. 'desc' => '',
  73. 'match' => 'is_numeric',
  74. 'search' => 'order',
  75. 'list' => true,
  76. ),
  77. 'site' => array
  78. (
  79. 'type' => 'int-11',
  80. 'name' => '站点',
  81. 'default' => '',
  82. 'desc' => '请输入站点',
  83. 'match' => 'is_numeric',
  84. ),
  85. 'name' => array
  86. (
  87. 'type' => 'varchar-32',
  88. 'name' => '任务描述',
  89. 'default' => '',
  90. 'desc' => '请输入任务描述',
  91. 'match' => 'is_string',
  92. 'search' => 'fulltext',
  93. 'update' => 'text',
  94. 'list' => true,
  95. ),
  96. 'oper' => array
  97. (
  98. 'type' => 'tinyint-1',
  99. 'name' => '操作',
  100. 'default' => '1',
  101. 'desc' => '请选择操作',
  102. 'match' => 'is_numeric',
  103. 'option' => $oper,
  104. 'update' => 'radio',
  105. //'list' => true,
  106. # 开启显示控制,可以控制下边的表单
  107. 'show' => 'oper',
  108. ),
  109. 'sdate' => array
  110. (
  111. 'type' => 'int-11',
  112. 'name' => '发送时间',
  113. 'match' => 'option',
  114. 'default' => '0',
  115. 'desc' => '请输入发送时间',
  116. 'update' => 'date',//date为详细时间
  117. 'list' => '{sdate} > 0 ? date("Y-m-d H:i:s", {sdate}) : "暂无"',
  118. 'callback' => 'maketime',
  119. 'show' => array('oper_2'),
  120. ),
  121. 'user' => array
  122. (
  123. 'type' => 'int-1',
  124. 'name' => '群发对象',
  125. 'default' => '1',
  126. 'desc' => '请选择群发对象',
  127. 'match' => 'is_numeric',
  128. 'option' => $user,
  129. 'update' => 'radio',
  130. # 开启显示控制,可以控制下边的表单
  131. 'show' => 'user',
  132. ),
  133. 'group' => array
  134. (
  135. 'type' => 'int-11',
  136. 'name' => '选择分组',
  137. 'default' => '-1',
  138. 'desc' => '请选择分组',
  139. 'match' => 'is_numeric',
  140. 'option' => $group,
  141. 'update' => 'radio',
  142. 'show' => array('user_1'),
  143. ),
  144. 'openid' => array
  145. (
  146. 'type' => 'text-255',
  147. 'name' => '填写openid(OpenID 最多10000个,换行分割)',
  148. 'default' => '',
  149. 'desc' => '请填写openid',
  150. 'match' => 'option',
  151. 'update' => 'textarea',
  152. 'show' => array('user_2'),
  153. ),
  154. 'uid' => array
  155. (
  156. 'type' => 'text-255',
  157. 'name' => '填写平台uid(换行分割)',
  158. 'default' => '',
  159. 'desc' => '请填写uid',
  160. 'match' => 'option',
  161. 'update' => 'textarea',
  162. 'show' => array('user_3'),
  163. ),
  164. 'type' => array
  165. (
  166. 'type' => 'tinyint-1',
  167. 'name' => '发送类型',
  168. 'default' => '1',
  169. 'desc' => '请选择发送类型',
  170. 'match' => 'is_numeric',
  171. 'option' => $type,
  172. 'update' => 'radio',
  173. 'list' => true,
  174. # 开启显示控制,可以控制下边的表单
  175. 'show' => 'type',
  176. ),
  177. 'content_1' => array
  178. (
  179. 'type' => 'int-11',
  180. 'name' => '选择消息内容',
  181. 'default' => '',
  182. 'desc' => '请选择选择消息内容',
  183. 'match' => 'is_numeric',
  184. 'option' => $get_1,
  185. 'update' => 'select',
  186. 'show' => array('type_1'),
  187. ),
  188. 'content_2' => array
  189. (
  190. 'type' => 'int-11',
  191. 'name' => '选择消息内容',
  192. 'default' => '',
  193. 'desc' => '请选择选择消息内容',
  194. 'match' => 'is_numeric',
  195. 'option' => $get_2,
  196. 'update' => 'select',
  197. 'show' => array('type_2'),
  198. ),
  199. 'state' => array
  200. (
  201. 'type' => 'tinyint-1',
  202. 'name' => '状态',
  203. 'default' => '1',
  204. 'desc' => '请选择状态',
  205. 'match' => array('is_numeric', 1),
  206. 'option' => $option,
  207. //'update' => 'radio',
  208. 'list' => true,
  209. ),
  210. 'cdate' => array
  211. (
  212. 'type' => 'int-11',
  213. 'name' => '录入时间',
  214. 'match' => array('is_numeric', time()),
  215. 'desc' => '',
  216. # 只有insert时才生效
  217. 'insert' => true,
  218. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  219. ),
  220. ),
  221. 'manage' => array
  222. (
  223. # 列表
  224. 'list' => array
  225. (
  226. array(1 => array('日志', '"message_log&option_message_id={id}"')),
  227. ),
  228. 'desc' => '订阅消息:订阅号用户可以每天可接收1条群发消息,服务号用户每月只能接收4条群发消息,多于4条的群发将对该用户发送失败。 注意,如果群发对象选择“所有用户”,消息会自动进入公众号历史消息列表。<br />客服消息:每天发送一次,如果发送的用户超过50w,则只能最多发送50w个用户,本消息只对48小时之内和公众号有过互动的关注用户有效。',
  229. ),
  230. 'auth' => 'site',
  231. # request 请求接口定义
  232. 'request' => array
  233. (
  234. 'info' => array
  235. (
  236. # 匹配的正则或函数 必填项
  237. 'where' => array
  238. (
  239. 'groupid' => 'yes',
  240. 'site' => 'yes',
  241. ),
  242. 'type' => 'one',
  243. ),
  244. ),
  245. );