/**
* WP_oEmbed_Controller class, used to provide an oEmbed endpoint.
*
* @package WordPress
* @subpackage Embeds
* @since 4.4.0
*/
/**
* oEmbed API endpoint controller.
*
* Registers the REST API route and delivers the response data.
* The output format (XML or JSON) is handled by the REST API.
*
* @since 4.4.0
*/
#[AllowDynamicProperties]
final class WP_oEmbed_Controller {
/**
* Register the oEmbed REST API route.
*
* @since 4.4.0
*/
public function register_routes() {
/**
* Filters the maxwidth oEmbed parameter.
*
* @since 4.4.0
*
* @param int $maxwidth Maximum allowed width. Default 600.
*/
$maxwidth = apply_filters( 'oembed_default_width', 600 );
register_rest_route(
'oembed/1.0',
'/embed',
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_item' ),
'permission_callback' => '__return_true',
'args' => array(
'url' => array(
'description' => __( 'The URL of the resource for which to fetch oEmbed data.' ),
'required' => true,
'type' => 'string',
'format' => 'uri',
),
'format' => array(
'default' => 'json',
'sanitize_callback' => 'wp_oembed_ensure_format',
),
'maxwidth' => array(
'default' => $maxwidth,
'sanitize_callback' => 'absint',
),
),
),
)
);
register_rest_route(
'oembed/1.0',
'/proxy',
array(
array(
'methods' => WP_REST_Server::READABLE,
'callback' => array( $this, 'get_proxy_item' ),
'permission_callback' => array( $this, 'get_proxy_item_permissions_check' ),
'args' => array(
'url' => array(
'description' => __( 'The URL of the resource for which to fetch oEmbed data.' ),
'required' => true,
'type' => 'string',
'format' => 'uri',
),
'format' => array(
'description' => __( 'The oEmbed format to use.' ),
'type' => 'string',
'default' => 'json',
'enum' => array(
'json',
'xml',
),
),
'maxwidth' => array(
'description' => __( 'The maximum width of the embed frame in pixels.' ),
'type' => 'integer',
'default' => $maxwidth,
'sanitize_callback' => 'absint',
),
'maxheight' => array(
'description' => __( 'The maximum height of the embed frame in pixels.' ),
'type' => 'integer',
'sanitize_callback' => 'absint',
),
'discover' => array(
'description' => __( 'Whether to perform an oEmbed discovery request for unsanctioned providers.' ),
'type' => 'boolean',
'default' => true,
),
),
),
)
);
}
/**
* Callback for the embed API endpoint.
*
* Returns the JSON object for the post.
*
* @since 4.4.0
*
* @param WP_REST_Request $request Full data about the request.
* @return array|WP_Error oEmbed response data or WP_Error on failure.
*/
public function get_item( $request ) {
$post_id = url_to_postid( $request['url'] );
/**
* Filters the determined post ID.
*
* @since 4.4.0
*
* @param int $post_id The post ID.
* @param string $url The requested URL.
*/
$post_id = apply_filters( 'oembed_request_post_id', $post_id, $request['url'] );
$data = get_oembed_response_data( $post_id, $request['maxwidth'] );
if ( ! $data ) {
return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) );
}
return $data;
}
/**
* Checks if current user can make a proxy oEmbed request.
*
* @since 4.8.0
*
* @return true|WP_Error True if the request has read access, WP_Error object otherwise.
*/
public function get_proxy_item_permissions_check() {
if ( ! current_user_can( 'edit_posts' ) ) {
return new WP_Error( 'rest_forbidden', __( 'Sorry, you are not allowed to make proxied oEmbed requests.' ), array( 'status' => rest_authorization_required_code() ) );
}
return true;
}
/**
* Callback for the proxy API endpoint.
*
* Returns the JSON object for the proxied item.
*
* @since 4.8.0
*
* @see WP_oEmbed::get_html()
* @global WP_Embed $wp_embed WordPress Embed object.
* @global WP_Scripts $wp_scripts
*
* @param WP_REST_Request $request Full data about the request.
* @return object|WP_Error oEmbed response data or WP_Error on failure.
*/
public function get_proxy_item( $request ) {
global $wp_embed, $wp_scripts;
$args = $request->get_params();
// Serve oEmbed data from cache if set.
unset( $args['_wpnonce'] );
$cache_key = 'oembed_' . md5( serialize( $args ) );
$data = get_transient( $cache_key );
if ( ! empty( $data ) ) {
return $data;
}
$url = $request['url'];
unset( $args['url'] );
// Copy maxwidth/maxheight to width/height since WP_oEmbed::fetch() uses these arg names.
if ( isset( $args['maxwidth'] ) ) {
$args['width'] = $args['maxwidth'];
}
if ( isset( $args['maxheight'] ) ) {
$args['height'] = $args['maxheight'];
}
// Short-circuit process for URLs belonging to the current site.
$data = get_oembed_response_data_for_url( $url, $args );
if ( $data ) {
return $data;
}
$data = _wp_oembed_get_object()->get_data( $url, $args );
if ( false === $data ) {
// Try using a classic embed, instead.
/* @var WP_Embed $wp_embed */
$html = $wp_embed->get_embed_handler_html( $args, $url );
if ( $html ) {
// Check if any scripts were enqueued by the shortcode, and include them in the response.
$enqueued_scripts = array();
foreach ( $wp_scripts->queue as $script ) {
$enqueued_scripts[] = $wp_scripts->registered[ $script ]->src;
}
return (object) array(
'provider_name' => __( 'Embed Handler' ),
'html' => $html,
'scripts' => $enqueued_scripts,
);
}
return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) );
}
/** This filter is documented in wp-includes/class-wp-oembed.php */
$data->html = apply_filters( 'oembed_result', _wp_oembed_get_object()->data2html( (object) $data, $url ), $url, $args );
/**
* Filters the oEmbed TTL value (time to live).
*
* Similar to the {@see 'oembed_ttl'} filter, but for the REST API
* oEmbed proxy endpoint.
*
* @since 4.8.0
*
* @param int $time Time to live (in seconds).
* @param string $url The attempted embed URL.
* @param array $args An array of embed request arguments.
*/
$ttl = apply_filters( 'rest_oembed_ttl', DAY_IN_SECONDS, $url, $args );
set_transient( $cache_key, $data, $ttl );
return $data;
}
}
Gembet Betting 让每一次下注都充满乐趣与激情 – tejas-apartment.teson.xyz
Skip to content
欢迎来到Gembet博彩的世界,这里充满了乐趣、刺激和无限的机会。在这个平台上,用户可以体验到最先进的博彩技术和丰富的游戏玩法。无论你是经验丰富的玩家还是刚刚入门的新手,Gembet都能满足你的需求。想要开始你的博彩之旅?请访问 Gembet Betting Gembet 登录。
Gembet平台概述
Gembet是一个在线博彩平台,致力于为用户提供丰富多彩的游戏体验。该平台涵盖了体育博彩、彩票、真人娱乐场、电子游戏等多种娱乐选择。无论你感兴趣的是哪个领域,Gembet都拥有一系列的游戏供你选择,确保每一位用户都能找到最适合自己的博彩方式。
平台的优势
- 多样化的游戏选择:Gembet提供多种博彩类型,从传统体育赛事到热门电子游戏,用户可以自由选择,满足不同偏好的需求。
- 安全可靠:用户的资金和个人信息安全是Gembet的首要任务。平台采用最新的加密技术来保护用户数据,确保交易的安全性。
- 优质的用户体验:简洁直观的界面设计让用户能够轻松导航,快速找到所需的服务和游戏。
- 24/7客服支持:Gembet的客户支持团队全天候待命,随时为用户解决任何问题,确保良好的用户体验。
如何注册及使用Gembet
如果你想加入Gembet并开始下注,注册过程非常简单。首先,访问Gembet官网,点击注册按钮,填写必要的信息,包括用户名、密码和电子邮件地址。完成注册后,用户将收到一封确认邮件,点击邮件中的链接即可激活账户。
如何进行存款和取款
在Gembet上进行存款或取款是非常简单的。平台支持多种支付方式,包括信用卡、电子钱包和银行转账。用户只需登录账户,前往“存款”或“取款”页面,选择适合自己的支付方式,输入相关信息即可完成交易。
如何进行博彩下注
一旦账户资金到位,用户就可以开始下注。在Gembet首页,用户可以浏览当前的体育赛事和游戏。选择喜欢的比赛或游戏后,用户可以查看赔率,输入下注金额,并确认下注。Gembet提供实时赔率更新,让用户能够随时掌握赛事动态。
奖励与促销活动
为了吸引新用户并奖励忠实客户,Gembet定期推出各种促销活动,包括注册优惠、体验金、现金返还等。用户可以通过参与这些活动,获得额外的博彩资金,提升他们的游戏体验。保持关注Gembet的官方渠道,及时获取最新的促销信息。
负责任的博彩
Gembet鼓励所有用户以负责任的方式进行博彩。平台提供多项工具,帮助用户管理他们的博彩活动,包括存款限额、时间限制和自我排除功能。这些工具旨在帮助用户控制他们的博彩行为,确保博彩活动始终保持在娱乐的范围内。
总结
总的来说,Gembet博彩平台是一个安全、可靠且充满乐趣的在线博彩选择。无论你是想要享受紧张刺激的体育赛事,还是喜欢与真人荷官互动的赌场游戏,Gembet都能满足你的需求。加上出色的客服支持和丰厚的奖励政策,Gembet无疑是在线博彩爱好者的首选平台。不妨今天就注册并体验一下Gembet的魅力吧!