aboutsummaryrefslogtreecommitdiffstats
path: root/mod/thing.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-28 13:28:49 -0800
committerfriendica <info@friendica.com>2013-12-28 13:28:49 -0800
commit1d0fddd39c50205f697b040aab1655b282afa53d (patch)
tree23c1c98766daeb37f3089246b50d247279aadc35 /mod/thing.php
parent2cafe172dc2ea3ed968abe90ce35cec0e4b81580 (diff)
downloadvolse-hubzilla-1d0fddd39c50205f697b040aab1655b282afa53d.tar.gz
volse-hubzilla-1d0fddd39c50205f697b040aab1655b282afa53d.tar.bz2
volse-hubzilla-1d0fddd39c50205f697b040aab1655b282afa53d.zip
things can now have (consistent sized) photos - plus I found a couple of issues with duplicate notifications and contact photos not getting an album name (it was crossed with filename). The last one doesn't matter as neither is used, but it was wrong so it has been corrected. Oh and thing photos weren't working at all because the form element name was different than what the module was looking for. But that had never been tested as I was waiting to get the import/resize finished. Next up for that module is display and deletion of things; but the priority is pretty low.
Diffstat (limited to 'mod/thing.php')
-rw-r--r--mod/thing.php23
1 files changed, 17 insertions, 6 deletions
diff --git a/mod/thing.php b/mod/thing.php
index 91bdca78a..955a6c173 100644
--- a/mod/thing.php
+++ b/mod/thing.php
@@ -16,7 +16,7 @@ function thing_init(&$a) {
$verb = escape_tags($_REQUEST['verb']);
$profile_guid = escape_tags($_REQUEST['profile']);
$url = $_REQUEST['link'];
- $photo = $_REQUEST['photo'];
+ $photo = $_REQUEST['img'];
$hash = random_string();
@@ -68,6 +68,14 @@ function thing_init(&$a) {
else
return;
+ $local_photo = null;
+
+ if($photo) {
+ $arr = import_profile_photo($photo,get_observer_hash(),true);
+ $local_photo = $arr[0];
+ $local_photo_type = $arr[3];
+ }
+
$r = q("select * from term where uid = %d and otype = %d and type = %d and term = '%s' limit 1",
intval(local_user()),
@@ -85,7 +93,7 @@ function thing_init(&$a) {
intval(TERM_THING),
dbesc($name),
dbesc(($url) ? $url : z_root() . '/thing/' . $hash),
- dbesc(($photo) ? $photo : ''),
+ dbesc(($photo) ? $local_photo : ''),
dbesc($hash)
);
$r = q("select * from term where uid = %d and otype = %d and type = %d and term = '%s' limit 1",
@@ -113,8 +121,10 @@ function thing_init(&$a) {
info( t('thing/stuff added'));
$arr = array();
- $links = array(array('rel' => 'alternate','type' => 'text/html',
- 'href' => $term['url']));
+ $links = array(array('rel' => 'alternate','type' => 'text/html', 'href' => $term['url']));
+ if($local_photo)
+ $links[] = array('rel' => 'photo', 'type' => $local_photo_type, 'href' => $local_photo);
+
$objtype = ACTIVITY_OBJ_THING;
@@ -139,6 +149,9 @@ function thing_init(&$a) {
$arr['body'] = sprintf( $bodyverb, $ulink, $translated_verb, $plink );
+ if($local_photo)
+ $arr['body'] .= "\n\n[zmg]" . $local_photo . "[/zmg]";
+
$arr['verb'] = $verb;
$arr['obj_type'] = $objtype;
$arr['object'] = $obj;
@@ -161,8 +174,6 @@ function thing_init(&$a) {
$ret = post_activity_item($arr);
- if($ret['success'])
- proc_run('php','include/notifier.php','tag',$ret['activity']['id']);
}