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
|
# Authors:
# Endi S. Dewata <edewata@redhat.com>
#
# This program 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; version 2 of the License.
#
# This program 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2013 Red Hat, Inc.
# All rights reserved.
#
"""
Module containing utility functions and classes for the Dogtag python code
"""
from __future__ import absolute_import
import os
import shutil
def copy(source, dest):
"""
Copy a file or a folder and its contents.
"""
# remove trailing slashes
if source[-1] == '/':
source = source[:-1]
if dest[-1] == '/':
dest = dest[:-1]
sourceparent = os.path.dirname(source)
destparent = os.path.dirname(dest)
copydirs(sourceparent, destparent)
if os.path.isfile(source):
copyfile(source, dest)
else:
for sourcepath, _, filenames in os.walk(source):
relpath = sourcepath[len(source):]
destpath = dest + relpath
if destpath == '':
destpath = '/'
copydirs(sourcepath, destpath)
for filename in filenames:
sourcefile = os.path.join(sourcepath, filename)
targetfile = os.path.join(destpath, filename)
copyfile(sourcefile, targetfile)
def copyfile(source, dest, overwrite=True):
"""
Copy a file or link while preserving its attributes.
"""
# if dest already exists and not overwriting, do nothing
if os.path.exists(dest) and not overwrite:
return
if os.path.islink(source):
target = os.readlink(source)
os.symlink(target, dest)
stat = os.lstat(source)
os.lchown(dest, stat.st_uid, stat.st_gid)
else:
shutil.copyfile(source, dest)
stat = os.stat(source)
os.utime(dest, (stat.st_atime, stat.st_mtime))
os.chmod(dest, stat.st_mode)
os.chown(dest, stat.st_uid, stat.st_gid)
def copydirs(source, dest):
"""
Copy a folder and its parents while preserving their attributes.
"""
if os.path.exists(dest):
return
destparent = os.path.dirname(dest)
if not os.path.exists(destparent):
sourceparent = os.path.dirname(source)
copydirs(sourceparent, destparent)
os.mkdir(dest)
stat = os.stat(source)
os.utime(dest, (stat.st_atime, stat.st_mtime))
os.chmod(dest, stat.st_mode)
os.chown(dest, stat.st_uid, stat.st_gid)
def chown(path, uid, gid):
"""
Change ownership of a folder and its contents.
"""
os.chown(path, uid, gid)
for item in os.listdir(path):
itempath = os.path.join(path, item)
if os.path.isfile(itempath):
os.chown(itempath, uid, gid)
elif os.path.isdir(itempath):
chown(itempath, uid, gid)
def customize_file(input_file, output_file, params):
"""
Customize a file with specified parameters.
"""
with open(input_file) as infile, open(output_file, 'w') as outfile:
for line in infile:
for src, target in params.items():
line = line.replace(src, target)
outfile.write(line)
|