/usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php is in eiskaltdcpp-scripts 2.2.9-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | #!/usr/bin/php5
<?php
#------------------------------------------------------------------------------#
#------------------------------------------------------------------------------#
#
# EiskaltDC++ - personal info script.
#
#------------------------------------------------------------------------------#
#
# Поддерживыемые проигрыватели:
#
# Видео: totem, smplayer, vlc, gnome-mplayer, xine
# Аудио: rhythmbox, audacious2, amarok
#
#------------------------------------------------------------------------------#
# Author: GoTLiuM InSPiRiT <gotlium@gmail.com>
# Date: 08.06.2010
# License: GPL-2 (http://opensource.org/licenses/gpl-2.0.php)
#------------------------------------------------------------------------------#
#------------------------------------------------------------------------------#
/**
* Примеры использования
*
* Установка в Debian и Ubuntu (если php еще не был установлен):
* $ sudo apt-get install php5-cli
*
* Добавьте псевдонимы (команды в чате):
* /alias p::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php
* /alias u::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php uptime
* /alias b::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php black
* /alias r::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php ratio
* /alias t::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php torrent
* /alias ps::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php process
* /alias pn::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php ping
* /alias ip::/sh /usr/share/eiskaltdcpp/examples/commands.ru_RU.UTF-8.php ip
*
* Теперь в чате будут доступны команды:
* /p - то что играет в rhythmbox или в totem
* /u - ваш uptime
* /b - ваш черный список
* /r - ваше соотношение
* /t - ваше соотношение в торрент клиенте
* /ps - системная информация
* /pn - пингуем сайт mail.ru
* /ip - ваш ip адрес
*
* Проверить список доступных псевдонимов можно так:
* /alias list
**/
final class EiskaltDC
{
// имя системного пользователя (заполнять не требуется)
private $usename = '';
// смайлики, которые используем (здесь можно указать коды любимых смайлов)
private $smiles = array(
':дэнс:', ':diablored:', ':diabloblack:', ':Кенни:',
':нинзя:', ':бубльгум:', '}:-Df>', ':смерть:',
':роджер:', ':рокер:', ':гитарист:'
);
// переменная содержащая ошибки (заполнять не требуется)
public $errors = array();
/**
* Метод по умолчанию
*
* @access public
* @return void
*/
public function __construct()
{
if( version_compare(PHP_VERSION, '5.2.0', '<') ) {
$this->errors[] = null;
}
elseif( function_exists('exec') && stristr(PHP_OS, 'lin') )
{
exec('whoami', $username);
if( is_array($username) && count($username) == 1 )
{
$this->username = trim(end($username));
}
else {
$this->errors[] = null;
}
}
else {
$this->errors[] = null;
}
}
/**
* Метод для форматирования байтов
*
* @access private
* @param int $bytes
* @param int $precision
* @param string $space
* @return int
*/
private function formatBytes($bytes, $precision = 2, $space = ' ' )
{
$units = array('B', 'KB', 'MB', 'GB', 'TB');
$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);
$bytes /= pow(1024, $pow);
return round($bytes, $precision) . $space . $units[$pow];
}
/**
* Метод для вывода соотношения dcpp клиента
*
* @access public
* @return string
*/
public function ratio()
{
$filename = '/home/'.$this->username.'/.eiskaltdc++/EiskaltDC++.xml';
if( file_exists( $filename ) )
{
$file = file_get_contents( $filename );
exec('ps -o pcpu,time,rss -C eiskaltdcpp | tail -1 | awk \'{print $1,$2,$3}\'', $info);
if( is_array($info) && !empty($info[0]) ) {
list($cpu,$time,$mem) = explode(" ", $info[0]);
$mem = self::formatBytes( ($mem*1024) );
} else {
$cpu = '';$time = '';$mem = '';
}
preg_replace('#<app-stat-total-down type="string">(.*?)</app-stat-total-down>#e', '$total_down="$1";', $file);
preg_replace('#<app-stat-total-up type="string">(.*?)</app-stat-total-up>#e', '$total_up="$1";', $file);
if( is_numeric($total_down) && is_numeric($total_up) )
{
$ratio = $total_up / $total_down;
$ratio = number_format($ratio,2);
$total_down = self::formatBytes($total_down);
$total_up = self::formatBytes($total_up);
return "dcpp-client ratio: $ratio (отдачи: $total_up / загрузки: $total_down), sys: (cpu:$cpu%, time:$time, mem:$mem) :зараза:";
}
else {
$this->errors[] = null;
}
} else {
return "dcpp-client: пока ничего не качал :-)";
}
}
/**
* То что смотрим в видео проигрывателе или слушаем в аудио
*
* @access public
* @return string
*/
public function play()
{
// имена процессов видео-проигрывателей
$vplayers = array('totem', 'smplayer', 'vlc', 'gnome-mplayer', 'xine');
// bash команды, для извлечения заголовков
$get_title[] = 'id=`xdotool search --class totem | head -n 1` && xprop -id $id | grep "WM_ICON_NAME" | head -n 1 | sed -n \'s/.*"\(.*\)\"/\1/p\'';
$get_title[] = 'id=`xdotool search --class smplayer | head -n 1` && xprop -id $id | grep "WM_NAME(STRING)" | head -n 1 | sed -n \'s/.*"\(.*\)\s-\sSMPlayer"/\1/p\'';
$get_title[] = 'id=`xdotool search --class vlc | head -n 1` && xprop -id $id | grep "WM_NAME(COMPOUND_TEXT)" | head -n 1 | sed -n \'s/.*"\(.*\)\-\(.*\)\-\(.*\)VLC\"/\1/p\'';
$get_title[] = 'id=`xdotool search --class gnome-mplayer | head -n 1` && xprop -id $id | grep "WM_ICON_NAME" | head -n 1 | sed -n \'s/.*"\(.*\)\s-\sGNOME\(.*\)\"/\1/p\'';
$get_title[] = 'id=`xdotool search --class xine | head -n 1` && xprop -id $id | grep "WM_ICON_NAME" | head -n 1 | sed -n \'s/.*"\(.*\)\s-\s\(.*\)\"/\2/p\'';
// проверка наличия процессов. если имеется хоть один,
// то извлекается заголовок и соответственно в чат.
foreach( $vplayers as $id => $player )
{
exec("ps -e | grep $player | awk '{print $1}'", $ps_tm);
if( is_array($ps_tm) && count($ps_tm) == 1 && is_numeric($ps_tm[0]) )
{
exec($get_title[$id], $win_title);
if( is_array($win_title) && count($win_title) == 1 && !empty($win_title[0]) )
{
if( preg_match('#[a-zа-я]#iu',$win_title[0]) )
{
return 'смотрю что-то под названием: '.trim($win_title[0]).' :ТВ:';
}
}
unset($win_title);
}
unset($ps_tm);
}
unset( $id, $player );
// Уровень системного звука
exec("amixer sget Master | grep \"Mono:\" | awk '{print $4}'",$sysvol);
if( empty($sysvol[0]) ) {
$sysvol = array();
exec("amixer sget Master | grep \"Front Left:\" | awk '{print $5}'",$sysvol);
}
if( is_array($sysvol) && !empty($sysvol[0]) ) {
preg_replace('#\[(.*)\]#e', '$sys_volume="$1";', $sysvol[0]);
}
unset($sysvol);
//
// имена процессов аудио-проигрывателей
$aplayers = array('rhythmbox', 'audacious2', 'amarok');
// bash команды
$get_data[] = 'echo `rhythmbox-client --print-playing-format %aa,%at,%ay,%tt,%td`';
$get_data[] = 'audacious=`php -r \'exec("audtool2 current-song && audtool2 current-song-bitrate-kbps",$aud);$tg="/usr/share/php-getid3/getid3.php";$f=false;if(file_exists($tg)){include $tg;exec("audtool2 current-song-filename",$file);$getID3 = new getID3;$info = $getID3->analyze($file[0]);if(isset($info["id3v1"])){print $info["id3v1"]["artist"].",".$info["id3v1"]["album"].",".$info["id3v1"]["year"].",".$info["id3v1"]["title"].",,{$aud[1]}";}else{$f=true;}}else{$f=true;}if($f==true){print",,,{$aud[0]},,{$aud[1]}";}\'` && echo $audacious';
$get_data[] = 'amarock=`qdbus org.kde.amarok /Player org.freedesktop.MediaPlayer.GetMetadata 2>/dev/null` && artist=`echo "$amarock" | sed -ne \'s/^artist: \(.*\)$/\1/p\'` && album=`echo "$amarock" | sed -ne \'s/^album: \(.*\)$/\1/p\'` && year=`echo "$amarock" | sed -ne \'s/^year: \(.*\)$/\1/p\'` && title=`echo "$amarock" | sed -ne \'s/^title: \(.*\)$/\1/p\'` && bitrate=`echo "$amarock" | sed -ne \'s/^audio\-bitrate: \(.*\)$/\1/p\'` && echo "$artist,$album,$year,$title,,$bitrate"';
// используемые поля
$info_head = array('группой','альбом','год','песня','время','bitrate');
foreach( $aplayers as $id => $player )
{
exec("ps -e | grep $player | awk '{print $1}'", $ps);
if( is_array($ps) && count($ps) == 1 && is_numeric($ps[0]) )
{
exec($get_data[$id], $win_title);
if( is_array($win_title) && !empty($win_title[0]) )
{
$info = explode(',', $win_title[0]);
$out = array();
if( is_array($info) && count($info) > 0 ):
foreach( $info as $i => $value )
{
$value = trim($value);
if( $value != 'Неизвестно' && $value != 'Unknown' && $value != '0' && !empty($value) && preg_match('#[a-zа-я0-9]#iu',$value) )
{
$out[] = "{$info_head[$i]}: $value";
}
}
if( is_array($out) && count($out) > 1 )
{
if( $player == 'rhythmbox' ):
exec("rhythmbox-client --print-volume | awk '{print $5}'", $vol);
$volume = substr($vol[0],0,(strlen($vol[0])-1));
$volume = str_replace(',','.',$volume);
$volume = $volume * 100;
$volume = number_format($volume);
endif;
shuffle($this->smiles);
$format = implode(', ', $out);
$volume = (!empty($volume)) ? 'уровень громкости: (player:'.$volume.'% / system:'.$sys_volume.')': "уровень сис. громкости: $sys_volume";
return 'наслаждаюсь '.implode(', ', $out).", $volume " . current($this->smiles);
}
endif;
}
unset($win_title, $out);
}
unset($ps);
}
return 'enjoy the silence... :слушаю:';
}
/**
* Uptime вашей машины
*
* @access public
* @return string
*/
public function uptime()
{
exec('uptime', $uptime);
if( is_array($uptime) && !empty($uptime[0]) ) {
return "uptime: {$uptime[0]} :радиация:";
}
else {
$this->errors[] = null;
return false;
}
}
/**
* Black List EiskaltDC++
*
* @access public
* @return string
*/
public function black()
{
$filename = "/home/{$this->username}/.eiskaltdc++/blacklist";
if( file_exists($filename) ) {
$black = file($filename);
$black = implode(", ", $black);
return "black list: вы должны знать мозготрахов в лицо: ".str_replace("\n","",$black);
} else {
return "black list: чёрный список пока пуст!";
}
}
/**
* Касательно всё системы
*
* @access public
* @return string
*/
public function process()
{
exec('ps -e | wc -l', $process);
exec('free -t -b | grep Total: | awk \'{print $2,$3,$4}\'', $memory);
exec('netstat -t -n | wc -l', $tcp);
exec('netstat -u -n | wc -l', $udp);
exec('ps -eo pcpu | sort -k 1 -r | awk \'{print $1}\'', $cpu);
exec('df -l -h --total | tail -1 | awk \'{print $2,$3,$4}\'', $space);
exec('uname', $os);
$udp = (empty($udp[0]) or !@count($udp)) ? 0 : $udp[0];
$tcp = (empty($tcp[0]) or !@count($udp)) ? 0 : $tcp[0];
$cpu = (empty($tcp[0]) or !@count($udp)) ? 0 : array_sum($cpu);
$os = (empty($os[0]) or !@count($os)) ? 'Ubuntu' : $os[0];
$space = explode(" ", $space[0]);
$memory = explode(' ',$memory[0]);
$memory[0] = self::formatBytes($memory[0],2,'');
$memory[1] = self::formatBytes($memory[1],2,'');
$memory[2] = self::formatBytes($memory[2],2,'');
if( is_array($process) && count($process) == 1 && is_numeric($process[0]) ) {
return "SysInfo: os: $os, cpu: $cpu%, proc: {$process[0]}, mem+swap: (t:{$memory[0]},u:{$memory[1]},f:{$memory[2]}), hdd: (t:{$space[0]},u:{$space[1]},f:{$space[2]}), sockets: (tcp:$tcp/udp:$udp) :!!!:";
} else {
$this->errors[] = null;
}
}
/**
* BitTorrent Transmission
*
* @access public
* @return string
*/
public function torrent()
{
$filename = '/home/'.$this->username.'/.config/transmission/stats.json';
if( file_exists($filename) )
{
$file = file_get_contents($filename);
$stats = json_decode($file, true);
exec('ps -o pcpu,time,rss -C transmission | tail -1 | awk \'{print $1,$2,$3}\'', $info);
if( is_array($info) && !empty($info[0]) ) {
list($cpu,$time,$mem) = explode(" ", $info[0]);
$mem = self::formatBytes(($mem*1024));
} else {
$cpu = '';$time = '';$mem = '';
}
if( is_numeric($stats['downloaded-bytes']) && is_numeric($stats['uploaded-bytes']) )
{
$ratio = $stats['uploaded-bytes'] / $stats['downloaded-bytes'];
$ratio = number_format($ratio,2);
$total_down = self::formatBytes($stats['downloaded-bytes']);
$total_up = self::formatBytes($stats['uploaded-bytes']);
return "torrent-client ratio: $ratio (отдачи: $total_up / загрузки: $total_down), sys: (cpu: $cpu%, time: $time, mem: $mem) :качаю:";
}
else {
$this->errors[] = null;
}
}
else
{
return 'torrent-client: пока ничего не качал :-)';
}
}
/**
* Пингуем Mail.ru
*
* @access public
* @return string
*/
public function ping()
{
exec('ping mail.ru -c 4', $ping);
if( is_array($ping) && count($ping) > 1 ) {
return "Ping Check :ПиСи:\n".implode("\n",$ping);
} else {
$this->errors[] = null;
}
}
/**
* IP адрес интерфейса ppp0 или если прокинули
* порты, с checkip сервиса
*
* @access public
* @return string
*/
public function ip()
{
exec('ifconfig | grep -A 1 ppp0 | grep inet | cut -d ":" -f2 | cut -d " " -f1', $ip);
if( is_array($ip) && count($ip) == 1 ) {
return "my ip: {$ip[0]} d'dos-те меня, мне всё равно! :ПиСи:";
} else {
$f=@fopen('http://checkip.dyndns.com/','rb');
if( $f ) {
$text='';
while(!feof($f)) $text.=fread($f,1024);
fclose($f);
if(!empty($text)) {
preg_replace('#<body>Current[\s]IP[\s]Address:[\s](.*)</body>#e','$chip="$1";', $text);
}
}
if( !empty($chip) && preg_match('#^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$#',trim($chip)) ) {
return "my ip: $chip d'dos-те меня, мне всё равно! :ПиСи:";
}
else {
$this->errors[] = null;
return false;
}
}
}
}
$method = (isset($argv[1])) ? trim($argv[1]) : 'play';
$eiskalt = new EiskaltDC;
if( count($eiskalt->errors) > 0 ) {
print "php v.5.2 <, foo 'exec' not exists or os is not linux!";
}
elseif( method_exists($eiskalt, $method) ) {
$str = $eiskalt->$method();
print (!count($eiskalt->errors)) ? "+me -> $str\n" : "error result\n";
} else {
print "Error usage!\n";
}
?>
|