bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
<?php
/**
 * Audience builder
 */
 
namespace JPush\Model;
 
use InvalidArgumentException;
 
function audience(/* args */) {
    $audience = array();
 
    foreach(func_get_args() as $arr) {
        if (!is_array($arr)) {
            throw new InvalidArgumentException("audience's args must be a array");
        }
        $audience = array_merge($audience, $arr);
    }
 
    return $audience;
}
 
function tag($tags)
{
    if (!is_array($tags)) {
        throw new InvalidArgumentException("tags must be a array");
    }
    $num = count($tags);
    if ($num < 1) {
        throw new InvalidArgumentException("Length of the tags(Array) must be greater than 0");
    }
    for ($i=0; $i<count($tags); $i++) {
        if (!is_string($tags[$i])) {
            throw new InvalidArgumentException("Invalid tags[" . $i . "], tags[" . $i . "] must be a string");
        }
    }
    return array("tag" => $tags);
}
 
function tag_and($tags_and)
{
    if (!is_array($tags_and)) {
        throw new InvalidArgumentException("tags_and must be a array");
    }
    $num = count($tags_and);
    if ($num < 1) {
        throw new InvalidArgumentException("Length of the tags_and(Array) must be greater than 0");
    }
    for ($i=0; $i<count($tags_and); $i++) {
        if (!is_string($tags_and[$i])) {
            throw new InvalidArgumentException("Invalid tags_and[" . $i . "], tags_and[" . $i . "] must be a string");
        }
    }
    return array("tag_and" => $tags_and);
}
 
function alias($alias)
{
    if (!is_array($alias)) {
        throw new InvalidArgumentException("alias must be a array");
    }
    $num = count($alias);
    if ($num < 1) {
        throw new InvalidArgumentException("Length of the alias(Array) must be greater than 0");
    }
    for ($i=0; $i<count($alias); $i++) {
        if (!is_string($alias[$i])) {
            throw new InvalidArgumentException("Invalid alias[" . $i . "], alias[" . $i . "] must be a string");
        }
    }
    return array("alias" => $alias);
}
 
function registration_id($registration_id)
{
    if (!is_array($registration_id)) {
        throw new InvalidArgumentException("registration_id must be a array");
    }
    $num = count($registration_id);
    if ($num < 1) {
        throw new InvalidArgumentException("Length of the registration_id(Array) must be greater than 0");
    }
    for ($i=0; $i<count($registration_id); $i++) {
        if (!is_string($registration_id[$i])) {
            throw new InvalidArgumentException("Invalid registration_id[" . $i . "], registration_id[" . $i . "] must be a string");
        }
    }
    return array("registration_id" => $registration_id);
}