तो आइडिया सेट इन्टरवल और सॉकेट्स के पीछे है, सेटइंटरवल को ज्यादातर ब्राउज़र में सपोर्ट किया जाता है और जावास्क्रिप्ट WbsocketApi को लगभग हर ब्रोसर में सपोर्ट किया जाता है।
संक्षिप्त अवलोकन: setInterval () - यह फ़ंक्शन व्यवहार तब होता है जब आपका कंप्यूटर नींद / निलंबित / हाइबरनेट मोड पर होता है और इसे रोका जाता है और जब आप जागृत मोड पर होते हैं तो यह स्वयं को फिर से शुरू करता है।
निम्नलिखित कोड निम्न पर, पहले (शायद एक ही समय पर) करता है, लेकिन यह कनेक्शनों को सुनने के लिए php server_socket शुरू करता है,
जावास्क्रिप्ट से वेबसोकेट एपि हर 2 सेकंड में यूनिक्स टाइमस्टैम्प मिलीसेकंड में वर्तमान टाइमस्टैम्प भेजता है आपके पास 1 सेकंड हो सकता है यह आपके ऊपर है।
उसके बाद php सर्वर सॉकेट इस समय हो रहा है और जाँच करता है कि क्या इसकी तुलना करने के लिए पिछली बार की तरह कुछ भी है, जब कोड पहली त्वरित है php के पास पिछले समय की तरह कुछ भी नहीं है जो इसे उस समय की तुलना करने के लिए है जिसे जावास्क्रिप्ट वेबसैट से भेजा गया था, इसलिए php कुछ भी नहीं करता है लेकिन इस समय को 'prev_time' नामक सत्र में बचाता है और जावास्क्रिप्ट सॉकेट से दूसरी बार डेटा प्राप्त होने की प्रतीक्षा करता है, इसलिए यहां दूसरा चक्र शुरू होता है। जब javascript WebsocketApi से php सर्वर सॉकेट नए समय के डेटा की जाँच करता है, तो यह इस नए प्राप्त समय डेटा की तुलना करने के लिए पिछली बार की तरह कुछ भी होता है, इसका मतलब है कि अगर php चेक अगर 'prev_time' नामक सत्र मौजूद है, जैसा कि हम दूसरे चक्र php में हैं। यह मौजूद है, यह इसका मूल्य है और निम्नलिखित करता है$diff = $new_time - $prev_time
, $ अंतर 2 सेकंड या 2000 मिलिसेकंड होगा क्योंकि याद रखें कि हमारा सेटइंटरवल चक्र हर 2 सेकंड और समय प्रारूप में होता है जो हम भेज रहे हैं।
if($diff<3000)
अगर यह पता है कि उपयोगकर्ता सक्रिय है, तो फ़र्क 3000 से कम होने पर php जाँचता है, फिर से आप चाहें तो इस सेकंड में फेरबदल कर सकते हैं, मैं 3000 चुनता हूँ क्योंकि नेटवर्क में संभावित विलंबता लगभग असंभव है लेकिन आप जानते हैं कि मैं हमेशा सतर्क रहता हूँ जब यह नेटवर्क पर आता है, तो चलिए जारी रखते हैं, जब php निर्धारित करता है कि उपयोगकर्ता सक्रिय है php बस रीसेट करता है 'prev_time' सत्र जिसके मूल्य $new_time
को नव प्राप्त किया गया था और सिर्फ परीक्षण प्रयोजनों के लिए यह संदेश को वापस भेजता है जावास्क्रिप्ट सॉकेट,
लेकिन अगर $diff
यह 3000 से अधिक है, तो इसका मतलब है कि किसी चीज ने हमारे सेट को बाधित कर दिया है और केवल एक ही रास्ता है और ऐसा हो सकता है और मुझे लगता है कि आप पहले से ही जानते हैं कि मैं क्या कह रहा हूं, इसलिए else
( if($diff<3000)
) के तर्क में आप विशिष्ट सत्र को नष्ट करके उपयोगकर्ता को लॉगआउट कर सकते हैं और यदि आप पुनर्निर्देशित करना चाहते हैं आप कुछ पाठ को javacript सॉकेट में भेज सकते हैं और एक तर्क बना सकते हैं जो window.location = "/login"
पाठ के आधार पर निष्पादित करेगा , यही है यहां कोड है:
पहले यह जावास्क्रिप्ट को लोड करने के लिए index.html फ़ाइल है:
<html>
<body>
<div id="printer"></div>
<script src="javascript_client_socket.js"></script>
</body>
</html>
तो यह जावास्क्रिप्ट है यह वास्तव में खूबसूरती से कोडित नहीं है, लेकिन आप पढ़ सकते हैं टिप्पणी टिप्पणियाँ वे महत्वपूर्ण हैं:
var socket = new WebSocket('ws://localhost:34237'); // connecting to socket
// Open the socket
socket.onopen = function(event) { // detecting when connection is established
setInterval(function(){ //seting interval for 2 seconds
var date = new Date(); //grabing current date
var nowtime = Date.parse(date); // parisng it in miliseconds
var msg = 'I am the client.'; //jsut testing message
// Send an initial message
socket.send(nowtime); //sending the time to php socket
},2000);
};
// Listen for messages
socket.onmessage = function(event) { //print text which will be sent by php socket
console.log('php: ' + event.data);
};
// Listen for socket closes
socket.onclose = function(event) {
console.log('Client notified socket has closed', event);
};
अब यहाँ php कोड का एक हिस्सा है, चिंता न करें कि पूर्ण कोड भी है, लेकिन यह हिस्सा वास्तव में ऊपर बताई गई नौकरियों से है जो आपको अन्य कार्यों से भी मिलेंगे, लेकिन वे डिकोडिंग और जावास्क्रिप्ट सॉकेट्स के साथ काम करने के लिए हैं, इसलिए यह वास्तविक चीज़ सही है यहाँ पढ़ें टिप्पणियाँ वे महत्वपूर्ण हैं:
<?php
$decoded_data = unmask($data /* $data is actual data received from javascript socket */); //grabbing data and unmasking it | unmasking is for javascript sockets don't mind this
print("< ".$decoded_data."\n");
$response = strrev($decoded_data);
$jsTime = (int) $decoded_data; /* time sent by javascript in MILISECONDS IN UNIX FORMAT */
if (isset($_SESSION['prev_time'])) { /** check if we have stored previous time in the session */
$prev_time = (int) $_SESSION['prev_time']; /** grabbing the previous time from session */
$diff = $jsTime-$prev_time; /** getting the difference newly sent time and previous time by subtracting */
print("$jsTime - $prev_time = $diff"); /** printing the difference */
if($diff<3000){ /** checking if difference is less than 3 second if it is it means pc was not at sleep
*** you can manipulate and have for example 1 second = 1000ms */
socket_write($client,encode("You are active! your pc is awakend"));
$_SESSION['prev_time'] = $jsTime; /** saving newly sent time as previous time for future testing whcih will happen in two seconds in our case*/
}else { /** if it is more than 3 seconds it means that javascript setInterval function was paused and resumed after 3 seconds
** So it means that it was at sleep because when your PC is at sleep/suspended/hibernate mode setINterval gets pauesd */
socket_write($client,encode("You are not active! your pc is at sleep"));
$_SESSION['prev_time'] = $jsTime;
}
}else { /** if we have not saved the previous time in session save it */
$_SESSION['prev_time'] = $jsTime;
}
print_r($_SESSION);
?>
और यहाँ php का पूरा कोड है:
<?php
//Code by: Nabi KAZ <www.nabi.ir>
session_abort();
// set some variables
$host = "127.0.0.1";
$port = 34237;
date_default_timezone_set("UTC");
// don't timeout!
set_time_limit(0);
// create socket
$socket = socket_create(AF_INET, SOCK_STREAM, 0)or die("Could not create socket\n");
// bind socket to port
$result = socket_bind($socket, $host, $port)or die("Could not bind to socket\n");
// start listening for connections
$result = socket_listen($socket, 20)or die("Could not set up socket listener\n");
$flag_handshake = false;
$client = null;
do {
if (!$client) {
// accept incoming connections
// client another socket to handle communication
$client = socket_accept($socket)or die("Could not accept incoming connection\n");
}
$bytes = @socket_recv($client, $data, 2048, 0);
if ($flag_handshake == false) {
if ((int)$bytes == 0)
continue;
//print("Handshaking headers from client: ".$data."\n");
if (handshake($client, $data, $socket)) {
$flag_handshake = true;
}
}
elseif($flag_handshake == true) {
/*
**** Main section for detectin sleep or not **
*/
if ($data != "") {
$decoded_data = unmask($data /* $data is actual data received from javascript socket */); //grabbing data and unmasking it | unmasking is for javascript sockets don't mind this
print("< ".$decoded_data."\n");
$response = strrev($decoded_data);
$jsTime = (int) $decoded_data; /* time sent by javascript in MILISECONDS IN UNIX FORMAT */
if (isset($_SESSION['prev_time'])) { /** check if we have stored previous time in the session */
$prev_time = (int) $_SESSION['prev_time']; /** grabbing the previous time from session */
$diff = $jsTime-$prev_time; /** getting the difference newly sent time and previous time by subtracting */
print("$jsTime - $prev_time = $diff"); /** printing the difference */
if($diff<3000){ /** checking if difference is less than 3 second if it is it means pc was not at sleep
*** you can manipulate and have for example 1 second = 1000ms */
socket_write($client,encode("You are active! your pc is awakend"));
$_SESSION['prev_time'] = $jsTime; /** saving newly sent time as previous time for future testing whcih will happen in two seconds in our case*/
}else { /** if it is more than 3 seconds it means that javascript setInterval function was paused and resumed after 3 seconds
** So it means that it was at sleep because when your PC is at sleep/suspended/hibernate mode setINterval gets pauesd */
socket_write($client,encode("You are not active! your pc is at sleep"));
$_SESSION['prev_time'] = $jsTime;
}
}else { /** if we have not saved the previous time in session save it */
$_SESSION['prev_time'] = $jsTime;
}
print_r($_SESSION);
/*
**** end of Main section for detectin sleep or not **
*/
}
}
} while (true);
// close sockets
socket_close($client);
socket_close($socket);
$client = null;
$flag_handshake = false;
function handshake($client, $headers, $socket) {
if (preg_match("/Sec-WebSocket-Version: (.*)\r\n/", $headers, $match))
$version = $match[1];
else {
print("The client doesn't support WebSocket");
return false;
}
if ($version == 13) {
// Extract header variables
if (preg_match("/GET (.*) HTTP/", $headers, $match))
$root = $match[1];
if (preg_match("/Host: (.*)\r\n/", $headers, $match))
$host = $match[1];
if (preg_match("/Origin: (.*)\r\n/", $headers, $match))
$origin = $match[1];
if (preg_match("/Sec-WebSocket-Key: (.*)\r\n/", $headers, $match))
$key = $match[1];
$acceptKey = $key.'258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
$acceptKey = base64_encode(sha1($acceptKey, true));
$upgrade = "HTTP/1.1 101 Switching Protocols\r\n".
"Upgrade: websocket\r\n".
"Connection: Upgrade\r\n".
"Sec-WebSocket-Accept: $acceptKey".
"\r\n\r\n";
socket_write($client, $upgrade);
return true;
} else {
print("WebSocket version 13 required (the client supports version {$version})");
return false;
}
}
function unmask($payload) {
$length = ord($payload[1]) & 127;
if ($length == 126) {
$masks = substr($payload, 4, 4);
$data = substr($payload, 8);
}
elseif($length == 127) {
$masks = substr($payload, 10, 4);
$data = substr($payload, 14);
}
else {
$masks = substr($payload, 2, 4);
$data = substr($payload, 6);
}
$text = '';
for ($i = 0; $i < strlen($data); ++$i) {
$text .= $data[$i] ^ $masks[$i % 4];
}
return $text;
}
function encode($text) {
// 0x1 text frame (FIN + opcode)
$b1 = 0x80 | (0x1 & 0x0f);
$length = strlen($text);
if ($length <= 125)
$header = pack('CC', $b1, $length);
elseif($length > 125 && $length < 65536)$header = pack('CCS', $b1, 126, $length);
elseif($length >= 65536)
$header = pack('CCN', $b1, 127, $length);
return $header.$text;
}
नोट पढ़ें आईटी:
$new_time
चर $jsTime
कोड में है
फोल्डर बनाएं और इसे फाइलों में कॉपी और पेस्ट करें। कमांड के साथ php सॉकेट चलाएं: php -f server_socket.php लोकलहोस्ट पर जाएं और यह देखने के लिए ओपन कंसोल का परीक्षण करें कि यह आपको "आप सक्रिय नहीं हैं" या "आप सक्रिय नहीं हैं" संदेश कहेंगे (जब आप नींद से आते हैं); आपका निष्पादक तब होगा जब उपयोगकर्ता नींद से आएगा, जब वे नींद के कारण नहीं होंगे, उस समय सब कुछ पेजफाइल (विंडोज़) या स्वैप (लाइनक्स) में कैश्ड है