egroupware_official/phpgwapi/inc/class.network.inc.php

258 lines
6.4 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
2001-01-13 11:18:50 +01:00
* phpGroupWare API - Network *
* This file written by Mark Peters <skeeter@phpgroupware.org> *
* Handles opening network socket connections, taking proxy into account *
* Copyright (C) 2000, 2001 Mark Peters *
* -------------------------------------------------------------------------*
* This library is part of the phpGroupWare API *
* http://www.phpgroupware.org/api *
* ------------------------------------------------------------------------ *
2001-01-13 11:18:50 +01:00
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, *
* or any later version. *
* This library is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU Lesser General Public License for more details. *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
\**************************************************************************/
2001-05-21 11:00:41 +02:00
/* $Id$ */
2001-05-21 11:00:41 +02:00
class network
{
2001-05-21 11:00:41 +02:00
var $socket;
var $addcrlf = TRUE;
var $error;
var $errorset = 0;
2001-05-21 11:00:41 +02:00
function network($addcrlf=true)
{
2001-05-21 11:00:41 +02:00
$this->errorset = 0;
$this->set_addcrlf($addcrlf);
}
2001-05-21 11:00:41 +02:00
function set_addcrlf($value)
{
2001-05-21 11:00:41 +02:00
$this->addcrlf = $value;
}
2001-05-21 11:00:41 +02:00
function add_crlf($str)
{
2001-05-21 11:00:41 +02:00
if($this->addcrlf)
{
$str .= "\r\n";
}
return $str;
}
2001-05-21 11:00:41 +02:00
function set_error($code,$msg,$desc)
{
2001-05-21 11:00:41 +02:00
$this->error = array('code','msg','desc');
$this->error['code'] = $code;
$this->error['msg'] = $msg;
$this->error['desc'] = $desc;
// $this->close_port();
$this->errorset = 1;
return 0;
}
2001-05-21 11:00:41 +02:00
function open_port($server,$port,$timeout=15)
{
2001-05-21 11:00:41 +02:00
switch($port)
{
case 80:
case 443:
2001-09-23 21:41:20 +02:00
if((isset($GLOBALS['phpgw_info']['server']['httpproxy_server']) && $GLOBALS['phpgw_info']['server']['httpproxy_server']) &&
(isset($GLOBALS['phpgw_info']['server']['httpproxy_port']) && $GLOBALS['phpgw_info']['server']['httpproxy_port']))
2001-05-21 11:00:41 +02:00
{
2001-09-23 21:41:20 +02:00
$server = $GLOBALS['phpgw_info']['server']['httpproxy_server'];
$port = (int)$GLOBALS['phpgw_info']['server']['httpproxy_port'];
2001-05-21 11:00:41 +02:00
}
break;
}
if(floor(phpversion()) == 4)
{
$this->socket = fsockopen($server,$port,&$errcode,&$errmsg,$timeout);
}
else
{
$this->socket = fsockopen($server,$port,&$errcode,&$errmsg);
}
if(!$this->socket)
2001-05-21 11:00:41 +02:00
{
return $this->set_error('Error',$errcode.':'.$errmsg,'Connection to '.$server.':'.$port.' failed - could not open socket.');
}
else
{
return 1;
}
}
2001-05-21 11:00:41 +02:00
function close_port()
{
2001-05-21 11:00:41 +02:00
return fclose($this->socket);
}
2001-05-21 11:00:41 +02:00
function read_port()
{
2001-05-21 11:00:41 +02:00
return fgets($this->socket, 1024);
}
2001-05-21 11:00:41 +02:00
function bs_read_port($bytes)
{
2001-05-21 11:00:41 +02:00
return fread($this->socket, $bytes);
}
2001-05-21 11:00:41 +02:00
function write_port($str)
{
2001-05-21 11:00:41 +02:00
$ok = fputs($this->socket,$this->add_crlf($str));
if(!$ok)
{
2001-05-21 11:00:41 +02:00
return $this->set_error('Error','Connection Lost','lost connection to server');
}
else
{
2001-05-21 11:00:41 +02:00
return 1;
}
}
2001-05-21 11:00:41 +02:00
function bs_write_port($str,$bytes=0)
{
if($bytes)
2001-05-21 11:00:41 +02:00
{
$ok = fwrite($this->socket,$this->add_crlf($str),$bytes);
}
else
{
$ok = fwrite($this->socket,$this->add_crlf($str));
}
if(!$ok)
2001-05-21 11:00:41 +02:00
{
return $this->set_error('Error','Connection Lost','lost connection to server');
}
else
{
return 1;
}
}
2001-05-21 11:00:41 +02:00
function msg2socket($str,$expected_response,&$response)
{
if(!$this->socket)
2001-05-21 11:00:41 +02:00
{
return $this->set_error('521','socket does not exist',
'The required socked does not exist. The settings for your mail server may be wrong.');
}
if(!$this->write_port($str))
{
2001-05-21 11:00:41 +02:00
if(substr($expected_response,1,1) == '+')
{
2001-05-21 11:00:41 +02:00
return $this->set_error('420','lost connection','Lost connection to pop server.');
}
2001-05-21 11:00:41 +02:00
else
{
2001-05-21 11:00:41 +02:00
return 0;
}
2001-05-21 11:00:41 +02:00
}
$response = $this->read_port();
if(!ereg(strtoupper($expected_response),strtoupper($response)))
2001-05-21 11:00:41 +02:00
{
if(substr($expected_response,1,1) == '+')
{
return $this->set_error('550','','');
}
2001-05-21 11:00:41 +02:00
$pos = strpos(' ',$response);
return $this->set_error(substr($response,0,$pos),
'invalid response('.$expected_response.')',
substr($response,($pos + 1),(strlen($response)-$pos)));
}
else
{
2001-05-21 11:00:41 +02:00
return 1;
}
}
2001-05-21 11:00:41 +02:00
/*
Return contents of a web url as an array or false if timeout.
If $string is set (True), a string is returned with all \r and \n removed.
This allows for parsing of xml where the formatting was not ideal (elements
opened and closed on a single line).
*/
function gethttpsocketfile($file,$string=False)
{
2001-05-21 11:00:41 +02:00
$server = str_replace('http://','',$file);
$file = strstr($server,'/');
$server = str_replace($file,'',$server);
if($GLOBALS['phpgw_info']['server']['httpproxy_server'])
{
2001-05-21 11:00:41 +02:00
if ($this->open_port($server,80, 15))
{
if(!$this->write_port('GET http://' . $server . $file . ' HTTP/1.0'."\n\n"))
2001-05-21 11:00:41 +02:00
{
return False;
}
$i = 0;
while($line = $this->read_port())
2001-05-21 11:00:41 +02:00
{
if(feof($this->socket))
2001-05-21 11:00:41 +02:00
{
break;
}
if($string)
{
$line = ereg_replace("\n",'',$line);
$line = ereg_replace("\r",'',$line);
$lines .= $line;
}
else
{
$lines[] = $line;
}
2001-05-21 11:00:41 +02:00
$i++;
}
$this->close_port();
return $lines;
}
2001-05-21 11:00:41 +02:00
else
{
2001-05-21 11:00:41 +02:00
return False;
}
}
else
{
if($this->open_port($server, 80, 15))
2001-05-21 11:00:41 +02:00
{
if(!$this->write_port('GET '.$file.' HTTP/1.0'."\n".'Host: '.$server."\n\n"))
2001-05-21 11:00:41 +02:00
{
return 0;
}
while($line = $this->read_port())
2001-05-21 11:00:41 +02:00
{
if($string)
{
$line = ereg_replace("\n",'',$line);
$line = ereg_replace("\r",'',$line);
$lines .= $line;
}
else
{
$lines[] = $line;
}
2001-05-21 11:00:41 +02:00
}
$this->close_port();
return $lines;
}
else
{
return 0;
}
}
}
}
2001-05-21 11:00:41 +02:00
?>