function cinematy_do_sync() {
$apiUrl = "https://cinematy.aflamicose.com/api.php";
$response = @file_get_contents($apiUrl);
if (!$response) {
echo '
فشل الاتصال برابط الـ API الخاص بسينماتي.
';
return;
}
$data = json_decode($response, true);
if (!isset($data['movies']) || empty($data['movies'])) {
echo 'لا توجد أفلام متاح سحبها حالياً.
';
return;
}
$movies = $data['movies'];
$count = 0;
foreach ($movies as $slug => $movie) {
$title = sanitize_text_field($movie['title']);
$story = wp_kses_post($movie['story']);
$categories = isset($movie['categories']) ? $movie['categories'] : [$movie['category'] ?? 'أفلام أجنبية'];
$posterUrl = esc_url_raw($movie['poster']);
// رابط التضمين الأساسي الخاص بموقع سينماتي لهذا الفيلم
$cinematyEmbedUrl = "https://cinematy.aflamicose.com/embed.php?id=" . urlencode($slug);
$existing_post = get_page_by_path($slug, OBJECT, 'post');
if (!$existing_post) {
// بناء صندوق العرض بحيث يكون السيرفر الأول هو رابط موقعك سينماتي (مع إمكانية عرض باقي السيرفرات إن وجدت)
$embed_code_html = '';
$embed_code_html .= '';
$embed_code_html .= '
سيرفرات ومشاهدة الفيلم: ';
$embed_code_html .= '
';
// السيرفر الأساسي (سينماتي)
$embed_code_html .= 'سينماتي (الرئيسي) ';
// السيرفرات الإضافية إن وجدت في ملف الـ JSON
if (!empty($movie['servers']) && is_array($movie['servers'])) {
foreach ($movie['servers'] as $srv) {
$srvName = esc_html($srv['name']);
$srvUrl = esc_url($srv['url']);
$embed_code_html .= '' . $srvName . ' ';
}
}
$embed_code_html .= '
';
// مشغل الفيديو الافتراضي (يبدأ برابط سينماتي embed.php)
$embed_code_html .= '
';
$embed_code_html .= '';
$embed_code_html .= '
';
$full_content = $story . "\n\n" . $embed_code_html;
$post_data = array(
'post_title' => $title,
'post_content' => $full_content,
'post_status' => 'publish',
'post_type' => 'post',
'post_name' => $slug
);
$post_id = wp_insert_post($post_data);
if ($post_id && !is_wp_error($post_id)) {
$count++;
$cat_ids = array();
foreach ($categories as $cat_name) {
$term = term_exists($cat_name, 'category');
if (!$term) {
$term = wp_insert_term($cat_name, 'category');
}
if (!is_wp_error($term)) {
$cat_ids[] = (int) $term['term_id'];
}
}
if (!empty($cat_ids)) {
wp_set_post_categories($post_id, $cat_ids);
}
if (!empty($posterUrl)) {
cinematy_set_featured_image($posterUrl, $post_id, $title);
}
update_post_meta($post_id, 'cinematy_servers', $movie['servers']);
update_post_meta($post_id, 'cinematy_rate', $movie['rate']);
update_post_meta($post_id, 'cinematy_year', $movie['year']);
}
}
}
echo '✔ تمت المزامنة بنجاح! تم استيراد ' . $count . ' فيلم برابط مشغل سينماتي الأساسي.
';
}
الإنجليزية – 18 فليكساوي
https://18.flixawy.xyz
Wed, 02 Sep 2026 07:58:51 +0000
ar
hourly
1
https://wordpress.org/?v=7.1
-
Confessions of a Sinful Nun
https://18.flixawy.xyz/confessions-of-a-sinful-nun/
https://18.flixawy.xyz/confessions-of-a-sinful-nun/#respond
Wed, 02 Sep 2026 04:56:23 +0000
https://18.flixawy.xyz/confessions-of-a-sinful-nun/
Devout Sister Charlotte lives a peaceful life with her other sisters. Unfortunately, everything changes when Sister Lily arrives at the convent. Sister Charlotte is suddenly seduced by the temptation of another woman, shattering everything she believes in. Meanwhile, Mother Superior will have to deal with other forbidden behavior around the convent.
<div style=”position:relative;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:8px;”><iframe src=”https://cinematy.aflamicose.com/embed.php?id=confessions-of-a-sinful-nun” style=”position:absolute;top:0;left:0;width:100%;height:100%;border:0;” allowfullscreen scrolling=”no”></iframe></div>
]]>
https://18.flixawy.xyz/confessions-of-a-sinful-nun/feed/
0