Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4686655
photo.inc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
photo.inc
View Options
<
?
php
/*
+-----------------------------------------------------------------------+
| program/steps/addressbook/photo.inc |
| |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2013, The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
| See the README file for a full license statement. |
| |
| PURPOSE: |
| Show contact photo |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
| Author: Aleksander Machniak <alec@alec.pl> |
+-----------------------------------------------------------------------+
*/
// Get contact ID and source ID from request
$
cids
=
rcmail_get_cids
();
$
source
=
key
(
$
cids
);
$
cid
=
$
cids
?
array_shift
(
$
cids
[
$
source
])
:
null
;
// read the referenced file
if
((
$
file_id
=
rcube_utils
::
get_input_value
(
'
_photo
'
,
rcube_utils
::
INPUT_GPC
))
&&
(
$
tempfile
=
$
_SESSION
[
'
contacts
'
][
'
files
'
][
$
file_id
]))
{
$
tempfile
=
$
RCMAIL
-
>
plugins
-
>
exec_hook
(
'
attachment_display
'
,
$
tempfile
);
if
(
$
tempfile
[
'
status
'
])
{
if
(
$
tempfile
[
'
data
'
])
$
data
=
$
tempfile
[
'
data
'
];
else
if
(
$
tempfile
[
'
path
'
])
$
data
=
file_get_contents
(
$
tempfile
[
'
path
'
]);
}
}
else
{
// by email, search for contact first
if
(
$
email
=
rcube_utils
::
get_input_value
(
'
_email
'
,
rcube_utils
::
INPUT_GPC
))
{
foreach
(
$
RCMAIL
-
>
get_address_sources
()
as
$
s
)
{
$
abook
=
$
RCMAIL
-
>
get_address_book
(
$
s
[
'
id
'
]);
$
result
=
$
abook
-
>
search
(
array
(
'
email
'
),
$
email
,
1
,
true
,
true
,
'
photo
'
);
while
(
$
result
&&
(
$
record
=
$
result
-
>
iterate
()))
{
if
(
$
record
[
'
photo
'
])
break
2
;
}
}
}
// by contact id
if
(
!$
record
&&
$
cid
)
{
// Initialize addressbook source
$
CONTACTS
=
rcmail_contact_source
(
$
source
,
true
);
$
SOURCE_ID
=
$
source
;
// read contact record
$
record
=
$
CONTACTS
-
>
get_record
(
$
cid
,
true
);
}
if
(
$
record
[
'
photo
'
])
{
$
data
=
is_array
(
$
record
[
'
photo
'
])
?
$
record
[
'
photo
'
][
0
]
:
$
record
[
'
photo
'
];
if
(
!
preg_match
(
'!
[
^
a
-
z0
-
9
/=+-
]
!
i
'
,
$
data
))
$
data
=
base64_decode
(
$
data
,
true
);
}
}
// let plugins do fancy things with contact photos
$
plugin
=
$
RCMAIL
-
>
plugins
-
>
exec_hook
(
'
contact_photo
'
,
array
(
'
record
'
=
>
$
record
,
'
email
'
=
>
$
email
,
'
data
'
=
>
$
data
));
// redirect to url provided by a plugin
if
(
$
plugin
[
'
url
'
])
{
$
RCMAIL
-
>
output
-
>
redirect
(
$
plugin
[
'
url
'
]);
}
else
{
$
data
=
$
plugin
[
'
data
'
];
}
// deliver alt image
if
(
!$
data
&&
(
$
alt_img
=
rcube_utils
::
get_input_value
(
'
_alt
'
,
rcube_utils
::
INPUT_GPC
))
&&
is_file
(
$
alt_img
))
{
$
data
=
file_get_contents
(
$
alt_img
);
}
// cache for one day if requested by email
if
(
!$
cid
&&
$
email
)
{
$
RCMAIL
-
>
output
-
>
future_expire_header
(
86400
);
}
header
(
'
Content
-
Type
:
'
.
rcube_mime
::
image_content_type
(
$
data
));
echo
$
data
?
$
data
:
file_get_contents
(
'
program
/
resources
/
blank
.
gif
'
);
exit
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 1, 3:38 PM (25 m, 24 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
661862
Default Alt Text
photo.inc (3 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment