2015-10-07 10:48:01 +02:00
|
|
|
"""
|
2016-01-08 23:49:06 +01:00
|
|
|
The photo module contains the :class:`Photo` class, which is used to track
|
|
|
|
image objects (JPG, DNG, etc.).
|
|
|
|
|
|
|
|
.. moduleauthor:: Jaisen Mathai <jaisen@jmathai.com>
|
2015-10-07 10:48:01 +02:00
|
|
|
"""
|
|
|
|
|
2015-12-11 08:07:01 +01:00
|
|
|
import imghdr
|
2015-10-07 10:48:01 +02:00
|
|
|
import os
|
2015-10-20 10:17:09 +02:00
|
|
|
import pyexiv2
|
2015-10-07 10:48:01 +02:00
|
|
|
import re
|
2015-10-21 08:51:14 +02:00
|
|
|
import subprocess
|
2015-10-07 10:48:01 +02:00
|
|
|
import time
|
|
|
|
|
2015-12-20 09:30:30 +01:00
|
|
|
from elodie import constants
|
2015-10-20 10:17:09 +02:00
|
|
|
from media import Media
|
|
|
|
from elodie import geolocation
|
2015-10-07 10:48:01 +02:00
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
|
2015-10-07 10:48:01 +02:00
|
|
|
class Photo(Media):
|
2016-01-08 23:49:06 +01:00
|
|
|
|
|
|
|
"""A photo object.
|
|
|
|
|
|
|
|
:param str source: The fully qualified path to the photo file
|
|
|
|
"""
|
|
|
|
|
2015-11-19 11:31:32 +01:00
|
|
|
__name__ = 'Photo'
|
2016-01-08 23:49:06 +01:00
|
|
|
|
|
|
|
#: Valid extensions for photo files.
|
2015-12-11 08:07:01 +01:00
|
|
|
extensions = ('jpg', 'jpeg', 'nef', 'dng', 'gif')
|
2015-10-07 10:48:01 +02:00
|
|
|
|
|
|
|
def __init__(self, source=None):
|
|
|
|
super(Photo, self).__init__(source)
|
|
|
|
|
|
|
|
# We only want to parse EXIF once so we store it here
|
|
|
|
self.exif = None
|
2016-01-02 08:23:06 +01:00
|
|
|
|
2015-10-07 10:48:01 +02:00
|
|
|
def get_duration(self):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Get the duration of a photo in seconds. Uses ffmpeg/ffprobe.
|
|
|
|
|
|
|
|
:returns: str or None for a non-photo file
|
|
|
|
"""
|
2015-10-07 10:48:01 +02:00
|
|
|
if(not self.is_valid()):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source = self.source
|
2016-01-02 08:23:06 +01:00
|
|
|
result = subprocess.Popen(
|
|
|
|
['ffprobe', source],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT
|
|
|
|
)
|
2015-10-07 10:48:01 +02:00
|
|
|
for key in result.stdout.readlines():
|
|
|
|
if 'Duration' in key:
|
2016-01-02 08:23:06 +01:00
|
|
|
return re.search(
|
|
|
|
'(\d{2}:\d{2}.\d{2})',
|
|
|
|
key
|
|
|
|
).group(1).replace('.', ':')
|
2015-10-07 10:48:01 +02:00
|
|
|
return None
|
|
|
|
|
2015-12-11 08:07:01 +01:00
|
|
|
def get_coordinate(self, type='latitude'):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Get latitude or longitude of photo from EXIF
|
|
|
|
|
|
|
|
:param str type: Type of coordinate to get. Either "latitude" or
|
|
|
|
"longitude".
|
|
|
|
:returns: float or None if not present in EXIF or a non-photo file
|
|
|
|
"""
|
2015-12-11 08:07:01 +01:00
|
|
|
if(not self.is_valid()):
|
|
|
|
return None
|
|
|
|
|
2016-02-12 20:22:26 +01:00
|
|
|
key = self.exif_map[type]
|
2015-12-11 08:07:01 +01:00
|
|
|
exif = self.get_exif()
|
|
|
|
|
|
|
|
if(key not in exif):
|
|
|
|
return None
|
|
|
|
|
|
|
|
try:
|
2016-01-02 08:23:06 +01:00
|
|
|
# this is a hack to get the proper direction by negating the
|
|
|
|
# values for S and W
|
2015-12-11 08:07:01 +01:00
|
|
|
coords = exif[key].value
|
2016-02-12 20:22:26 +01:00
|
|
|
return geolocation.dms_to_decimal(
|
2016-02-14 09:55:39 +01:00
|
|
|
*coords,
|
|
|
|
direction=exif[self.exif_map[self.d_coordinates[type]]].value
|
|
|
|
)
|
2016-02-12 20:22:26 +01:00
|
|
|
|
2015-12-11 08:07:01 +01:00
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
2015-12-12 09:43:49 +01:00
|
|
|
def get_date_taken(self):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Get the date which the photo was taken.
|
|
|
|
|
|
|
|
The date value returned is defined by the min() of mtime and ctime.
|
|
|
|
|
|
|
|
:returns: time object or None for non-photo files or 0 timestamp
|
|
|
|
"""
|
2015-12-12 09:43:49 +01:00
|
|
|
if(not self.is_valid()):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source = self.source
|
2016-01-02 08:23:06 +01:00
|
|
|
seconds_since_epoch = min(os.path.getmtime(source), os.path.getctime(source)) # noqa
|
2015-12-12 09:43:49 +01:00
|
|
|
# We need to parse a string from EXIF into a timestamp.
|
2016-01-02 08:23:06 +01:00
|
|
|
# EXIF DateTimeOriginal and EXIF DateTime are both stored
|
|
|
|
# in %Y:%m:%d %H:%M:%S format
|
|
|
|
# we use date.strptime -> .timetuple -> time.mktime to do
|
|
|
|
# the conversion in the local timezone
|
2015-12-12 09:43:49 +01:00
|
|
|
# EXIF DateTime is already stored as a timestamp
|
2016-01-02 08:23:06 +01:00
|
|
|
# Sourced from https://github.com/photo/frontend/blob/master/src/libraries/models/Photo.php#L500 # noqa
|
2015-12-12 09:43:49 +01:00
|
|
|
exif = self.get_exif()
|
|
|
|
for key in self.exif_map['date_taken']:
|
|
|
|
try:
|
|
|
|
if(key in exif):
|
2016-01-02 08:23:06 +01:00
|
|
|
if(re.match('\d{4}(-|:)\d{2}(-|:)\d{2}', str(exif[key].value)) is not None): # noqa
|
|
|
|
seconds_since_epoch = time.mktime(exif[key].value.timetuple()) # noqa
|
|
|
|
break
|
2015-12-12 09:43:49 +01:00
|
|
|
except BaseException as e:
|
2016-01-02 08:23:06 +01:00
|
|
|
if(constants.debug is True):
|
2015-12-12 09:43:49 +01:00
|
|
|
print e
|
|
|
|
pass
|
|
|
|
|
|
|
|
if(seconds_since_epoch == 0):
|
|
|
|
return None
|
|
|
|
|
|
|
|
return time.gmtime(seconds_since_epoch)
|
|
|
|
|
2015-12-11 08:07:01 +01:00
|
|
|
def is_valid(self):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Check the file extension against valid file extensions.
|
|
|
|
|
|
|
|
The list of valid file extensions come from self.extensions. This
|
|
|
|
also checks whether the file is an image.
|
|
|
|
|
|
|
|
:returns: bool
|
|
|
|
"""
|
2015-12-11 08:07:01 +01:00
|
|
|
source = self.source
|
|
|
|
|
|
|
|
# gh-4 This checks if the source file is an image.
|
|
|
|
# It doesn't validate against the list of supported types.
|
|
|
|
if(imghdr.what(source) is None):
|
2016-01-02 08:23:06 +01:00
|
|
|
return False
|
2015-12-11 08:07:01 +01:00
|
|
|
|
|
|
|
return os.path.splitext(source)[1][1:].lower() in self.extensions
|
|
|
|
|
2015-11-30 07:01:27 +01:00
|
|
|
def set_date_taken(self, time):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Set the date/time a photo was taken.
|
|
|
|
|
|
|
|
:param datetime time: datetime object of when the photo was taken
|
|
|
|
:returns: bool
|
|
|
|
"""
|
2015-10-20 10:17:09 +02:00
|
|
|
if(time is None):
|
|
|
|
return False
|
|
|
|
|
|
|
|
source = self.source
|
|
|
|
exif_metadata = pyexiv2.ImageMetadata(source)
|
|
|
|
exif_metadata.read()
|
|
|
|
|
2016-01-13 05:44:15 +01:00
|
|
|
# Writing exif with pyexiv2 differs if the key already exists so we
|
|
|
|
# handle both cases here.
|
|
|
|
for key in ['Exif.Photo.DateTimeOriginal', 'Exif.Image.DateTime']:
|
|
|
|
if(key in exif_metadata):
|
|
|
|
exif_metadata[key].value = time
|
|
|
|
else:
|
|
|
|
exif_metadata[key] = pyexiv2.ExifTag(key, time)
|
2015-10-20 10:17:09 +02:00
|
|
|
|
|
|
|
exif_metadata.write()
|
|
|
|
return True
|
|
|
|
|
|
|
|
def set_location(self, latitude, longitude):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Set latitude and longitude for a photo.
|
|
|
|
|
|
|
|
:param float latitude: Latitude of the file
|
|
|
|
:param float longitude: Longitude of the file
|
|
|
|
:returns: bool
|
|
|
|
"""
|
2015-10-20 10:17:09 +02:00
|
|
|
if(latitude is None or longitude is None):
|
|
|
|
return False
|
|
|
|
|
|
|
|
source = self.source
|
|
|
|
exif_metadata = pyexiv2.ImageMetadata(source)
|
|
|
|
exif_metadata.read()
|
|
|
|
|
2016-01-02 08:23:06 +01:00
|
|
|
exif_metadata['Exif.GPSInfo.GPSLatitude'] = geolocation.decimal_to_dms(latitude, False) # noqa
|
|
|
|
exif_metadata['Exif.GPSInfo.GPSLatitudeRef'] = pyexiv2.ExifTag('Exif.GPSInfo.GPSLatitudeRef', 'N' if latitude >= 0 else 'S') # noqa
|
|
|
|
exif_metadata['Exif.GPSInfo.GPSLongitude'] = geolocation.decimal_to_dms(longitude, False) # noqa
|
|
|
|
exif_metadata['Exif.GPSInfo.GPSLongitudeRef'] = pyexiv2.ExifTag('Exif.GPSInfo.GPSLongitudeRef', 'E' if longitude >= 0 else 'W') # noqa
|
2015-10-20 10:17:09 +02:00
|
|
|
|
|
|
|
exif_metadata.write()
|
|
|
|
return True
|
|
|
|
|
2015-10-28 08:19:21 +01:00
|
|
|
def set_title(self, title):
|
2016-01-08 23:49:06 +01:00
|
|
|
"""Set title for a photo.
|
|
|
|
|
|
|
|
:param str title: Title of the photo.
|
|
|
|
:returns: bool
|
|
|
|
"""
|
2015-10-28 08:19:21 +01:00
|
|
|
if(title is None):
|
|
|
|
return False
|
|
|
|
|
|
|
|
source = self.source
|
|
|
|
exif_metadata = pyexiv2.ImageMetadata(source)
|
|
|
|
exif_metadata.read()
|
|
|
|
|
|
|
|
exif_metadata['Xmp.dc.title'] = title
|
|
|
|
|
|
|
|
exif_metadata.write()
|
|
|
|
return True
|