48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
"""Onionr - Private P2P Communication.
|
|
|
|
Command to show version info
|
|
"""
|
|
import platform
|
|
from utils import identifyhome
|
|
import onionrvalues
|
|
import logger
|
|
"""
|
|
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, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
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, see <https://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
|
|
def version(verbosity=5, function=logger.info):
|
|
"""Display the Onionr version."""
|
|
function('Onionr v%s (%s) (API v%s)' % (onionrvalues.ONIONR_VERSION,
|
|
platform.machine(),
|
|
onionrvalues.API_VERSION),
|
|
terminal=True)
|
|
if verbosity >= 1:
|
|
function(onionrvalues.ONIONR_TAGLINE, terminal=True)
|
|
if verbosity >= 2:
|
|
pf = platform.platform()
|
|
release = platform.release()
|
|
python_imp = platform.python_implementation()
|
|
python_version = platform.python_version()
|
|
function(
|
|
f'{python_imp} {python_version} on {pf} {release}',
|
|
terminal=True)
|
|
function('Onionr data dir: %s' %
|
|
identifyhome.identify_home(), terminal=True)
|
|
|
|
|
|
version.onionr_help = 'Shows environment details including ' # type: ignore
|
|
version.onionr_help += 'Onionr version & data directory, ' # type: ignore
|
|
version.onionr_help += 'OS and Python version' # type: ignore
|