Skip to content
Snippets Groups Projects
Commit 78c57e2d authored by Moul's avatar Moul
Browse files

[fix] #154: use os independent method to retrieve terminal width

- variable renamed, height not necessary, int type as output
parent cb39403e
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License ...@@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License
along with Silkaj. If not, see <https://www.gnu.org/licenses/>. along with Silkaj. If not, see <https://www.gnu.org/licenses/>.
""" """
from click import command, option, argument, IntRange from click import command, option, argument, IntRange, get_terminal_size
from datetime import datetime from datetime import datetime
from time import sleep from time import sleep
from os import system, popen from os import system, popen
...@@ -150,10 +150,9 @@ def get_network_sort_key(endpoint): ...@@ -150,10 +150,9 @@ def get_network_sort_key(endpoint):
async def network_info(discover, sort): async def network_info(discover, sort):
global network_sort_keys global network_sort_keys
network_sort_keys = sort.split(",") network_sort_keys = sort.split(",")
rows, columns = popen("stty size", "r").read().split() width = get_terminal_size()[0]
wide = int(columns) if width < 146:
if wide < 146: message_exit("Wide screen need to be larger than 146. Current width: " + width)
message_exit("Wide screen need to be larger than 146. Current wide: " + wide)
# discover peers # discover peers
# and make sure fields are always ordered the same # and make sure fields are always ordered the same
endpoints = [ endpoints = [
...@@ -200,11 +199,11 @@ async def network_info(discover, sort): ...@@ -200,11 +199,11 @@ async def network_info(discover, sort):
current_blk = await sub_client(blockchain.current) current_blk = await sub_client(blockchain.current)
if current_blk is not None: if current_blk is not None:
endpoints[i]["gen_time"] = convert_time(current_blk["time"], "hour") endpoints[i]["gen_time"] = convert_time(current_blk["time"], "hour")
if wide > 171: if width > 171:
endpoints[i]["mediantime"] = convert_time( endpoints[i]["mediantime"] = convert_time(
current_blk["medianTime"], "hour" current_blk["medianTime"], "hour"
) )
if wide > 185: if width > 185:
endpoints[i]["difftime"] = convert_time( endpoints[i]["difftime"] = convert_time(
current_blk["time"] - current_blk["medianTime"], "hour" current_blk["time"] - current_blk["medianTime"], "hour"
) )
...@@ -216,7 +215,7 @@ async def network_info(discover, sort): ...@@ -216,7 +215,7 @@ async def network_info(discover, sort):
if endpoints[i].get("domain") is not None and len(endpoints[i]["domain"]) > 20: if endpoints[i].get("domain") is not None and len(endpoints[i]["domain"]) > 20:
endpoints[i]["domain"] = "" + endpoints[i]["domain"][-20:] endpoints[i]["domain"] = "" + endpoints[i]["domain"][-20:]
if endpoints[i].get("ip6") is not None: if endpoints[i].get("ip6") is not None:
if wide < 156: if width < 156:
endpoints[i].pop("ip6") endpoints[i].pop("ip6")
else: else:
endpoints[i]["ip6"] = endpoints[i]["ip6"][:8] + "" endpoints[i]["ip6"] = endpoints[i]["ip6"][:8] + ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment