refactor CQ

This commit is contained in:
crazywhalecc
2022-05-04 23:24:55 +08:00
parent d9302a3120
commit c9c76bfd10

View File

@@ -17,11 +17,7 @@ class CQ
*/ */
public static function at($qq): string public static function at($qq): string
{ {
if (is_numeric($qq) || $qq === 'all') { return self::buildCQ('at', ['qq' => $qq]);
return '[CQ:at,qq=' . $qq . ']';
}
Console::warning(zm_internal_errcode('E00035') . "传入的QQ号码({$qq})错误!");
return ' ';
} }
/** /**
@@ -31,11 +27,7 @@ class CQ
*/ */
public static function face($id): string public static function face($id): string
{ {
if (is_numeric($id)) { return self::buildCQ('face', ['id' => $id]);
return '[CQ:face,id=' . $id . ']';
}
Console::warning(zm_internal_errcode('E00035') . "传入的face id({$id})错误!");
return ' ';
} }
/** /**
@@ -49,13 +41,13 @@ class CQ
*/ */
public static function image(string $file, bool $cache = true, bool $flash = false, bool $proxy = true, int $timeout = -1): string public static function image(string $file, bool $cache = true, bool $flash = false, bool $proxy = true, int $timeout = -1): string
{ {
return $optional_values = [
'[CQ:image,file=' . self::encode($file, true) . 'cache' => !$cache ? 'cache=0' : '',
(!$cache ? ',cache=0' : '') . 'flash' => $flash ? 'type=flash' : '',
($flash ? ',type=flash' : '') . 'proxy' => !$proxy ? 'proxy=false' : '',
(!$proxy ? ',proxy=false' : '') . 'timeout' => $timeout != -1 ? 'timeout=' . $timeout : '',
($timeout != -1 ? (',timeout=' . $timeout) : '') . ];
']'; return self::buildCQ('image', ['file' => $file], $optional_values);
} }
/** /**
@@ -69,13 +61,13 @@ class CQ
*/ */
public static function record(string $file, bool $magic = false, bool $cache = true, bool $proxy = true, int $timeout = -1): string public static function record(string $file, bool $magic = false, bool $cache = true, bool $proxy = true, int $timeout = -1): string
{ {
return $optional_values = [
'[CQ:record,file=' . self::encode($file, true) . 'magic' => $magic ? 'magic=true' : '',
($magic ? ',magic=1' : '') . 'cache' => !$cache ? 'cache=0' : '',
(!$cache ? ',cache=0' : '') . 'proxy' => !$proxy ? 'proxy=false' : '',
(!$proxy ? ',proxy=false' : '') . 'timeout' => $timeout != -1 ? 'timeout=' . $timeout : '',
($timeout != -1 ? (',timeout=' . $timeout) : '') . ];
']'; return self::buildCQ('record', ['file' => $file], $optional_values);
} }
/** /**
@@ -88,12 +80,12 @@ class CQ
*/ */
public static function video(string $file, bool $cache = true, bool $proxy = true, int $timeout = -1): string public static function video(string $file, bool $cache = true, bool $proxy = true, int $timeout = -1): string
{ {
return $optional_values = [
'[CQ:video,file=' . self::encode($file, true) . 'cache' => !$cache ? 'cache=0' : '',
(!$cache ? ',cache=0' : '') . 'proxy' => !$proxy ? 'proxy=false' : '',
(!$proxy ? ',proxy=false' : '') . 'timeout' => $timeout != -1 ? 'timeout=' . $timeout : '',
($timeout != -1 ? (',timeout=' . $timeout) : '') . ];
']'; return self::buildCQ('video', ['file' => $file], $optional_values);
} }
/** /**
@@ -132,7 +124,10 @@ class CQ
*/ */
public static function poke($type, $id, string $name = ''): string public static function poke($type, $id, string $name = ''): string
{ {
return "[CQ:poke,type={$type},id={$id}" . ($name != '' ? (',name=' . self::encode($name, true)) : '') . ']'; $optional_values = [
'name' => $name ? 'name=' . $name : '',
];
return self::buildCQ('poke', ['type' => $type, 'id' => $id], $optional_values);
} }
/** /**
@@ -142,7 +137,7 @@ class CQ
*/ */
public static function anonymous(int $ignore = 1): string public static function anonymous(int $ignore = 1): string
{ {
return '[CQ:anonymous' . ($ignore != 1 ? ',ignore=0' : '') . ']'; return self::buildCQ('anonymous', [], ['ignore' => $ignore != 1 ? 'ignore=0' : '']);
} }
/** /**
@@ -155,17 +150,11 @@ class CQ
*/ */
public static function share(string $url, string $title, ?string $content = null, ?string $image = null): string public static function share(string $url, string $title, ?string $content = null, ?string $image = null): string
{ {
if ($content === null) { $optional_values = [
$c = ''; 'content' => $content ? 'content=' . self::encode($content, true) : '',
} else { 'image' => $image ? 'image=' . self::encode($image, true) : '',
$c = ',content=' . self::encode($content, true); ];
} return self::buildCQ('share', ['url' => $url, 'title' => $title], $optional_values);
if ($image === null) {
$i = '';
} else {
$i = ',image=' . self::encode($image, true);
}
return '[CQ:share,url=' . self::encode($url, true) . ',title=' . self::encode($title, true) . $c . $i . ']';
} }
/** /**
@@ -176,7 +165,7 @@ class CQ
*/ */
public static function contact($type, $id): string public static function contact($type, $id): string
{ {
return "[CQ:contact,type={$type},id={$id}]"; return self::buildCQ('contact', ['type' => $type, 'id' => $id]);
} }
/** /**
@@ -189,12 +178,11 @@ class CQ
*/ */
public static function location($lat, $lon, string $title = '', string $content = ''): string public static function location($lat, $lon, string $title = '', string $content = ''): string
{ {
return '[CQ:location' . $optional_values = [
',lat=' . self::encode((string) $lat, true) . 'title' => $title ? 'title=' . self::encode($title, true) : '',
',lon=' . self::encode((string) $lon, true) . 'content' => $content ? 'content=' . self::encode($content, true) : '',
($title != '' ? (',title=' . self::encode($title, true)) : '') . ];
($content != '' ? (',content=' . self::encode($content, true)) : '') . return self::buildCQ('location', ['lat' => $lat, 'lon' => $lon], $optional_values);
']';
} }
/** /**
@@ -216,26 +204,17 @@ class CQ
case 'qq': case 'qq':
case '163': case '163':
case 'xiami': case 'xiami':
return "[CQ:music,type={$type},id={$id_or_url}]"; return self::buildCQ('music', ['type' => $type, 'id' => $id_or_url]);
case 'custom': case 'custom':
if ($title === null || $audio === null) { if ($title === null || $audio === null) {
Console::warning(zm_internal_errcode('E00035') . '传入CQ码实例的标题和音频链接不能为空'); Console::warning(zm_internal_errcode('E00035') . '传入CQ码实例的标题和音频链接不能为空');
return ' '; return ' ';
} }
if ($content === null) { $optional_values = [
$c = ''; 'content' => $content ? 'content=' . self::encode($content, true) : '',
} else { 'image' => $image ? 'image=' . self::encode($image, true) : '',
$c = ',content=' . self::encode($content, true); ];
} return self::buildCQ('music', ['type' => 'custom', 'url' => $id_or_url, 'audio' => $audio, 'title' => $title], $optional_values);
if ($image === null) {
$i = '';
} else {
$i = ',image=' . self::encode($image, true);
}
return '[CQ:music,type=custom,url=' .
self::encode($id_or_url, true) .
',audio=' . self::encode($audio, true) . ',title=' . self::encode($title, true) . $c . $i .
']';
default: default:
Console::warning(zm_internal_errcode('E00035') . "传入的music type({$type})错误!"); Console::warning(zm_internal_errcode('E00035') . "传入的music type({$type})错误!");
return ' '; return ' ';
@@ -249,7 +228,7 @@ class CQ
*/ */
public static function forward($id): string public static function forward($id): string
{ {
return '[CQ:forward,id=' . self::encode((string) $id) . ']'; return self::buildCQ('forward', ['id' => $id]);
} }
/** /**
@@ -257,15 +236,15 @@ class CQ
* 特殊说明: 需要使用单独的API /send_group_forward_msg 发送, 并且由于消息段较为复杂, 仅支持Array形式入参。 * 特殊说明: 需要使用单独的API /send_group_forward_msg 发送, 并且由于消息段较为复杂, 仅支持Array形式入参。
* 如果引用消息和自定义消息同时出现, 实际查看顺序将取消息段顺序。 * 如果引用消息和自定义消息同时出现, 实际查看顺序将取消息段顺序。
* 另外按 CQHTTP 文档说明, data 应全为字符串, 但由于需要接收message 类型的消息, 所以 仅限此Type的content字段 支持Array套娃 * 另外按 CQHTTP 文档说明, data 应全为字符串, 但由于需要接收message 类型的消息, 所以 仅限此Type的content字段 支持Array套娃
* @deprecated 这个不推荐使用,因为 go-cqhttp 官方没有对其提供CQ码模式相关支持仅支持Array模式发送
* @param int|string $user_id 转发消息id * @param int|string $user_id 转发消息id
* @param string $nickname 发送者显示名字 * @param string $nickname 发送者显示名字
* @param string $content 具体消息 * @param string $content 具体消息
* @return string CQ码 * @return string CQ码
* @deprecated 这个不推荐使用,因为 go-cqhttp 官方没有对其提供CQ码模式相关支持仅支持Array模式发送
*/ */
public static function node($user_id, string $nickname, string $content): string public static function node($user_id, string $nickname, string $content): string
{ {
return "[CQ:node,user_id={$user_id},nickname=" . self::encode($nickname, true) . ',content=' . self::encode($content, true) . ']'; return self::buildCQ('node', ['user_id' => $user_id, 'nickname' => $nickname, 'content' => $content]);
} }
/** /**
@@ -275,7 +254,7 @@ class CQ
*/ */
public static function xml(string $data): string public static function xml(string $data): string
{ {
return '[CQ:xml,data=' . self::encode($data, true) . ']'; return self::buildCQ('xml', ['data' => $data]);
} }
/** /**
@@ -286,7 +265,7 @@ class CQ
*/ */
public static function json(string $data, int $resid = 0): string public static function json(string $data, int $resid = 0): string
{ {
return '[CQ:json,data=' . self::encode($data, true) . ',resid=' . $resid . ']'; return self::buildCQ('json', ['data' => $data, 'resid' => $resid]);
} }
/** /**
@@ -297,12 +276,7 @@ class CQ
*/ */
public static function _custom(string $type_name, array $params): string public static function _custom(string $type_name, array $params): string
{ {
$code = '[CQ:' . $type_name; return self::buildCQ($type_name, $params);
foreach ($params as $k => $v) {
$code .= ',' . $k . '=' . self::escape($v, true);
}
$code .= ']';
return $code;
} }
/** /**
@@ -313,7 +287,7 @@ class CQ
*/ */
public static function decode($msg, bool $is_content = false): string public static function decode($msg, bool $is_content = false): string
{ {
$msg = str_replace(['&', '[', ']'], ['&', '[', ']'], $msg); $msg = str_replace(['&', '[', ']'], ['&', '[', ']'], (string) $msg);
if ($is_content) { if ($is_content) {
$msg = str_replace(',', ',', $msg); $msg = str_replace(',', ',', $msg);
} }
@@ -327,7 +301,7 @@ class CQ
*/ */
public static function replace($str): string public static function replace($str): string
{ {
$str = str_replace('{{', '[', $str); $str = str_replace('{{', '[', (string) $str);
return str_replace('}}', ']', $str); return str_replace('}}', ']', $str);
} }
@@ -339,7 +313,7 @@ class CQ
*/ */
public static function escape($msg, bool $is_content = false): string public static function escape($msg, bool $is_content = false): string
{ {
$msg = str_replace(['&', '[', ']'], ['&', '[', ']'], $msg); $msg = str_replace(['&', '[', ']'], ['&', '[', ']'], (string) $msg);
if ($is_content) { if ($is_content) {
$msg = str_replace(',', ',', $msg); $msg = str_replace(',', ',', $msg);
} }
@@ -354,7 +328,7 @@ class CQ
*/ */
public static function encode($msg, bool $is_content = false): string public static function encode($msg, bool $is_content = false): string
{ {
$msg = str_replace(['&', '[', ']'], ['&', '[', ']'], strval($msg)); $msg = str_replace(['&', '[', ']'], ['&', '[', ']'], (string) $msg);
if ($is_content) { if ($is_content) {
$msg = str_replace(',', ',', $msg); $msg = str_replace(',', ',', $msg);
} }
@@ -439,4 +413,22 @@ class CQ
} }
return $cqs; return $cqs;
} }
private static function buildCQ(string $cq, array $array, array $optional_values = []): string
{
$str = '[CQ:' . $cq;
foreach ($array as $k => $v) {
if ($v === null) {
Console::warning('param ' . $k . ' cannot be set with null, empty CQ will returned!');
return ' ';
}
$str .= ',' . $k . '=' . self::encode($v);
}
foreach ($optional_values as $v) {
if ($v !== '') {
$str .= ',' . $v;
}
}
return $str . ']';
}
} }