Example #1
0
    def merge_tags(self, args):
        """Takes tags from a source file and adds them to a destination file"""

        # check if source file actually exists
        try:
            catalog.File.get(catalog.File.file_name == args.source)
        except:
            print "Sorry! '%s' isn't  in the catalog" % args.source
            return

        # check if destination file actually exists
        try:
            catalog.File.get(catalog.File.file_name == args.dest)
        except:
            print "Sorry! '%s' isn't  in the catalog" % args.dest
            return

        # Creates sets of tags associated with source file
        # and destination file respectively
        source_file_tags = set(catalog.get_tags(args.source))
        dest_file_tags = set(catalog.get_tags(args.dest))

        # Union of source and dest tags;
        # these will now all be associated with the destination file
        union_of_source_dest_tags = source_file_tags.union(dest_file_tags)

        # get the destination file's entry in the database
        destination_file = catalog.File.get(catalog.File.file_name == args.dest)

        # take tags unique to source file and give them to destination file
        for tag in union_of_source_dest_tags:
            tag = catalog.Tag.get(catalog.Tag.tag_name == tag)
            catalog.tag_a_file(destination_file, tag, False)
Example #2
0
    def clean_catalog(self, args):
        """
        Removes all expired entries from catalog.

        If optional [-t] used,
        removes listed tags from entire catalog.
        """

        if not self.old_files:

            print "There are no expired entries in the catalog"

        else:
            choice = raw_input("Delete all expired entries in the catalog?"
                               "Press 'Y' to continue.")

            if choice.lower() == 'y':

                for file_name in self.old_files:

                    # These are the tags currently associated with
                    # the to-be-deleted file name
                    file_name_tags = catalog.get_tags(file_name)

                    # Deletes file-tag relationships first. Needed to ensure
                    # that database remains clean and that when
                    # viewing tags sorted by count, the numbers are accurate.
                    for tag_name in file_name_tags:

                        catalog.delete_entry('tag',
                                             tag_name.lower().strip(),
                                             file_name)

                    # Now officially delete the entry from the database
                    catalog.delete_entry('files', file_name)
            else:
                pass

        # delete specified tags from entire catalog
        if args.tags:

            for tag in args.tags:
                catalog.delete_entry('tag', tag.strip())
        else:
            pass
Example #3
0
    def delete_entry(self, args):
        """
        Removes specified file from catalog.

        If optional [-t] used,
        removes tags from their association with specified file
        (file remains in catalog).
        """

        file_name = args.file.strip()

        if not args.tags:
            choice = raw_input("Remove '%s' from catalog entirely?\n"
                               "Press 'Y' to continue: " % args.file.strip())

            if choice.lower() == 'y':

                # These are the tags currently associated with
                # the to-be-deleted file name
                file_name_tags = catalog.get_tags(file_name)

                # Deletes file-tag relationships first.
                # Needed to ensure that database remains clean and that
                # when viewing tags sorted by count, the numbers are accurate.
                for tag_name in file_name_tags:

                    catalog.delete_entry('tag',
                                         tag_name.lower().strip(),
                                         file_name)

                # Now delete the officially delete the entry from the database
                catalog.delete_entry('files', file_name)
        else:

            # delete specified tag(s) association from specified file
            for tag in args.tags:

                catalog.delete_entry('tag', tag.strip(), file_name)