This file is indexed.

/usr/share/nautilus-image-manipulator/nautilus_image_manipulator/ImageManipulations.py is in nautilus-image-manipulator 1.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# -*- coding: utf-8 -*-
### BEGIN LICENSE
# Copyright (C) 2010-2013 Emilien Klein <emilien _AT_ klein _DOT_ st>
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
# PURPOSE.  See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program.  If not, see <http://www.gnu.org/licenses/>.
### END LICENSE

import os
from gi.repository import GObject
import zipfile
import subprocess
import Image
import logging
try:
    from gi.repository import GExiv2
except ImportError:
    pass

import gettext
from gettext import gettext as _
gettext.textdomain('nautilus-image-manipulator')

class ImageManipulations(GObject.GObject):
    def __init__(self, dialog, files, p):
        super(ImageManipulations, self).__init__()
        self.resizeDialog = dialog
        self.origFiles = files
        self.numFiles = len(self.origFiles)
        self.profile = p

        # Clean the subdirectory name input
        if self.profile.foldername:
            # Remove eventual slashes at the beginning or end of the subdirectory name
            cleanfoldername = []
            for i in self.profile.foldername.split("/"):
                if i:
                    cleanfoldername.append(i)
            self.profile.foldername = "/".join(cleanfoldername)

        logging.debug('files: %s' % self.origFiles)
        str = "Resizing parameters:\n"
        str += '- width: %s\n' % self.profile.width
        str += '- height: %s\n' % self.profile.height
        str += '- percent: %s\n' % self.profile.percent
        str += '- quality: %s\n' % self.profile.quality
        str += '- destination: %s\n' % self.profile.destination
        str += '- appendstring: %s\n' % self.profile.appendstring
        str += '- foldername: %s' % self.profile.foldername
        str += '- zipname: %s' % self.profile.zipname
        str += '- url: %s' % self.profile.url
        logging.debug(str)

    def resize_images(self):
        """Loops over all files to resize them."""
        if self.profile.percent and self.profile.percent == "100" and self.profile.quality == "100":
            # If scaling to 100% with a compression of 100%, don't
            # actually resize files (it would just degrade the quality)
            # This configuration might be used if the user just wants to
            # send the zipped files via Internet
            self.newFiles = self.origFiles
        else:
            # Resize and/or compress the images
            i = float(0)
            self.newFiles = []
            for f in self.origFiles:
                (skip, cancel, newFileName) = self.resize_one_image(f)
                if cancel:
                    break
                if not skip:
                    self.newFiles.append(newFileName)
                i += 1
                percent = i / self.numFiles
                self.resizeDialog.o("progressbar").set_text("%s %d%%" % (_("Resizing images..."), int(percent * 100)))
                self.resizeDialog.o("progressbar").set_fraction(percent)
                # There's more work, return True
                yield True
        # Signal we are done resizing
        self.emit("resizing_done")
        # No more work, return False
        yield False

    def resize_one_image(self, fileName):
        """Performs the resizing operation on one image.

        The return value indicates if this resizing operation was successful.
        """
        logging.debug('resizing image: %s' % fileName)
        skip = False
        cancel = False

        (basePath, name) = os.path.split(fileName)

        if self.profile.destination == 'folder':
            basePath = "%s/%s" % (basePath, self.profile.foldername)
        if self.profile.destination == 'upload':
            # Put the images in a temporary folder named similarly to the
            # zipfile (without the ".zip" at the end)
            basePath = "%s/%s" % (basePath, self.profile.zipname[:-4])
        logging.debug('basePath: %s' % basePath)
        logging.debug('name: %s' % name)

        if self.profile.destination == 'append':
            # Insert the append string and convert the extension to lower case
            n = os.path.splitext(name)
            name = "%s%s%s" % (n[0], self.profile.appendstring, n[1].lower())

        # This is the output filename
        newFileName = "%s/%s.%s" % (basePath, os.path.splitext(name)[0], "jpg")
        logging.debug('newFileName: %s' % newFileName)

        # Make sure the directory exists
        # Note: a new subdirectory will also need to be created if a / was
        # entered in the appendString
        try: os.makedirs("/".join(newFileName.split("/")[:-1]))
        except: pass

        # Open image with PIL
        im = Image.open(fileName)
        # Get original geometry
        (w, h) = im.size
        logging.debug('Original image size %sx%s' % (w, h))
        if self.profile.percent:
            # New geometry is a %
            factor = int(self.profile.percent) / 100.0
            width = int(w * factor)
            height = int(h * factor)
        else:
            # New geometry is in pixels: aspect ratio is respected and the
            # resulting image fits inside the given dimensions.
            aspectratio = float(w) / float(h)
            if self.profile.aspectratio < aspectratio:
                width = self.profile.width
                height = int(float(self.profile.width) / aspectratio)
            else:
                width = int(float(self.profile.height) * aspectratio)
                height = self.profile.height

        logging.debug('New image size %sx%s' % (width, height))
        # Resize and save image
        im = im.resize((int(width), int(height)))
        retry = False
        try:
            im.save(newFileName, "JPEG", quality=int(self.profile.quality))
        except IOError as (errno, strerror):
            logging.error("I/O error({0}): {1}".format(errno, strerror))
            (skip, cancel, retry) = self.resizeDialog.error_resizing(fileName)
        if retry:
            # Retry with the same image
            (skip, cancel, newFileName) = self.resize_one_image(fileName)

        if not (skip or retry or cancel):
            try:
                # Load EXIF data
                exif = GExiv2.Metadata(fileName)
                # Change EXIF image size to the new size
                exif["Exif.Photo.PixelXDimension"] = str(int(width))
                exif["Exif.Photo.PixelYDimension"] = str(int(height))
                # Copy the EXIF data to the new image
                newExif = GExiv2.Metadata(newFileName)
                for tag in exif.get_exif_tags():
                    newExif[tag] = exif[tag]
                newExif.save_file()
            except NameError:
                logging.info(
                    "GExiv2 is not available, EXIF data won't be copied over")
        return (skip, cancel, newFileName)

    def pack_images(self):
        """Creates a zip file containing the modified files"""
        # Generate the name of the zipfile
        dirname = os.path.dirname(self.origFiles[0])
        if not dirname:
            # Put the zipfile in the user's home folder if no base directory name could be determined.
            dirname = os.path.expanduser("~")
        zipname = self.profile.zipname

        # Create the final zip file name
        self.zipfile = os.path.join(dirname, zipname)

        # Zip the files into a PKZIP format .zip file
        zout = zipfile.ZipFile(self.zipfile, "w")
        i = float(0)
        for fname in self.newFiles:
            fzname = os.path.basename(fname)
            #TODO: Check what to do with non-ASCII filenames
            zout.write(fname, fzname, zipfile.ZIP_DEFLATED)
            i += 1
            percent = i / self.numFiles
            self.resizeDialog.o("progressbar").set_text("%s %d%%" % (_("Packing images..."), int(percent * 100)))
            self.resizeDialog.o("progressbar").set_fraction(percent)
            # There's more work, return True
            yield True
        zout.close() # Close the zip file

        # TODO: check with zipfile.is_zipfile(self.zipfile) and ZipFile.testzip() if the generated zipfile is valid

        # Signal we are done packing
        self.emit("packing_done", self.zipfile)
        # No more work, return False
        yield False


GObject.type_register(ImageManipulations)
GObject.signal_new("resizing_done", ImageManipulations, GObject.SignalFlags.RUN_FIRST, None, ())
GObject.signal_new("packing_done", ImageManipulations, GObject.SignalFlags.RUN_FIRST, None, (GObject.TYPE_STRING,))

if __name__ == "__main__":
    pass