-
Notifications
You must be signed in to change notification settings - Fork 38
/
functions.php
214 lines (148 loc) · 5.11 KB
/
functions.php
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! function_exists( 'wp_weixin_is_wechat' ) ) {
function wp_weixin_is_wechat() {
return WP_Weixin::is_wechat_mobile();
}
}
if ( ! function_exists( 'wp_weixin_ajax_safe' ) ) {
function wp_weixin_ajax_safe() {
WP_Weixin::$ajax_safe = true;
}
}
if ( ! function_exists( 'wp_weixin_get_user_by_openid' ) ) {
function wp_weixin_get_user_by_openid( $openid ) {
return WP_Weixin::get_user_by_openid( $openid );
}
}
if ( ! function_exists( 'wp_weixin_get_user_by_unionid' ) ) {
function wp_weixin_get_user_by_unionid( $unionid, $blog_id = false ) {
if ( false === $blog_id ) {
$blog_id = get_current_blog_id();
}
return WP_Weixin::get_users_by_unionid( $unionid, $blog_id );
}
}
if ( ! function_exists( 'is_ajax' ) ) {
function is_ajax() {
return defined( 'DOING_AJAX' );
}
}
if ( ! function_exists( 'wp_weixin_get_wechat' ) ) {
function wp_weixin_get_wechat() {
return WP_Weixin_Wechat_Singleton::get_wechat();
}
}
if ( ! function_exists( 'wp_weixin_get_options' ) ) {
function wp_weixin_get_options() {
return WP_Weixin_Settings::get_options();
}
}
if ( ! function_exists( 'wp_weixin_get_option' ) ) {
function wp_weixin_get_option( $key ) {
return WP_Weixin_Settings::get_option( $key );
}
}
if ( ! function_exists( 'wp_weixin_wpml_switch_lang' ) ) {
function wp_weixin_wpml_switch_lang( $force = true ) {
return WP_Weixin::switch_language( $force );
}
}
if ( ! function_exists( 'wp_weixin_get_signed_package' ) ) {
function wp_weixin_get_signed_package() {
$wechat = wp_weixin_get_wechat();
return $wechat->get_signed_package();
}
}
if ( ! function_exists( 'wp_weixin_get_user_wechat_info' ) ) {
function wp_weixin_get_user_wechat_info( $user_id = false, $output = false ) {
$wp_weixin = new WP_Weixin( wp_weixin_get_wechat() );
if ( $output ) {
$user = get_user_by( 'ID', absint( $user_id ) );
$wp_weixin->user_profile_wechat_info( $user, true );
} else {
return $wp_weixin->get_user_wechat_info( $user_id );
}
}
}
if ( ! function_exists( 'wp_weixin_get_user_wechat_openid' ) ) {
function wp_weixin_get_user_wechat_openid( $user_id = false ) {
$user_id = ( $user_id ) ? absint( $user_id ) : get_current_user_id();
$auth_blog_id = ( $user_id ) ? apply_filters( 'wp_weixin_ms_auth_blog_id', 1 ) : 1;
wp_cache_delete( $user_id, 'user_meta' );
$openid = ( $user_id ) ? get_user_meta( $user_id, 'wx_openid-' . $auth_blog_id, true ) : false;
return $openid;
}
}
if ( ! function_exists( 'wp_weixin_get_auth_link' ) ) {
function wp_weixin_get_auth_link( $output = false, $target = '', $class = '' ) {
$link = '';
if (
wp_weixin_get_option( 'enabled' ) &&
wp_weixin_get_option( 'enable_auth' ) &&
! wp_weixin_is_wechat()
) {
$wp_weixin_auth = new WP_Weixin_Auth( wp_weixin_get_wechat() );
$link = $wp_weixin_auth->auth_link( $output, $class, $target );
}
return $link;
}
}
if ( ! function_exists( 'wp_weixin_get_bind_link' ) ) {
function wp_weixin_get_bind_link( $output = false, $target = '_blank' ) {
$link = '';
if (
wp_weixin_get_option( 'enabled' ) &&
wp_weixin_get_option( 'enable_auth' ) &&
! wp_weixin_is_wechat()
) {
$wechat = wp_weixin_get_wechat();
$wp_weixin_auth = new WP_Weixin_Auth( $wechat );
$wp_weixin_bind = new WP_Weixin_Bind( $wechat, $wp_weixin_auth );
$user = wp_get_current_user();
wp_cache_delete( $user->ID, 'user_meta' );
$auth_blog_id = apply_filters( 'wp_weixin_ms_auth_blog_id', 1 );
$wechat_openid = get_user_meta( $user->ID, 'wx_openid-' . $auth_blog_id, true );
$link = $wp_weixin_bind->bind_link( $user, $wechat_openid, '', $output );
}
return $link;
}
}
if ( ! function_exists( 'wp_weixin_unbind' ) ) {
function wp_weixin_unbind( $user_id, $open_id = '' ) {
$unbound = false;
if ( wp_weixin_get_option( 'enabled' ) && wp_weixin_get_option( 'enable_auth' ) ) {
$wechat = wp_weixin_get_wechat();
$wp_weixin_auth = new WP_Weixin_Auth( $wechat );
$wp_weixin_bind = new WP_Weixin_Bind( $wechat, $wp_weixin_auth );
if ( empty( $openid ) ) {
wp_cache_delete( $user_id, 'user_meta' );
$auth_blog_id = apply_filters( 'wp_weixin_ms_auth_blog_id', 1 );
$wechat_openid = get_user_meta( $user_id, 'wx_openid-' . $auth_blog_id, true );
$openid = $wechat_openid;
}
$unbound = $wp_weixin_bind->process_unbind( false, $user_id, $openid );
}
return $unbound;
}
}
if ( ! function_exists( 'wp_weixin_bind' ) ) {
function wp_weixin_bind( $user_id, $openid ) {
$bound = false;
if ( wp_weixin_get_option( 'enabled' ) && wp_weixin_get_option( 'enable_auth' ) ) {
$wechat = wp_weixin_get_wechat();
$wp_weixin_auth = new WP_Weixin_Auth( $wechat );
$wp_weixin_bind = new WP_Weixin_Bind( $wechat, $wp_weixin_auth );
$unbound = $wp_weixin_bind->process_bind( $user_id, $openid );
}
return $bound;
}
}
if ( ! function_exists( 'wp_weixin_is_follower' ) ) {
function wp_weixin_is_follower( $user_id ) {
$follower_meta = get_user_meta( $user_id, 'wx_follower', true );
return (bool) $follower_meta;
}
}