diff options
author | friendica <info@friendica.com> | 2012-04-30 23:07:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-30 23:07:52 -0700 |
commit | d48cd0f9a3210c14bb98a502188358982261d9df (patch) | |
tree | d5b13e587c7b8f2d140b559f3a67fd299afdedd3 /include/gprobe.php | |
parent | 25afec0f81961665717e159aba216d1e9d9f9d86 (diff) | |
download | volse-hubzilla-d48cd0f9a3210c14bb98a502188358982261d9df.tar.gz volse-hubzilla-d48cd0f9a3210c14bb98a502188358982261d9df.tar.bz2 volse-hubzilla-d48cd0f9a3210c14bb98a502188358982261d9df.zip |
hidden plugins (add .hidden file to dir)
Diffstat (limited to 'include/gprobe.php')
-rw-r--r-- | include/gprobe.php | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/include/gprobe.php b/include/gprobe.php new file mode 100644 index 000000000..26254ad28 --- /dev/null +++ b/include/gprobe.php @@ -0,0 +1,60 @@ +<?php + +require_once("boot.php"); +require_once('include/Scrape.php'); + +function gprobe_run($argv, $argc){ + global $a, $db; + + if(is_null($a)) { + $a = new App; + } + + if(is_null($db)) { + @include(".htconfig.php"); + require_once("dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; + + require_once('include/session.php'); + require_once('include/datetime.php'); + + load_config('config'); + load_config('system'); + + $a->set_baseurl(get_config('system','url')); + + load_hooks(); + + if($argc != 2) + return; + + $url = hex2bin($argv[1]); + + $r = q("select * from gcontact where nurl = '%s' limit 1", + dbesc(normalise_link($url)) + ); + + if(count($r)) + return; + + $arr = probe_url($url); + + if(count($arr) && x($arr,'network') && $arr['network'] === NETWORK_DFRN) { + q("insert into `gcontact` (`name`,`url`,`nurl`,`photo`) + values ( '%s', '%s', '%s', '%s') ", + dbesc($arr['name']), + dbesc($arr['url']), + dbesc(normalise_link($arr['url'])), + dbesc($arr['photo']) + ); + } + + return; +} + +if (array_search(__file__,get_included_files())===0){ + gprobe_run($argv,$argc); + killme(); +} |