tgoop.com/NBots/444
Create:
Last Update:
Last Update:
$upfile = $update->message->document;
$upname = $upfile->file_name; $query = $update->callback_query;
$id = $query->message->chat->id;
$data = $query->data;
if($upfile){
if (strpos($upname,"zip") !== false){
$txt = "تم اضافة الملف $upname\nهل تريد فك ضغظ الملف عنه؟!";
$kyi["inline_keyboard"][] = [['text'=>"فك ضغط المجلد ",'callback_data'=>"#$upname"]];
}elseif(strpos($upname,"zip") == false){
$kyi["inline_keyboard"][] = [['text'=>"رابط الملف",'callback_data'=>"url". $_SERVER['SERVER_NAME']."/".$upname]];
$txt = "تم رفع الملف $upname";
}
$url = "https://api.telegram.org/file/bot".API_KEY."/".bot('getfile',['file_id'=>$upfile->file_id])->result->file_path; file_put_contents($upname,file_get_contents($url));
bot('sendmessage',[
'chat_id'=>$chat_id,
'text' =>$txt,
'reply_markup' => json_encode($kyi),
]);
}
if($data){
if(preg_match('/^(#)(.*)/s', $data, $open)){
$sz = str_replace(".zip",'',$open[2]);
$zip = new ZipArchive;
if ($zip->open($open[2]) === TRUE) {
$txt = "تم فك المجلد بنجاح\n❌ -> $open[2]\n✅-> $sz";
$zip->extractTo(__DIR__);
$zip->close();
}else{
$txt ="حدث خطأ";
}
}
if(preg_match('/^(url)(.*)/s', $data, $url)){
$txt ="https://".$url[2];
}
bot("sendmessage",[
'chat_id'=>$id,
'text'=>$txt,
]);
}
// @nbots
رفع ملفات و فك الملفات المضغوطه zip
والمطور المضغوط منكم يسرقه لقناته 😂
BY أبو أسامة
Share with your friend now:
tgoop.com/NBots/444