u_ftp.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. <?php
  2. /**
  3. * An FTP transfer wrapper using asynchronous transfer
  4. * (c) 2006 Ouest Systèmes Informatiques (OSI)
  5. * Licensed under the CeCILL 2.0 license
  6. *
  7. * $Id: u_ftp.php,v 1.1 2006-12-03 23:20:08 marand Exp $
  8. */
  9. require_once('u_fsm.php');
  10. /**
  11. * Class implements a finite-state-machine-based
  12. * FTP client with *very* limited functionality,
  13. * but that can display progress information
  14. * states are:
  15. * - init: not yet set up
  16. * - offline: no link established
  17. * - online: client connected to server
  18. * - live: client connected and logged in
  19. * - active: a data transfer operation is under way
  20. * - unsafe: something failed, disconnect can happen out of our control
  21. */
  22. class ftp_client extends fsm
  23. {
  24. private $f_host;
  25. private $f_user;
  26. private $f_pass;
  27. private $f_pwd;
  28. private $f_file;
  29. private $f_localwd;
  30. private $f_localfile;
  31. private $f_fp; // file pointer to local file, used in get/put/continue
  32. private $f_goal; // bytes to be transferred
  33. private $f_conn; // connection
  34. private $f_callback; // name of callback function for progress information
  35. /**
  36. * @param string $url
  37. * @return void
  38. */
  39. public function __construct(string $url = null)
  40. {
  41. if ($url)
  42. $this->set_url($url);
  43. $this->f_transitions = array(
  44. 'init' => array(
  45. 'check_params' => array(
  46. true => 'offline',
  47. false => 'init',
  48. ),
  49. 'set_progress' => array(
  50. true => 'offline',
  51. false => 'offline',
  52. ),
  53. ),
  54. 'offline' => array(
  55. 'check_params' => array(
  56. true => 'offline',
  57. false => 'init',
  58. ),
  59. 'connect' => array
  60. (
  61. true => 'online',
  62. false => 'unsafe',
  63. ),
  64. 'set_progress' => array(
  65. true => 'offline',
  66. false => 'offline',
  67. ),
  68. ),
  69. 'online' => array(
  70. 'close' => array(
  71. true => 'offline',
  72. false => 'unsafe',
  73. ),
  74. 'login' => array(
  75. true => 'live',
  76. false => 'unsafe',
  77. ),
  78. ),
  79. 'live' => array(
  80. 'close' => array(
  81. true => 'offline',
  82. false => 'unsafe',
  83. ),
  84. 'chdir' => array(
  85. true => 'live',
  86. false => 'unsafe',
  87. ),
  88. 'get' => array(
  89. FTP_FINISHED => 'live',
  90. FTP_FAILED => 'unsafe',
  91. FTP_MOREDATA => 'active',
  92. ),
  93. 'put' => array(
  94. FTP_FINISHED => 'live',
  95. FTP_FAILED => 'unsafe',
  96. FTP_MOREDATA => 'active',
  97. ),
  98. ),
  99. 'active' => array(
  100. 'close' => array(
  101. true => 'offline',
  102. false => 'unsafe',
  103. ),
  104. 'continue' => array(
  105. FTP_FINISHED => 'live',
  106. FTP_FAILED => 'unsafe',
  107. FTP_MOREDATA => 'active',
  108. ),
  109. ),
  110. 'unsafe' => array(),
  111. /**
  112. * no transition allowed
  113. * Even retrying connect would not be safe
  114. * Must destruct
  115. */
  116. );
  117. parent::__construct();
  118. }
  119. /**
  120. * close connection if it hasn't been done, to prevent connection
  121. * lingering on the server if avoidable
  122. * @return void
  123. */
  124. public function __destruct()
  125. {
  126. if ($this->is_event_allowed('close'))
  127. $this->f_close();
  128. if(is_resource($this->f_fp))
  129. try
  130. {
  131. fclose($this->f_fp);
  132. }
  133. catch (Exception $e)
  134. {
  135. print_r($e);
  136. }
  137. }
  138. /**
  139. * setter for f_host. Make sur name can be resolved
  140. *
  141. * @param string $host
  142. * @return ftp_client
  143. */
  144. public function set_host($host = null)
  145. {
  146. /**
  147. * ignore hosts that don't resolve in DNS
  148. */
  149. if (is_array(gethostbynamel($host)))
  150. $this->f_host = $host;
  151. else
  152. throw new Exception(func_name() . ": cannot resolve host name \"$host\"");
  153. $this->apply_event('check_params');
  154. return $this;
  155. }
  156. /**
  157. * setter for f_user
  158. *
  159. * @param string $user
  160. * @return ftp_client
  161. */
  162. public function set_user($user = 'anonymous')
  163. {
  164. $this->f_user = $user;
  165. $this->apply_event('check_params');
  166. return $this;
  167. }
  168. /**
  169. * setter for f_pass
  170. *
  171. * @param string $pass
  172. * @return ftp_client
  173. */
  174. public function set_pass($pass = null)
  175. {
  176. $this->f_pass = $pass;
  177. $this->apply_event('check_params');
  178. return $this;
  179. }
  180. /**
  181. * callback is invoked at the end of get, put
  182. * and before and after continue
  183. *
  184. * @param string $callback
  185. */
  186. public function set_callback($callback)
  187. {
  188. if ($callback && !function_exists($callback))
  189. throw new Exception(func_name() . ": cannot use undefined function $callback as callback");
  190. else
  191. $this->f_callback = $callback;
  192. /**
  193. * this setter does not cause a state change, so no call to apply_event
  194. */
  195. return $this;
  196. }
  197. /**
  198. * implement change remote directory
  199. * @return boolean
  200. */
  201. protected function f_chdir()
  202. {
  203. $ret = ftp_chdir($this->f_conn, $this->f_pwd);
  204. return $ret;
  205. }
  206. /**
  207. * change remote directory
  208. *
  209. * @param string $pwd
  210. * @return boolean
  211. */
  212. public function chdir($pwd = null)
  213. {
  214. $this->f_pwd = $pwd;
  215. $ret = $this->apply_event('chdir');
  216. return $ret;
  217. }
  218. /**
  219. * setter for f_file
  220. *
  221. * @param string $file
  222. * @return ftp_client
  223. */
  224. public function set_file($file = null)
  225. {
  226. $this->f_file = $file;
  227. if (!isset($this->f_localfile))
  228. $this->f_localfile = $file;
  229. $this->apply_event('check_params');
  230. return $this;
  231. }
  232. /**
  233. * setter for f_localfile
  234. *
  235. * @param string $file
  236. * @return ftp_client
  237. */
  238. public function set_localfile($file = null)
  239. {
  240. $this->f_localfile = $file;
  241. $this->apply_event('check_params');
  242. return $this;
  243. }
  244. /**
  245. * does the instance have all necessary info for a FTP transfer ?
  246. *
  247. * @return boolean
  248. */
  249. protected function f_check_params()
  250. {
  251. // echo func_name() . "\n";
  252. $ret = isset($this->f_host)
  253. && isset($this->f_user)
  254. && isset($this->f_pass)
  255. && isset($this->f_file)
  256. && isset($this->f_localfile)
  257. ;
  258. return $ret;
  259. }
  260. /**
  261. * implementation of connect
  262. *
  263. * @return boolean
  264. */
  265. protected function f_connect()
  266. {
  267. // echo func_name() . "\n";
  268. $this->f_conn = ftp_connect($this->f_host); // default port, default timeout
  269. $ret = is_resource($this->f_conn);
  270. return $ret;
  271. }
  272. /**
  273. * implementation of close
  274. * @return boolean
  275. */
  276. protected function f_close()
  277. {
  278. echo func_name() . "\n";
  279. $ret = ftp_close($this->f_conn);
  280. return $ret;
  281. }
  282. /**
  283. * implementation of login
  284. * @return boolean
  285. */
  286. protected function f_login()
  287. {
  288. // echo func_name() . "\n";
  289. $ret = ftp_login($this->f_conn, $this->f_user, $this->f_pass);
  290. return $ret;
  291. }
  292. /**
  293. * implementation of get
  294. *
  295. * @return int FTP_FINISHED | FTP_MOREDATA | FTP_FAILED
  296. */
  297. protected function f_get()
  298. {
  299. echo func_name() . "\n";
  300. $this->f_fp = fopen($this->f_localfile, "wb");
  301. if (!is_resource($this->f_fp))
  302. {
  303. $ret = FTP_FAILED;
  304. throw new Exception(func_name() . ": could not create local file $this->f_file");
  305. }
  306. $this->f_goal = ftp_size($this->f_conn, $this->f_file);
  307. $ret = ftp_nb_fget($this->f_conn, $this->f_fp, $this->f_file, FTP_BINARY);
  308. if ($ret == FTP_FINISHED)
  309. fclose($this->f_fp);
  310. call_user_func($this->f_callback, $this, 'post');
  311. return $ret;
  312. }
  313. /**
  314. * implementation of continue
  315. * @return int FTP_FINISHED | FTP_MOREDATA | FTP_FAILED
  316. */
  317. protected function f_continue()
  318. {
  319. if ($this->f_callback)
  320. call_user_func($this->f_callback, $this, 'pre');
  321. $ret = ftp_nb_continue($this->f_conn);
  322. if ($ret == FTP_FINISHED)
  323. fclose($this->f_fp);
  324. if ($this->f_callback)
  325. call_user_func($this->f_callback, $this, 'post');
  326. return $ret;
  327. }
  328. /**
  329. * interface to connect
  330. * @return void
  331. */
  332. public function connect()
  333. {
  334. // echo func_name() . "\n";
  335. return $this->apply_event('connect');
  336. }
  337. /**
  338. * interface to login
  339. *
  340. * @return boolean
  341. */
  342. public function login()
  343. {
  344. // echo func_name() . "\n";
  345. return $this->apply_event('login');
  346. }
  347. /**
  348. * interface to close
  349. *
  350. * @return boolean
  351. */
  352. public function close()
  353. {
  354. echo func_name() . "\n";
  355. return $this->apply_event('close');
  356. }
  357. /**
  358. * get a file using previously defined parameters
  359. * @return int FTP_FAILED | FTP_MOREDATA | FTP_FINISHED
  360. */
  361. public function get()
  362. {
  363. echo func_name() . "\n";
  364. return $this->apply_event('get');
  365. }
  366. /**
  367. * continue a current transfer
  368. *
  369. * @param string $callback name of function to be called before and after
  370. * @return int FTP_FINISHED | FTP_MOREDATA | FTP_FAILED
  371. */
  372. public function cont() // continue is a php reserved word
  373. {
  374. // echo func_name() . "\n";
  375. return $this->apply_event('continue');
  376. }
  377. public function get_progress()
  378. {
  379. if (!$this->f_state == 'active')
  380. $ret = 0;
  381. else
  382. {
  383. $pos = ftell($this->f_fp);
  384. $ret = $pos / $this->f_goal;
  385. }
  386. return $ret;
  387. }
  388. /*put*/
  389. }
  390. /**
  391. * test script
  392. */
  393. /*
  394. ob_end_flush();
  395. $ftp = new ftp_client();
  396. $ftp->set_host('osinet.typhon.org')
  397. ->set_user('osinet')
  398. ->set_pass('eev6ohbahX')
  399. ->set_file('price.xml')
  400. ->set_callback('progress');
  401. if ($ftp->is_event_allowed('connect'))
  402. {
  403. echo "Connecting...";
  404. $ftp->connect();
  405. }
  406. else
  407. die('connect not allowed');
  408. if($ftp->is_event_allowed('login'))
  409. {
  410. echo "success\nLogging in...";
  411. $ftp->login();
  412. }
  413. else
  414. die("failure\n");
  415. if ($ftp->is_event_allowed('get'))
  416. {
  417. echo "success\nsetting directory...";
  418. $ftp->chdir('/osinet.fr/www/code');
  419. }
  420. else
  421. die("failure\n");
  422. if ($ftp->is_event_allowed('get'))
  423. {
  424. echo "success\nfetching";
  425. $ftp->get();
  426. }
  427. else
  428. die("failure\n");
  429. do
  430. {
  431. $sts = $ftp->cont();
  432. if ($sts == FTP_FAILED)
  433. throw new Exception("main: continue failed\n");
  434. } while ($sts == FTP_MOREDATA);
  435. */