forked from pypa/twine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
134 lines (110 loc) · 4.12 KB
/
utils.py
File metadata and controls
134 lines (110 loc) · 4.12 KB
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
# Copyright 2013 Donald Stufft
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import absolute_import, division, print_function
from __future__ import unicode_literals
import os
import os.path
import functools
import getpass
import sys
try:
import configparser
except ImportError: # pragma: no cover
import ConfigParser as configparser
# Shim for raw_input in python3
if sys.version_info > (3,):
input_func = input
else:
input_func = raw_input
DEFAULT_REPOSITORY = "https://pypi.python.org/pypi"
def get_config(path="~/.pypirc"):
# Expand user strings in the path
path = os.path.expanduser(path)
if not os.path.isfile(path):
return {"pypi": {"repository": DEFAULT_REPOSITORY,
"username": None,
"password": None
}
}
# Parse the rc file
parser = configparser.ConfigParser()
parser.read(path)
# Get a list of repositories from the config file
if (parser.has_section("distutils")
and parser.has_option("distutils", "index-servers")):
repositories = parser.get("distutils", "index-servers").split()
else:
repositories = ["pypi"]
config = {}
defaults = {"username": None, "password": None}
if parser.has_section("server-login"):
for key in ["username", "password"]:
if parser.has_option("server-login", key):
defaults[key] = parser.get("server-login", key)
for repository in repositories:
# Skip this repository if it doesn't exist in the config file
if not parser.has_section(repository):
continue
# Mandatory configuration and defaults
config[repository] = {
"repository": DEFAULT_REPOSITORY,
"username": None,
"password": None,
}
# Optional configuration values
for key in ["username", "repository", "password"]:
if parser.has_option(repository, key):
config[repository][key] = parser.get(repository, key)
elif defaults.get(key):
config[repository][key] = defaults[key]
return config
def get_userpass_value(cli_value, config, key, prompt_strategy):
"""Gets the username / password from config.
Uses the following rules:
1. If it is specified on the cli (`cli_value`), use that.
2. If `config[key]` is specified, use that.
3. Otherwise prompt using `prompt_strategy`.
:param cli_value: The value supplied from the command line or `None`.
:type cli_value: unicode or `None`
:param config: Config dictionary
:type config: dict
:param key: Key to find the config value.
:type key: unicode
:prompt_strategy: Argumentless function to return fallback value.
:type prompt_strategy: function
:returns: The value for the username / password
:rtype: unicode
"""
if cli_value is not None:
return cli_value
elif config.get(key):
return config[key]
else:
return prompt_strategy()
def password_prompt(prompt_text): # Always expects unicode for our own sanity
prompt = prompt_text
# Workaround for https://github.com/pypa/twine/issues/116
if os.name == 'nt' and sys.version_info < (3, 0):
prompt = prompt_text.encode('utf8')
return functools.partial(getpass.getpass, prompt=prompt)
get_username = functools.partial(
get_userpass_value,
key='username',
prompt_strategy=functools.partial(input_func, 'Enter your username: '),
)
get_password = functools.partial(
get_userpass_value,
key='password',
prompt_strategy=password_prompt('Enter your password: '),
)