File: gpodder-migrate2tres

package info (click to toggle)
gpodder 3.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,272 kB
  • sloc: python: 19,713; sh: 574; xml: 122; makefile: 112
file content (127 lines) | stat: -rwxr-xr-x 3,811 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

#
# gPodder - A media aggregator and podcast client
# Copyright (c) 2005-2018 The gPodder Team
#
# gPodder is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# gPodder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY 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/>.
#


# gpodder-migrate2tres - Migrate data from gPodder 2.x to gPodder 3
# by Thomas Perl <thp@gpodder.org>; 2011-04-28


import configparser
import os
import shutil
import sys

gpodder_script = sys.argv[0]
gpodder_script = os.path.realpath(gpodder_script)
gpodder_dir = os.path.join(os.path.dirname(gpodder_script), '..')
prefix = os.path.abspath(os.path.normpath(gpodder_dir))

src_dir = os.path.join(prefix, 'src')

if os.path.exists(os.path.join(src_dir, 'gpodder', '__init__.py')):
    # Run gPodder from local source folder (not installed)
    sys.path.insert(0, src_dir)

import gpodder  # isort:skip

gpodder.prefix = prefix

from gpodder import schema, util  # isort:skip

old_database = os.path.expanduser('~/.config/gpodder/database.sqlite')
new_database = gpodder.database_file

old_config = os.path.expanduser('~/.config/gpodder/gpodder.conf')
new_config = gpodder.config_file

if not os.path.exists(old_database):
    print("""
    Turns out that you never ran gPodder 2.
    Can't find this required file:

       %(old_database)s
    """ % locals(), file=sys.stderr)
    sys.exit(1)

old_downloads = None

if os.path.exists(old_config):
    parser = configparser.RawConfigParser()
    parser.read(old_config)
    try:
        old_downloads = parser.get('gpodder-conf-1', 'download_dir')
    except configparser.NoSectionError:
        # The file is empty / section (gpodder-conf-1) not found
        pass
    except configparser.NoOptionError:
        # The section is available, but the key (download_dir) is not
        pass

if old_downloads is None:
    # The user has no configuration. This usually happens when
    # only the CLI version of gPodder is used. In this case, the
    # download directory is most likely the default (bug 1434)
    old_downloads = os.path.expanduser('~/gpodder-downloads')

new_downloads = gpodder.downloads

if not os.path.exists(old_downloads):
    print("""
    Old download directory does not exist. Creating empty one.
    """, file=sys.stderr)
    os.makedirs(old_downloads)

if any(os.path.exists(x) for x in (new_database, new_downloads)):
    print("""
    Existing gPodder 3 user data found.
    To continue, please remove:

       %(new_database)s
       %(new_downloads)s
    """ % locals(), file=sys.stderr)
    sys.exit(1)

print("""
  Would carry out the following actions:

      Move downloads from %(old_downloads)s
                       to %(new_downloads)s

      Convert database from %(old_database)s
                         to %(new_database)s

""" % locals(), file=sys.stderr)

result = input('Continue? (Y/n) ')

if result in 'Yy':
    util.make_directory(gpodder.home)
    schema.convert_gpodder2_db(old_database, new_database)
    if not os.path.exists(new_database):
        print('Could not convert database.', file=sys.stderr)
        sys.exit(1)

    shutil.move(old_downloads, new_downloads)
    if not os.path.exists(new_downloads):
        print('Could not move downloads.', file=sys.stderr)
        sys.exit(1)

    print('Done. Have fun with gPodder 3!')