diff --git a/.dockerignore b/.dockerignore deleted file mode 120000 index 3e4e48b..0000000 --- a/.dockerignore +++ /dev/null @@ -1 +0,0 @@ -.gitignore \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index caf3250..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,11 +0,0 @@ -blank_issues_enabled: false -contact_links: - - name: ✨ Feature Request or Idea - url: https://github.com/markqvist/Reticulum/discussions/new?category=ideas - about: Propose and discuss features and ideas - - name: 💬 Questions, Help & Discussion - about: Ask anything, or get help - url: https://github.com/markqvist/Reticulum/discussions/new/choose - - name: 📖 Read the Reticulum Manual - url: https://markqvist.github.io/Reticulum/manual/ - about: The complete documentation for Reticulum diff --git a/.github/ISSUE_TEMPLATE/🐛-bug-report.md b/.github/ISSUE_TEMPLATE/🐛-bug-report.md deleted file mode 100644 index 65b492e..0000000 --- a/.github/ISSUE_TEMPLATE/🐛-bug-report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: "\U0001F41B Bug Report" -about: Report a reproducible bug -title: '' -labels: '' -assignees: '' - ---- - -**Read the Contribution Guidelines** -Before creating a bug report on this issue tracker, you **must** read the [Contribution Guidelines](https://github.com/markqvist/Reticulum/blob/master/Contributing.md). Issues that do not follow the contribution guidelines **will be deleted without comment**. - -- The issue tracker is used by developers of this project. **Do not use it to ask general questions, or for support requests**. -- Ideas and feature requests can be made on the [Discussions](https://github.com/markqvist/Reticulum/discussions). **Only** feature requests accepted by maintainers and developers are tracked and included on the issue tracker. **Do not post feature requests here**. -- After reading the [Contribution Guidelines](https://github.com/markqvist/Reticulum/blob/master/Contributing.md), **delete this section only** (*"Read the Contribution Guidelines"*) from your bug report, **and fill in all the other sections**. - -**Describe the Bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Describe in detail how to reproduce the bug. - -**Expected Behavior** -A clear and concise description of what you expected to happen. - -**Logs & Screenshots** -Please include any relevant log output. If applicable, also add screenshots to help explain your problem. - -**System Information** -- OS and version -- Python version -- Program version - -**Additional context** -Add any other context about the problem here. diff --git a/.github/workflows/publish-container.yml b/.github/workflows/publish-container.yml deleted file mode 100644 index b013a5a..0000000 --- a/.github/workflows/publish-container.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Create and publish a Docker image - -on: - push: - branches: ['master'] - tags: ['*.*.*'] - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -jobs: - build-and-push-image: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Log in to the Container registry - uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - - name: Build and push Docker image - uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index e9920e1..0000000 --- a/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM python:3.12-alpine as build - -RUN apk add --no-cache build-base linux-headers libffi-dev cargo - -# Create a virtualenv that we'll copy to the published image -RUN python -m venv /opt/venv -ENV PATH="/opt/venv/bin:$PATH" -RUN pip3 install setuptools-rust pyopenssl cryptography - -COPY . /app/ -RUN cd /app/ && pip3 install . - -# Use multi-stage build, as we don't need rust compilation on the final image -FROM python:3.12-alpine - -LABEL org.opencontainers.image.documentation="https://github.com/markqvist/NomadNet#nomad-network-daemon-with-docker" - -ENV PATH="/opt/venv/bin:$PATH" -ENV PYTHONUNBUFFERED="yes" -COPY --from=build /opt/venv /opt/venv - -VOLUME /root/.reticulum -VOLUME /root/.nomadnetwork - -ENTRYPOINT ["nomadnet"] -CMD ["--daemon"] diff --git a/Dockerfile.build b/Dockerfile.build deleted file mode 100644 index e28e9bd..0000000 --- a/Dockerfile.build +++ /dev/null @@ -1,28 +0,0 @@ -FROM python:alpine -LABEL authors="Petr Blaha petr.blaha@cleverdata.cz" -USER root -RUN apk update -RUN apk add build-base libffi-dev cargo pkgconfig linux-headers py3-virtualenv - -RUN addgroup -S myuser && adduser -S -G myuser myuser -USER myuser -WORKDIR /home/myuser - -RUN pip install --upgrade pip -RUN pip install setuptools-rust pyopenssl cryptography - - -ENV PATH="/home/myuser/.local/bin:${PATH}" - -################### BEGIN NomadNet ########################################### - - -COPY --chown=myuser:myuser . . - -#Python create virtual environment -RUN virtualenv /home/myuser/NomadNet/venv -RUN source /home/myuser/NomadNet/venv/bin/activate - -RUN make all - -################### END NomadNet ########################################### diff --git a/Dockerfile.howto b/Dockerfile.howto deleted file mode 100644 index cfd4ee8..0000000 --- a/Dockerfile.howto +++ /dev/null @@ -1,6 +0,0 @@ -# Run docker command one by one(all four), it will build NomadNet artifact and copy to dist directory. -# No need to build locally and install dependencies -docker build -t nomadnetdockerimage -f Dockerfile.build . -docker run -d -it --name nomadnetdockercontainer nomadnetdockerimage /bin/sh -docker cp nomadnetdockercontainer:/home/myuser/dist . -docker rm -f nomadnetdockercontainer \ No newline at end of file diff --git a/FUNDING.yml b/FUNDING.yml deleted file mode 100644 index d125d55..0000000 --- a/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -liberapay: Reticulum -ko_fi: markqvist -custom: "https://unsigned.io/donate" diff --git a/Makefile b/Makefile deleted file mode 100644 index 0aac3f3..0000000 --- a/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -all: release - -clean: - @echo Cleaning... - -rm -r ./build - -rm -r ./dist - -remove_symlinks: - @echo Removing symlinks for build... - -rm ./LXMF - -rm ./RNS - -create_symlinks: - @echo Creating symlinks... - -ln -s ../Reticulum/RNS ./ - -ln -s ../LXMF/LXMF ./ - -build_wheel: - python3 setup.py sdist bdist_wheel - -release: remove_symlinks build_wheel create_symlinks - -upload: - @echo Uploading to PyPi... - twine upload dist/* diff --git a/README.md b/README.md index 416eb7c..f10f75b 100755 --- a/README.md +++ b/README.md @@ -1,182 +1,51 @@ -# Nomad Network - Communicate Freely - -Off-grid, resilient mesh communication with strong encryption, forward secrecy and extreme privacy. +Nomad Network - Communicate Freely +========== ![Screenshot](https://github.com/markqvist/NomadNet/raw/master/docs/screenshots/1.png) -Nomad Network allows you to build private and resilient communications platforms that are in complete control and ownership of the people that use them. No signups, no agreements, no handover of any data, no permissions and gatekeepers. +The intention with this program is to provide a tool to that allows you to build private and resilient communications platforms that are in complete control and ownership of the people that use them. -Nomad Network is build on [LXMF](https://github.com/markqvist/LXMF) and [Reticulum](https://github.com/markqvist/Reticulum), which together provides the cryptographic mesh functionality and peer-to-peer message routing that Nomad Network relies on. This foundation also makes it possible to use the program over a very wide variety of communication mediums, from packet radio to fiber optics. +Nomad Network is build on [LXMF](https://github.com/markqvist/LXMF) and [Reticulum](https://github.com/markqvist/Reticulum), which together provides the cryptographic mesh functionality and peer-to-peer message routing that Nomad Network relies on. This foundation also makes it possible to use the program over a very wide variety of communication mediums, from packet radio to fiber. -Nomad Network does not need any connections to the public internet to work. In fact, it doesn't even need an IP or Ethernet network. You can use it entirely over packet radio, LoRa or even serial lines. But if you wish, you can bridge islanded networks over the Internet or private ethernet networks, or you can build networks running completely over the Internet. The choice is yours. Since Nomad Network uses Reticulum, it is efficient enough to run even over *extremely* low-bandwidth medium, and has been succesfully used over 300bps radio links. - -If you'd rather want to use an LXMF client with a graphical user interface, you may want to take a look at [Sideband](https://github.com/markqvist/sideband), which is available for Linux, Android and macOS. +Nomad Network does not need any connections to the public internet to work. In fact, it doesn't even need an IP or Ethernet network. You can use it entirely over packet radio, LoRa or even serial lines. But if you wish, you can bridge islanded Reticulum networks over the Internet or private ethernet networks, or you can build networks running completely over the Internet. The choice is yours. ## Notable Features - Encrypted messaging over packet-radio, LoRa, WiFi or anything else [Reticulum](https://github.com/markqvist/Reticulum) supports. - Zero-configuration, minimal-infrastructure mesh communication - - Distributed and encrypted message store holds messages for offline users - Connectable nodes that can host pages and files - Node-side generated pages with PHP, Python, bash or others - Built-in text-based browser for interacting with contents on nodes - An easy to use and bandwidth efficient markup language for writing pages - Page caching in browser +## Current Status +The current version of the program should be considered a beta release. The program works well, but there will most probably be bugs and possibly sub-optimal performance in some scenarios. On the other hand, this is the ideal time to have an influence on the direction of the development of Nomad Network. To do so, join the discussion, report bugs and request features here on the GitHub project. + +### Feature roadmap + - Access control and authentication for nodes, pages and files + - Network-wide propagated messaging and discussion threads + - Geospatial information sharing + - Distributed Marketplace + +## Dependencies: + - Python 3 + - RNS + - LXMF + ## How do I get started? The easiest way to install Nomad Network is via pip: ```bash # Install Nomad Network and dependencies -pip install nomadnet +pip3 install nomadnet # Run the client nomadnet - -# Or alternatively run as a daemon, with no user interface -nomadnet --daemon - -# List options -nomadnet --help ``` -If you are using an operating system that blocks normal user package installation via `pip`, you can return `pip` to normal behaviour by editing the `~/.config/pip/pip.conf` file, and adding the following directive in the `[global]` section: +The first time the program is running, you will be presented with the guide section, which contains all the information you need to start using Nomad Network. -```text -[global] -break-system-packages = true -``` - -Alternatively, you can use the `pipx` tool to install Nomad Network in an isolated environment: - -```bash -# Install Nomad Network -pipx install nomadnet - -# Optionally install Reticulum utilities -pipx install rns - -# Optionally install standalone LXMF utilities -pipx install lxmf - -# Run the client -nomadnet - -# Or alternatively run as a daemon, with no user interface -nomadnet --daemon - -# List options -nomadnet --help -``` - -**Please Note**: If this is the very first time you use pip to install a program on your system, you might need to reboot your system for the program to become available. If you get a "command not found" error or similar when running the program, reboot your system and try again. - -The first time the program is running, you will be presented with the **Guide section**, which contains all the information you need to start using Nomad Network. - -To use Nomad Network on packet radio or LoRa, you will need to configure your Reticulum installation to use any relevant packet radio TNCs or LoRa devices on your system. See the [Reticulum documentation](https://markqvist.github.io/Reticulum/manual/interfaces.html) for info. For a general introduction on how to set up such a system, take a look at [this post](https://unsigned.io/private-messaging-over-lora/). - -If you want to try Nomad Network without building your own physical network, you can connect to the [Unsigned.io RNS Testnet](https://github.com/markqvist/Reticulum#public-testnet) over the Internet, where there is already some Nomad Network and LXMF activity. If you connect to the testnet, you can leave nomadnet running for a while and wait for it to receive announces from other nodes on the network that host pages or services, or you can try connecting directly to some nodes listed here: - - - `abb3ebcd03cb2388a838e70c001291f9` Dublin Hub Testnet Node - - `ea6a715f814bdc37e56f80c34da6ad51` Frankfurt Hub Testnet Node - -To browse pages on a node that is not currently known, open the URL dialog in the `Network` section of the program by pressing `Ctrl+U`, paste or enter the address and select `Go` or press enter. Nomadnet will attempt to discover and connect to the requested node. - -### Install on Android -You can install Nomad Network on Android using Termux, but there's a few more commands involved than the above one-liner. The process is documented in the [Android Installation](https://markqvist.github.io/Reticulum/manual/gettingstartedfast.html#reticulum-on-android) section of the Reticulum Manual. Once the Reticulum has been installed according to the linked documentation, Nomad Network can be installed as usual with pip. - -For a native Android application with a graphical user interface, have a look at [Sideband](https://github.com/markqvist/Sideband). - -### Docker Images - -Nomad Network is automatically published as a docker image on Github Packages. Image tags are one of either `master` (for the very latest commit) or the version number (eg `0.2.0`) for a specific release. - -```sh -$ docker pull ghcr.io/markqvist/nomadnet:master - -# Run nomadnet interactively in a container -$ docker run -it ghcr.io/markqvist/nomadnet:master --textui - -# Run nomadnet as a daemon, using config stored on the host machine in specified -# directories, and connect the containers network to the host network (which will -# allow the default AutoInterface to automatically peer with other discovered -# Reticulum instances). -$ docker run -d \ - -v /local/path/nomadnetconfigdir/:/root/.nomadnetwork/ \ - -v /local/path/reticulumconfigdir/:/root/.reticulum/ \ - --network host - ghcr.io/markqvist/nomadnet:master - -# You can also keep the network of the container isolated from the host, but you -# will need to manually configure one or more Reticulum interfaces to reach other -# nodes in a network, by editing the Reticulum configuration file. -$ docker run -d \ - -v /local/path/nomadnetconfigdir/:/root/.nomadnetwork/ \ - -v /local/path/reticulumconfigdir/:/root/.reticulum/ \ - ghcr.io/markqvist/nomadnet:master - -# Send daemon log output to console instead of file -$ docker run -i ghcr.io/markqvist/nomadnet:master --daemon --console -``` - -## Tools & Extensions - -Nomad Network is a very flexible and extensible platform, and a variety of community-provided tools, utilities and node-side extensions exist: - -- [NomadForum](https://codeberg.org/AutumnSpark1226/nomadForum) ([GitHub mirror](https://github.com/AutumnSpark1226/nomadForum)) -- [NomadForecast](https://github.com/faragher/NomadForecast) -- [micron-blog](https://github.com/randogoth/micron-blog) -- [md2mu](https://github.com/randogoth/md2mu) -- [Any2MicronConverter](https://github.com/SebastianObi/Any2MicronConverter) -- [Some nomadnet page examples](https://github.com/SebastianObi/NomadNet-Pages) -- [More nomadnet page examples](https://github.com/epenguins/NomadNet_pages) -- [LXMF-Bot](https://github.com/randogoth/lxmf-bot) -- [LXMF Messageboard](https://github.com/chengtripp/lxmf_messageboard) -- [LXMEvent](https://github.com/faragher/LXMEvent) -- [POPR](https://github.com/faragher/POPR) -- [LXMF Tools](https://github.com/SebastianObi/LXMF-Tools) - -## Help & Discussion - -For help requests, discussion, sharing ideas or anything else related to Nomad Network, please have a look at the [Nomad Network discussions pages](https://github.com/markqvist/Reticulum/discussions/categories/nomad-network). - -## Support Nomad Network -You can help support the continued development of open, free and private communications systems by donating via one of the following channels: - -- Monero: - ``` - 84FpY1QbxHcgdseePYNmhTHcrgMX4nFfBYtz2GKYToqHVVhJp8Eaw1Z1EedRnKD19b3B8NiLCGVxzKV17UMmmeEsCrPyA5w - ``` -- Bitcoin - ``` - bc1p4a6axuvl7n9hpapfj8sv5reqj8kz6uxa67d5en70vzrttj0fmcusgxsfk5 - ``` -- Ethereum - ``` - 0xae89F3B94fC4AD6563F0864a55F9a697a90261ff - ``` -- Ko-Fi: https://ko-fi.com/markqvist - -## Development Roadmap - -- New major features - - Network-wide propagated bulletins and discussion threads - - Collaborative maps and geospatial information sharing -- Minor improvements and fixes - - Link status (RSSI and SNR) in conversation or conv list - - Ctrl-M shorcut for jumping to menu - - Share node with other users / send node info to user - - Fix internal editor failing on some OSes with no "editor" alias - - Possibly add a required-width header - - Improve browser handling of remote link close - - Better navigation handling when requests fail (also because of closed links) - - Retry failed messages mechanism - - Re-arrange buttons to be more consistent - - Input field for pages - - Post mechanism - - Term compatibility notice in readme - - Selected icon in conversation list - - Possibly a Search Local Nodes function - - Possibly add via entry in node info box, next to distance +To use Nomad Network on packet radio or LoRa, you will need to configure your Reticulum installation to use any relevant packet radio TNCs or LoRa devices on your system. See the Reticulum documentation for info. ## Caveat Emptor Nomad Network is beta software, and should be considered as such. While it has been built with cryptography best-practices very foremost in mind, it _has not_ been externally security audited, and there could very well be privacy-breaking bugs. If you want to help out, or help sponsor an audit, please do get in touch. diff --git a/nomadnet/Conversation.py b/nomadnet/Conversation.py index 9b3f804..a3fcd7a 100644 --- a/nomadnet/Conversation.py +++ b/nomadnet/Conversation.py @@ -14,32 +14,20 @@ class Conversation: @staticmethod def received_announce(destination_hash, announced_identity, app_data): app = nomadnet.NomadNetworkApp.get_shared_instance() + destination_hash_text = RNS.hexrep(destination_hash, delimit=False) + # Check if the announced destination is in + # our list of conversations + if destination_hash_text in [e[0] for e in Conversation.conversation_list(app)]: + if app.directory.find(destination_hash): + if Conversation.created_callback != None: + Conversation.created_callback() + else: + if Conversation.created_callback != None: + Conversation.created_callback() - if not destination_hash in app.ignored_list: - destination_hash_text = RNS.hexrep(destination_hash, delimit=False) - # Check if the announced destination is in - # our list of conversations - if destination_hash_text in [e[0] for e in Conversation.conversation_list(app)]: - if app.directory.find(destination_hash): - if Conversation.created_callback != None: - Conversation.created_callback() - else: - if Conversation.created_callback != None: - Conversation.created_callback() - - # This reformats the new v0.5.0 announce data back to the expected format - # for nomadnets storage and other handling functions. - dn = LXMF.display_name_from_app_data(app_data) - app_data = b"" - if dn != None: - app_data = dn.encode("utf-8") - - # Add the announce to the directory announce - # stream logger - app.directory.lxmf_announce_received(destination_hash, app_data) - - else: - RNS.log("Ignored announce from "+RNS.prettyhexrep(destination_hash), RNS.LOG_DEBUG) + # Add the announce to the directory announce + # stream logger + app.directory.lxmf_announce_received(destination_hash, app_data) @staticmethod def query_for_peer(source_hash): @@ -78,8 +66,7 @@ class Conversation: except Exception as e: pass - if Conversation.created_callback != None: - Conversation.created_callback() + Conversation.created_callback() return ingested_path @@ -102,7 +89,7 @@ class Conversation: unread = True if display_name == None and app_data: - display_name = LXMF.display_name_from_app_data(app_data) + display_name = app_data.decode("utf-8") if display_name == None: sort_name = "" @@ -149,9 +136,6 @@ class Conversation: self.__changed_callback = None - if not RNS.Identity.recall(bytes.fromhex(self.source_hash)): - RNS.Transport.request_path(bytes.fromhex(source_hash)) - self.source_identity = RNS.Identity.recall(bytes.fromhex(self.source_hash)) if self.source_identity: @@ -212,26 +196,9 @@ class Conversation: if self.send_destination: dest = self.send_destination source = self.app.lxmf_destination - desired_method = LXMF.LXMessage.DIRECT - if self.app.directory.preferred_delivery(dest.hash) == DirectoryEntry.PROPAGATED: - if self.app.message_router.get_outbound_propagation_node() != None: - desired_method = LXMF.LXMessage.PROPAGATED - else: - if not self.app.message_router.delivery_link_available(dest.hash) and RNS.Identity.current_ratchet_id(dest.hash) != None: - RNS.log(f"Have ratchet for {RNS.prettyhexrep(dest.hash)}, requesting opportunistic delivery of message", RNS.LOG_DEBUG) - desired_method = LXMF.LXMessage.OPPORTUNISTIC - - dest_is_trusted = False - if self.app.directory.trust_level(dest.hash) == DirectoryEntry.TRUSTED: - dest_is_trusted = True - - lxm = LXMF.LXMessage(dest, source, content, title=title, desired_method=desired_method, include_ticket=dest_is_trusted) + lxm = LXMF.LXMessage(dest, source, content, title=title, desired_method=LXMF.LXMessage.DIRECT) lxm.register_delivery_callback(self.message_notification) lxm.register_failed_callback(self.message_notification) - - if self.app.message_router.get_outbound_propagation_node() != None: - lxm.try_propagation_on_fail = self.app.try_propagation_on_fail - self.app.message_router.handle_outbound(lxm) message_path = Conversation.ingest(lxm, self.app, originator=True) @@ -242,82 +209,16 @@ class Conversation: RNS.log("Destination is not known, cannot create LXMF Message.", RNS.LOG_VERBOSE) return False - def paper_output(self, content="", title="", mode="print_qr"): - if self.send_destination: - try: - dest = self.send_destination - source = self.app.lxmf_destination - desired_method = LXMF.LXMessage.PAPER - - lxm = LXMF.LXMessage(dest, source, content, title=title, desired_method=desired_method) - - if mode == "print_qr": - qr_code = lxm.as_qr() - qr_tmp_path = self.app.tmpfilespath+"/"+str(RNS.hexrep(lxm.hash, delimit=False)) - qr_code.save(qr_tmp_path) - - print_result = self.app.print_file(qr_tmp_path) - os.unlink(qr_tmp_path) - - if print_result: - message_path = Conversation.ingest(lxm, self.app, originator=True) - self.messages.append(ConversationMessage(message_path)) - - return print_result - - elif mode == "save_qr": - qr_code = lxm.as_qr() - qr_save_path = self.app.downloads_path+"/LXM_"+str(RNS.hexrep(lxm.hash, delimit=False)+".png") - qr_code.save(qr_save_path) - message_path = Conversation.ingest(lxm, self.app, originator=True) - self.messages.append(ConversationMessage(message_path)) - return qr_save_path - - elif mode == "save_uri": - lxm_uri = lxm.as_uri()+"\n" - uri_save_path = self.app.downloads_path+"/LXM_"+str(RNS.hexrep(lxm.hash, delimit=False)+".txt") - with open(uri_save_path, "wb") as f: - f.write(lxm_uri.encode("utf-8")) - - message_path = Conversation.ingest(lxm, self.app, originator=True) - self.messages.append(ConversationMessage(message_path)) - return uri_save_path - - elif mode == "return_uri": - return lxm.as_uri() - - except Exception as e: - RNS.log("An error occurred while generating paper message, the contained exception was: "+str(e), RNS.LOG_ERROR) - return False - - else: - RNS.log("Destination is not known, cannot create LXMF Message.", RNS.LOG_VERBOSE) - return False - def message_notification(self, message): - if message.state == LXMF.LXMessage.FAILED and hasattr(message, "try_propagation_on_fail") and message.try_propagation_on_fail: - if hasattr(message, "stamp_generation_failed") and message.stamp_generation_failed == True: - RNS.log(f"Could not send {message} due to a stamp generation failure", RNS.LOG_ERROR) - else: - RNS.log("Direct delivery of "+str(message)+" failed. Retrying as propagated message.", RNS.LOG_VERBOSE) - message.try_propagation_on_fail = None - message.delivery_attempts = 0 - if hasattr(message, "next_delivery_attempt"): - del message.next_delivery_attempt - message.packed = None - message.desired_method = LXMF.LXMessage.PROPAGATED - self.app.message_router.handle_outbound(message) - else: - message_path = Conversation.ingest(message, self.app, originator=True) + message_path = Conversation.ingest(message, self.app, originator=True) def __str__(self): string = self.source_hash - # TODO: Remove this - # if self.source_identity: - # if self.source_identity.app_data: - # # TODO: Sanitise for viewing, or just clean this - # string += " | "+self.source_identity.app_data.decode("utf-8") + if self.source_identity: + if self.source_identity.app_data: + # TODO: Sanitise for viewing + string += " | "+self.source.source_identity.app_data.decode("utf-8") return string @@ -335,19 +236,13 @@ class ConversationMessage: self.lxm = LXMF.LXMessage.unpack_from_file(open(self.file_path, "rb")) self.loaded = True self.timestamp = self.lxm.timestamp - self.sort_timestamp = os.path.getmtime(self.file_path) - if self.lxm.state > LXMF.LXMessage.GENERATING and self.lxm.state < LXMF.LXMessage.SENT: + if self.lxm.state > LXMF.LXMessage.DRAFT and self.lxm.state < LXMF.LXMessage.SENT: found = False - for pending in nomadnet.NomadNetworkApp.get_shared_instance().message_router.pending_outbound: if pending.hash == self.lxm.hash: found = True - for pending_id in nomadnet.NomadNetworkApp.get_shared_instance().message_router.pending_deferred_stamps: - if pending_id == self.lxm.hash: - found = True - if not found: self.lxm.state = LXMF.LXMessage.FAILED diff --git a/nomadnet/Directory.py b/nomadnet/Directory.py index ac03155..c7f1741 100644 --- a/nomadnet/Directory.py +++ b/nomadnet/Directory.py @@ -3,72 +3,35 @@ import RNS import LXMF import time import nomadnet -import threading import RNS.vendor.umsgpack as msgpack -class PNAnnounceHandler: - def __init__(self, owner): - self.aspect_filter = "lxmf.propagation" - self.owner = owner - - def received_announce(self, destination_hash, announced_identity, app_data): - try: - if type(app_data) == bytes: - data = msgpack.unpackb(app_data) - - if data[0] == True: - RNS.log("Received active propagation node announce from "+RNS.prettyhexrep(destination_hash)) - - associated_peer = RNS.Destination.hash_from_name_and_identity("lxmf.delivery", announced_identity) - associated_node = RNS.Destination.hash_from_name_and_identity("nomadnetwork.node", announced_identity) - - self.owner.app.directory.pn_announce_received(destination_hash, app_data, associated_peer, associated_node) - self.owner.app.autoselect_propagation_node() - - except Exception as e: - RNS.log("Error while evaluating propagation node announce, ignoring announce.", RNS.LOG_DEBUG) - RNS.log("The contained exception was: "+str(e), RNS.LOG_DEBUG) - class Directory: - ANNOUNCE_STREAM_MAXLENGTH = 256 + ANNOUNCE_STREAM_MAXLENGTH = 64 aspect_filter = "nomadnetwork.node" @staticmethod def received_announce(destination_hash, announced_identity, app_data): - try: - app = nomadnet.NomadNetworkApp.get_shared_instance() + app = nomadnet.NomadNetworkApp.get_shared_instance() + destination_hash_text = RNS.hexrep(destination_hash, delimit=False) - if not destination_hash in app.ignored_list: - associated_peer = RNS.Destination.hash_from_name_and_identity("lxmf.delivery", announced_identity) + associated_peer = RNS.Destination.hash_from_name_and_identity("lxmf.delivery", announced_identity) - app.directory.node_announce_received(destination_hash, app_data, associated_peer) - app.autoselect_propagation_node() - - else: - RNS.log("Ignored announce from "+RNS.prettyhexrep(destination_hash), RNS.LOG_DEBUG) - - except Exception as e: - RNS.log("Error while evaluating LXMF destination announce, ignoring announce.", RNS.LOG_DEBUG) - RNS.log("The contained exception was: "+str(e), RNS.LOG_DEBUG) + app.directory.node_announce_received(destination_hash, app_data, associated_peer) def __init__(self, app): self.directory_entries = {} self.announce_stream = [] self.app = app - self.announce_lock = threading.Lock() self.load_from_disk() - self.pn_announce_handler = PNAnnounceHandler(self) - RNS.Transport.register_announce_handler(self.pn_announce_handler) - def save_to_disk(self): try: packed_list = [] for source_hash in self.directory_entries: e = self.directory_entries[source_hash] - packed_list.append((e.source_hash, e.display_name, e.trust_level, e.hosts_node, e.preferred_delivery, e.identify, e.sort_rank)) + packed_list.append((e.source_hash, e.display_name, e.trust_level, e.hosts_node)) directory = { "entry_list": packed_list, @@ -78,7 +41,6 @@ class Directory: file = open(self.app.directorypath, "wb") file.write(msgpack.packb(directory)) file.close() - except Exception as e: RNS.log("Could not write directory to disk. Then contained exception was: "+str(e), RNS.LOG_ERROR) @@ -92,128 +54,40 @@ class Directory: entries = {} for e in unpacked_list: - - if e[1] == None: - e[1] = "Undefined" - if len(e) > 3: hosts_node = e[3] else: hosts_node = False - if len(e) > 4: - preferred_delivery = e[4] - else: - preferred_delivery = None - - if len(e) > 5: - identify = e[5] - else: - identify = False - - if len(e) > 6: - sort_rank = e[6] - else: - sort_rank = None - - entries[e[0]] = DirectoryEntry(e[0], e[1], e[2], hosts_node, preferred_delivery=preferred_delivery, identify_on_connect=identify, sort_rank=sort_rank) + entries[e[0]] = DirectoryEntry(e[0], e[1], e[2], hosts_node) self.directory_entries = entries self.announce_stream = unpacked_directory["announce_stream"] + except Exception as e: RNS.log("Could not load directory from disk. The contained exception was: "+str(e), RNS.LOG_ERROR) def lxmf_announce_received(self, source_hash, app_data): - with self.announce_lock: - if app_data != None: - if self.app.compact_stream: - try: - remove_announces = [] - for announce in self.announce_stream: - if announce[1] == source_hash: - remove_announces.append(announce) - - for a in remove_announces: - self.announce_stream.remove(a) - - except Exception as e: - RNS.log("An error occurred while compacting the announce stream. The contained exception was:"+str(e), RNS.LOG_ERROR) - - timestamp = time.time() - self.announce_stream.insert(0, (timestamp, source_hash, app_data, "peer")) - while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH: - self.announce_stream.pop() - - if hasattr(self.app, "ui") and self.app.ui != None: - if hasattr(self.app.ui, "main_display"): - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() + if app_data != None: + timestamp = time.time() + self.announce_stream.insert(0, (timestamp, source_hash, app_data, False)) + while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH: + self.announce_stream.pop() + self.app.ui.main_display.sub_displays.network_display.directory_change_callback() def node_announce_received(self, source_hash, app_data, associated_peer): - with self.announce_lock: - if app_data != None: - if self.app.compact_stream: - try: - remove_announces = [] - for announce in self.announce_stream: - if announce[1] == source_hash: - remove_announces.append(announce) + if app_data != None: + timestamp = time.time() + self.announce_stream.insert(0, (timestamp, source_hash, app_data, True)) + while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH: + self.announce_stream.pop() - for a in remove_announces: - self.announce_stream.remove(a) - - except Exception as e: - RNS.log("An error occurred while compacting the announce stream. The contained exception was:"+str(e), RNS.LOG_ERROR) - - timestamp = time.time() - self.announce_stream.insert(0, (timestamp, source_hash, app_data, "node")) - while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH: - self.announce_stream.pop() - - if self.trust_level(associated_peer) == DirectoryEntry.TRUSTED: - existing_entry = self.find(source_hash) - if not existing_entry: - node_entry = DirectoryEntry(source_hash, display_name=app_data.decode("utf-8"), trust_level=DirectoryEntry.TRUSTED, hosts_node=True) - self.remember(node_entry) - - if hasattr(self.app.ui, "main_display"): - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() - - def pn_announce_received(self, source_hash, app_data, associated_peer, associated_node): - with self.announce_lock: - found_node = None - for sh in self.directory_entries: - if sh == associated_node: - found_node = True - break - - for e in self.announce_stream: - if e[1] == associated_node: - found_node = True - break - - if not found_node: - if self.app.compact_stream: - try: - remove_announces = [] - for announce in self.announce_stream: - if announce[1] == source_hash: - remove_announces.append(announce) - - for a in remove_announces: - self.announce_stream.remove(a) - - except Exception as e: - RNS.log("An error occurred while compacting the announce stream. The contained exception was:"+str(e), RNS.LOG_ERROR) - - timestamp = time.time() - self.announce_stream.insert(0, (timestamp, source_hash, app_data, "pn")) - while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH: - self.announce_stream.pop() - - if hasattr(self.app, "ui") and hasattr(self.app.ui, "main_display"): - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() + if self.trust_level(associated_peer) == DirectoryEntry.TRUSTED: + node_entry = DirectoryEntry(source_hash, display_name=app_data.decode("utf-8"), trust_level=DirectoryEntry.TRUSTED, hosts_node=True) + self.remember(node_entry) + self.app.ui.main_display.sub_displays.network_display.directory_change_callback() def remove_announce_with_timestamp(self, timestamp): selected_announce = None @@ -233,76 +107,36 @@ class Directory: def simplest_display_str(self, source_hash): trust_level = self.trust_level(source_hash) if trust_level == DirectoryEntry.WARNING or trust_level == DirectoryEntry.UNTRUSTED: - if source_hash in self.directory_entries: - dn = self.directory_entries[source_hash].display_name - if dn == None: - return RNS.prettyhexrep(source_hash) - else: - return dn+" <"+RNS.hexrep(source_hash, delimit=False)+">" - else: - return "<"+RNS.hexrep(source_hash, delimit=False)+">" + return "<"+RNS.hexrep(source_hash, delimit=False)+">" else: if source_hash in self.directory_entries: - dn = self.directory_entries[source_hash].display_name - if dn == None: - return RNS.prettyhexrep(source_hash) - else: - return dn + return self.directory_entries[source_hash].display_name else: return "<"+RNS.hexrep(source_hash, delimit=False)+">" - def alleged_display_str(self, source_hash): - if source_hash in self.directory_entries: - return self.directory_entries[source_hash].display_name - else: - return None - - def trust_level(self, source_hash, announced_display_name=None): if source_hash in self.directory_entries: if announced_display_name == None: return self.directory_entries[source_hash].trust_level else: - if not self.directory_entries[source_hash].trust_level == DirectoryEntry.TRUSTED: - for entry in self.directory_entries: - e = self.directory_entries[entry] - if e.display_name == announced_display_name: - if e.source_hash != source_hash: - return DirectoryEntry.WARNING + for entry in self.directory_entries: + e = self.directory_entries[entry] + if e.display_name == announced_display_name: + if e.source_hash != source_hash: + return DirectoryEntry.WARNING return self.directory_entries[source_hash].trust_level else: return DirectoryEntry.UNKNOWN - def pn_trust_level(self, source_hash): - recalled_identity = RNS.Identity.recall(source_hash) - if recalled_identity != None: - associated_node = RNS.Destination.hash_from_name_and_identity("nomadnetwork.node", recalled_identity) - return self.trust_level(associated_node) - - def sort_rank(self, source_hash): - if source_hash in self.directory_entries: - return self.directory_entries[source_hash].sort_rank - else: - return None - - def preferred_delivery(self, source_hash): - if source_hash in self.directory_entries: - return self.directory_entries[source_hash].preferred_delivery - else: - return DirectoryEntry.DIRECT - def remember(self, entry): self.directory_entries[entry.source_hash] = entry identity = RNS.Identity.recall(entry.source_hash) - if identity != None: - associated_node = RNS.Destination.hash_from_name_and_identity("nomadnetwork.node", identity) - if associated_node in self.directory_entries: - node_entry = self.directory_entries[associated_node] - node_entry.trust_level = entry.trust_level - - self.save_to_disk() + associated_node = RNS.Destination.hash_from_name_and_identity("nomadnetwork.node", identity) + if associated_node in self.directory_entries: + node_entry = self.directory_entries[associated_node] + node_entry.trust_level = entry.trust_level def forget(self, source_hash): if source_hash in self.directory_entries: @@ -326,18 +160,6 @@ class Directory: except Exception as e: return False - def should_identify_on_connect(self, source_hash): - if source_hash in self.directory_entries: - entry = self.directory_entries[source_hash] - return entry.identify - else: - return False - - def set_identify_on_connect(self, source_hash, state): - if source_hash in self.directory_entries: - entry = self.directory_entries[source_hash] - entry.identify = state - def known_nodes(self): node_list = [] for eh in self.directory_entries: @@ -345,7 +167,6 @@ class Directory: if e.hosts_node: node_list.append(e) - node_list.sort(key = lambda e: (e.sort_rank if e.sort_rank != None else 2^32, DirectoryEntry.TRUSTED-e.trust_level, e.display_name if e.display_name != None else "_")) return node_list def number_of_known_nodes(self): @@ -367,22 +188,14 @@ class DirectoryEntry: UNKNOWN = 0x02 TRUSTED = 0xFF - DIRECT = 0x01 - PROPAGATED = 0x02 - - def __init__(self, source_hash, display_name=None, trust_level=UNKNOWN, hosts_node=False, preferred_delivery=None, identify_on_connect=False, sort_rank=None): + def __init__(self, source_hash, display_name=None, trust_level=UNKNOWN, hosts_node=False): if len(source_hash) == RNS.Identity.TRUNCATED_HASHLENGTH//8: self.source_hash = source_hash self.display_name = display_name - self.sort_rank = sort_rank - - if preferred_delivery == None: - self.preferred_delivery = DirectoryEntry.DIRECT - else: - self.preferred_delivery = preferred_delivery + if display_name == None: + display_name = source_hash self.trust_level = trust_level self.hosts_node = hosts_node - self.identify = identify_on_connect else: - raise TypeError("Attempt to add invalid source hash to directory") + raise TypeError("Attempt to add invalid source hash to directory") \ No newline at end of file diff --git a/nomadnet/Node.py b/nomadnet/Node.py index 755c002..b565ba6 100644 --- a/nomadnet/Node.py +++ b/nomadnet/Node.py @@ -1,6 +1,4 @@ import os -import sys - import RNS import time import threading @@ -9,19 +7,14 @@ import RNS.vendor.umsgpack as msgpack class Node: JOB_INTERVAL = 5 - START_ANNOUNCE_DELAY = 6 def __init__(self, app): RNS.log("Nomad Network Node starting...", RNS.LOG_VERBOSE) self.app = app self.identity = self.app.identity self.destination = RNS.Destination(self.identity, RNS.Destination.IN, RNS.Destination.SINGLE, "nomadnetwork", "node") - self.last_announce = time.time() - self.last_file_refresh = time.time() - self.last_page_refresh = time.time() + self.last_announce = None self.announce_interval = self.app.node_announce_interval - self.page_refresh_interval = self.app.page_refresh_interval - self.file_refresh_interval = self.app.file_refresh_interval self.job_interval = Node.JOB_INTERVAL self.should_run_jobs = True self.app_data = None @@ -30,30 +23,16 @@ class Node: self.register_pages() self.register_files() - self.destination.set_link_established_callback(self.peer_connected) - if self.name == None: self.name = self.app.peer_settings["display_name"]+"'s Node" RNS.log("Node \""+self.name+"\" ready for incoming connections on "+RNS.prettyhexrep(self.destination.hash), RNS.LOG_VERBOSE) if self.app.node_announce_at_start: - def delayed_announce(): - time.sleep(Node.START_ANNOUNCE_DELAY) - self.announce() - - da_thread = threading.Thread(target=delayed_announce) - da_thread.setDaemon(True) - da_thread.start() - - job_thread = threading.Thread(target=self.__jobs) - job_thread.setDaemon(True) - job_thread.start() + self.announce() def register_pages(self): - # TODO: Deregister previously registered pages - # that no longer exist. self.servedpages = [] self.scan_pages(self.app.pagespath) @@ -61,18 +40,18 @@ class Node: self.destination.register_request_handler( "/page/index.mu", response_generator = self.serve_default_index, - allow = RNS.Destination.ALLOW_ALL) + allow = RNS.Destination.ALLOW_ALL + ) for page in self.servedpages: request_path = "/page"+page.replace(self.app.pagespath, "") self.destination.register_request_handler( request_path, response_generator = self.serve_page, - allow = RNS.Destination.ALLOW_ALL) + allow = RNS.Destination.ALLOW_ALL + ) def register_files(self): - # TODO: Deregister previously registered files - # that no longer exist. self.servedfiles = [] self.scan_files(self.app.filespath) @@ -81,16 +60,15 @@ class Node: self.destination.register_request_handler( request_path, response_generator = self.serve_file, - allow = RNS.Destination.ALLOW_ALL, - auto_compress = 32_000_000) + allow = RNS.Destination.ALLOW_ALL + ) def scan_pages(self, base_path): files = [file for file in os.listdir(base_path) if os.path.isfile(os.path.join(base_path, file)) and file[:1] != "."] directories = [file for file in os.listdir(base_path) if os.path.isdir(os.path.join(base_path, file)) and file[:1] != "."] for file in files: - if not file.endswith(".allowed"): - self.servedpages.append(base_path+"/"+file) + self.servedpages.append(base_path+"/"+file) for directory in directories: self.scan_pages(base_path+"/"+directory) @@ -105,84 +83,19 @@ class Node: for directory in directories: self.scan_files(base_path+"/"+directory) - def serve_page(self, path, data, request_id, link_id, remote_identity, requested_at): + def serve_page(self, path, data, request_id, remote_identity, requested_at): RNS.log("Page request "+RNS.prettyhexrep(request_id)+" for: "+str(path), RNS.LOG_VERBOSE) - try: - self.app.peer_settings["served_page_requests"] += 1 - self.app.save_peer_settings() - - except Exception as e: - RNS.log("Could not increase served page request count", RNS.LOG_ERROR) - file_path = path.replace("/page", self.app.pagespath, 1) - - allowed_path = file_path+".allowed" - request_allowed = False - - if os.path.isfile(allowed_path): - allowed_list = [] - - try: - if os.access(allowed_path, os.X_OK): - allowed_result = subprocess.run([allowed_path], stdout=subprocess.PIPE) - allowed_input = allowed_result.stdout - - else: - fh = open(allowed_path, "rb") - allowed_input = fh.read() - fh.close() - - allowed_hash_strs = allowed_input.splitlines() - - for hash_str in allowed_hash_strs: - if len(hash_str) == RNS.Identity.TRUNCATED_HASHLENGTH//8*2: - try: - allowed_hash = bytes.fromhex(hash_str.decode("utf-8")) - allowed_list.append(allowed_hash) - - except Exception as e: - RNS.log("Could not decode RNS Identity hash from: "+str(hash_str), RNS.LOG_DEBUG) - RNS.log("The contained exception was: "+str(e), RNS.LOG_DEBUG) - - except Exception as e: - RNS.log("Error while fetching list of allowed identities for request: "+str(e), RNS.LOG_ERROR) - - if hasattr(remote_identity, "hash") and remote_identity.hash in allowed_list: - request_allowed = True - else: - request_allowed = False - RNS.log("Denying request, remote identity was not in list of allowed identities", RNS.LOG_VERBOSE) - - else: - request_allowed = True - try: - if request_allowed: - RNS.log("Serving page: "+file_path, RNS.LOG_VERBOSE) - if not RNS.vendor.platformutils.is_windows() and os.access(file_path, os.X_OK): - env_map = {} - if "PATH" in os.environ: - env_map["PATH"] = os.environ["PATH"] - if link_id != None: - env_map["link_id"] = RNS.hexrep(link_id, delimit=False) - if remote_identity != None: - env_map["remote_identity"] = RNS.hexrep(remote_identity.hash, delimit=False) - - if data != None and isinstance(data, dict): - for e in data: - if isinstance(e, str) and (e.startswith("field_") or e.startswith("var_")): - env_map[e] = data[e] - - generated = subprocess.run([file_path], stdout=subprocess.PIPE, env=env_map) - return generated.stdout - else: - fh = open(file_path, "rb") - response_data = fh.read() - fh.close() - return response_data + RNS.log("Serving page: "+file_path, RNS.LOG_VERBOSE) + if os.access(file_path, os.X_OK): + generated = subprocess.run([file_path], stdout=subprocess.PIPE) + return generated.stdout else: - RNS.log("Request denied", RNS.LOG_VERBOSE) - return DEFAULT_NOTALLOWED.encode("utf-8") + fh = open(file_path, "rb") + response_data = fh.read() + fh.close() + return response_data except Exception as e: RNS.log("Error occurred while handling request "+RNS.prettyhexrep(request_id)+" for: "+str(path), RNS.LOG_ERROR) @@ -192,18 +105,14 @@ class Node: # TODO: Improve file handling, this will be slow for large files def serve_file(self, path, data, request_id, remote_identity, requested_at): RNS.log("File request "+RNS.prettyhexrep(request_id)+" for: "+str(path), RNS.LOG_VERBOSE) - try: - self.app.peer_settings["served_file_requests"] += 1 - self.app.save_peer_settings() - - except Exception as e: - RNS.log("Could not increase served file request count", RNS.LOG_ERROR) - file_path = path.replace("/file", self.app.filespath, 1) file_name = path.replace("/file/", "", 1) try: RNS.log("Serving file: "+file_path, RNS.LOG_VERBOSE) - return [open(file_path, "rb"), {"name": file_name.encode("utf-8")}] + fh = open(file_path, "rb") + file_data = fh.read() + fh.close() + return [file_name, file_data] except Exception as e: RNS.log("Error occurred while handling request "+RNS.prettyhexrep(request_id)+" for: "+str(path), RNS.LOG_ERROR) @@ -219,50 +128,24 @@ class Node: self.last_announce = time.time() self.app.peer_settings["node_last_announce"] = self.last_announce self.destination.announce(app_data=self.app_data) - self.app.message_router.announce_propagation_node() def __jobs(self): while self.should_run_jobs: now = time.time() - if now > self.last_announce + self.announce_interval*60: + if now > self.last_announce + self.announce_interval: self.announce() - - if self.page_refresh_interval > 0: - if now > self.last_page_refresh + self.page_refresh_interval*60: - self.register_pages() - self.last_page_refresh = time.time() - - if self.file_refresh_interval > 0: - if now > self.last_file_refresh + self.file_refresh_interval*60: - self.register_files() - self.last_file_refresh = time.time() time.sleep(self.job_interval) - def peer_connected(self, link): - RNS.log("Peer connected to "+str(self.destination), RNS.LOG_VERBOSE) - try: - self.app.peer_settings["node_connects"] += 1 - self.app.save_peer_settings() - - except Exception as e: - RNS.log("Could not increase node connection count", RNS.LOG_ERROR) - + def peer_connected(link): + RNS.log("Peer connected to "+str(self.destination), RNS.LOG_INFO) link.set_link_closed_callback(self.peer_disconnected) - def peer_disconnected(self, link): - RNS.log("Peer disconnected from "+str(self.destination), RNS.LOG_VERBOSE) - pass DEFAULT_INDEX = '''>Default Home Page This node is serving pages, but the home page file (index.mu) was not found in the page storage directory. This is an auto-generated placeholder. If you are the node operator, you can define your own home page by creating a file named `*index.mu`* in the page storage directory. -''' - -DEFAULT_NOTALLOWED = '''>Request Not Allowed - -You are not authorised to carry out the request. -''' +''' \ No newline at end of file diff --git a/nomadnet/NomadNetworkApp.py b/nomadnet/NomadNetworkApp.py index 81dc68f..e5b2e17 100644 --- a/nomadnet/NomadNetworkApp.py +++ b/nomadnet/NomadNetworkApp.py @@ -1,77 +1,29 @@ import os -import io -import sys import time -import shlex import atexit -import threading -import traceback -import subprocess -import contextlib import RNS import LXMF import nomadnet -from nomadnet.Directory import DirectoryEntry -from datetime import datetime - import RNS.vendor.umsgpack as msgpack from ._version import __version__ -from RNS.vendor.configobj import ConfigObj +from .vendor.configobj import ConfigObj class NomadNetworkApp: time_format = "%Y-%m-%d %H:%M:%S" _shared_instance = None - userdir = os.path.expanduser("~") - if os.path.isdir("/etc/nomadnetwork") and os.path.isfile("/etc/nomadnetwork/config"): - configdir = "/etc/nomadnetwork" - elif os.path.isdir(userdir+"/.config/nomadnetwork") and os.path.isfile(userdir+"/.config/nomadnetwork/config"): - configdir = userdir+"/.config/nomadnetwork" - else: - configdir = userdir+"/.nomadnetwork" - - START_ANNOUNCE_DELAY = 3 + configdir = os.path.expanduser("~")+"/.nomadnetwork" def exit_handler(self): - self.should_run_jobs = False - + RNS.log("Nomad Network Client exit handler executing...", RNS.LOG_VERBOSE) RNS.log("Saving directory...", RNS.LOG_VERBOSE) self.directory.save_to_disk() - - if hasattr(self.ui, "restore_ixon"): - if self.ui.restore_ixon: - try: - os.system("stty ixon") - - except Exception as e: - RNS.log("Could not restore flow control sequences. The contained exception was: "+str(e), RNS.LOG_WARNING) - - if hasattr(self.ui, "restore_palette"): - if self.ui.restore_palette: - try: - self.ui.screen.write("\x1b]104\x07") - - except Exception as e: - RNS.log("Could not restore terminal color palette. The contained exception was: "+str(e), RNS.LOG_WARNING) - RNS.log("Nomad Network Client exiting now", RNS.LOG_VERBOSE) - def exception_handler(self, e_type, e_value, e_traceback): - RNS.log("An unhandled exception occurred, the details of which will be dumped below", RNS.LOG_ERROR) - RNS.log("Type : "+str(e_type), RNS.LOG_ERROR) - RNS.log("Value : "+str(e_value), RNS.LOG_ERROR) - t_string = "" - for line in traceback.format_tb(e_traceback): - t_string += line - RNS.log("Trace : \n"+t_string, RNS.LOG_ERROR) - - if issubclass(e_type, KeyboardInterrupt): - sys.__excepthook__(e_type, e_value, e_traceback) - - def __init__(self, configdir = None, rnsconfigdir = None, daemon = False, force_console = False): + def __init__(self, configdir = None, rnsconfigdir = None): self.version = __version__ self.enable_client = False self.enable_node = False @@ -84,21 +36,13 @@ class NomadNetworkApp: else: self.configdir = configdir - if force_console: - self.force_console_log = True - else: - self.force_console_log = False - if NomadNetworkApp._shared_instance == None: NomadNetworkApp._shared_instance = self self.rns = RNS.Reticulum(configdir = rnsconfigdir) self.configpath = self.configdir+"/config" - self.ignoredpath = self.configdir+"/ignored" self.logfilepath = self.configdir+"/logfile" - self.errorfilepath = self.configdir+"/errors" - self.pnannouncedpath = self.configdir+"/pnannounced" self.storagepath = self.configdir+"/storage" self.identitypath = self.configdir+"/storage/identity" self.cachepath = self.configdir+"/storage/cache" @@ -106,38 +50,16 @@ class NomadNetworkApp: self.conversationpath = self.configdir+"/storage/conversations" self.directorypath = self.configdir+"/storage/directory" self.peersettingspath = self.configdir+"/storage/peersettings" - self.tmpfilespath = self.configdir+"/storage/tmp" self.pagespath = self.configdir+"/storage/pages" self.filespath = self.configdir+"/storage/files" self.cachepath = self.configdir+"/storage/cache" - self.examplespath = self.configdir+"/examples" self.downloads_path = os.path.expanduser("~/Downloads") - self.firstrun = False - self.should_run_jobs = True - self.job_interval = 5 - self.defer_jobs = 90 - self.page_refresh_interval = 0 - self.file_refresh_interval = 0 - - self.peer_announce_at_start = True - self.try_propagation_on_fail = True - self.disable_propagation = False - self.notify_on_new_message = True - - self.lxmf_max_propagation_size = None - self.lxmf_max_incoming_size = None - - self.periodic_lxmf_sync = True - self.lxmf_sync_interval = 360*60 - self.lxmf_sync_limit = 8 - self.compact_stream = False - - self.required_stamp_cost = None - self.accept_invalid_stamps = False + self.firstrun = False + self.peer_announce_at_start = True if not os.path.isdir(self.storagepath): os.makedirs(self.storagepath) @@ -160,11 +82,6 @@ class NomadNetworkApp: if not os.path.isdir(self.cachepath): os.makedirs(self.cachepath) - if not os.path.isdir(self.tmpfilespath): - os.makedirs(self.tmpfilespath) - else: - self.clear_tmp_dir() - if os.path.isfile(self.configpath): try: self.config = ConfigObj(self.configpath) @@ -180,16 +97,6 @@ class NomadNetworkApp: RNS.log("Check your configuration file for errors!", RNS.LOG_ERROR) nomadnet.panic() else: - if not os.path.isdir(self.examplespath): - try: - import shutil - examplespath = os.path.join(os.path.dirname(__file__), "examples") - shutil.copytree(examplespath, self.examplespath, ignore=shutil.ignore_patterns("__pycache__")) - - except Exception as e: - RNS.log("Could not copy examples into the "+self.examplespath+" directory.", RNS.LOG_ERROR) - RNS.log("The contained exception was: "+str(e), RNS.LOG_ERROR) - RNS.log("Could not load config file, creating default configuration file...") self.createDefaultConfig() self.firstrun = True @@ -226,21 +133,6 @@ class NomadNetworkApp: if not "node_last_announce" in self.peer_settings: self.peer_settings["node_last_announce"] = None - if not "propagation_node" in self.peer_settings: - self.peer_settings["propagation_node"] = None - - if not "last_lxmf_sync" in self.peer_settings: - self.peer_settings["last_lxmf_sync"] = 0 - - if not "node_connects" in self.peer_settings: - self.peer_settings["node_connects"] = 0 - - if not "served_page_requests" in self.peer_settings: - self.peer_settings["served_page_requests"] = 0 - - if not "served_file_requests" in self.peer_settings: - self.peer_settings["served_file_requests"] = 0 - except Exception as e: RNS.log("Could not load local peer settings from "+self.peersettingspath, RNS.LOG_ERROR) RNS.log("The contained exception was: %s" % (str(e)), RNS.LOG_ERROR) @@ -253,11 +145,6 @@ class NomadNetworkApp: "announce_interval": None, "last_announce": None, "node_last_announce": None, - "propagation_node": None, - "last_lxmf_sync": 0, - "node_connects": 0, - "served_page_requests": 0, - "served_file_requests": 0 } self.save_peer_settings() RNS.log("Created new peer settings file") @@ -266,54 +153,14 @@ class NomadNetworkApp: RNS.log("The contained exception was: %s" % (str(e)), RNS.LOG_ERROR) nomadnet.panic() - self.ignored_list = [] - if os.path.isfile(self.ignoredpath): - try: - fh = open(self.ignoredpath, "rb") - ignored_input = fh.read() - fh.close() - ignored_hash_strs = ignored_input.splitlines() - - for hash_str in ignored_hash_strs: - if len(hash_str) == RNS.Identity.TRUNCATED_HASHLENGTH//8*2: - try: - ignored_hash = bytes.fromhex(hash_str.decode("utf-8")) - self.ignored_list.append(ignored_hash) - - except Exception as e: - RNS.log("Could not decode RNS Identity hash from: "+str(hash_str), RNS.LOG_DEBUG) - RNS.log("The contained exception was: "+str(e), RNS.LOG_DEBUG) - - except Exception as e: - RNS.log("Error while loading list of ignored destinations: "+str(e), RNS.LOG_ERROR) - - self.directory = nomadnet.Directory(self) - - static_peers = [] - for static_peer in self.static_peers: - try: - dh = bytes.fromhex(static_peer) - if len(dh) != RNS.Reticulum.TRUNCATED_HASHLENGTH//8: - raise ValueError("Invalid destination length") - static_peers.append(dh) - except Exception as e: - RNS.log(f"Could not decode static peer destination hash {static_peer}: {e}", RNS.LOG_ERROR) - - self.message_router = LXMF.LXMRouter( - identity = self.identity, storagepath = self.storagepath, autopeer = True, - propagation_limit = self.lxmf_max_propagation_size, delivery_limit = self.lxmf_max_incoming_size, - max_peers = self.max_peers, static_peers = static_peers, - ) + atexit.register(self.exit_handler) + self.message_router = LXMF.LXMRouter() self.message_router.register_delivery_callback(self.lxmf_delivery) - for destination_hash in self.ignored_list: - self.message_router.ignore_destination(destination_hash) - - self.lxmf_destination = self.message_router.register_delivery_identity(self.identity, display_name=self.peer_settings["display_name"], stamp_cost=self.required_stamp_cost) - if not self.accept_invalid_stamps: - self.message_router.enforce_stamps() + self.lxmf_destination = self.message_router.register_delivery_identity(self.identity, display_name=self.peer_settings["display_name"]) + self.lxmf_destination.set_default_app_data(self.get_display_name_bytes) RNS.Identity.remember( packet_hash=None, @@ -324,108 +171,20 @@ class NomadNetworkApp: RNS.log("LXMF Router ready to receive on: "+RNS.prettyhexrep(self.lxmf_destination.hash)) + self.directory = nomadnet.Directory(self) + if self.enable_node: - self.message_router.set_message_storage_limit(megabytes=self.message_storage_limit) - for dest_str in self.prioritised_lxmf_destinations: - try: - dest_hash = bytes.fromhex(dest_str) - if len(dest_hash) == RNS.Reticulum.TRUNCATED_HASHLENGTH//8: - self.message_router.prioritise(dest_hash) - - except Exception as e: - RNS.log("Cannot prioritise "+str(dest_str)+", it is not a valid destination hash", RNS.LOG_ERROR) - - if self.disable_propagation: - if os.path.isfile(self.pnannouncedpath): - try: - RNS.log("Sending indication to peered LXMF Propagation Node that this node is no longer participating", RNS.LOG_DEBUG) - self.message_router.disable_propagation() - os.unlink(self.pnannouncedpath) - except Exception as e: - RNS.log("An error ocurred while indicating that this LXMF Propagation Node is no longer participating. The contained exception was: "+str(e), RNS.LOG_ERROR) - else: - self.message_router.enable_propagation() - try: - with open(self.pnannouncedpath, "wb") as pnf: - pnf.write(msgpack.packb(time.time())) - pnf.close() - - except Exception as e: - RNS.log("An error ocurred while writing Propagation Node announce timestamp. The contained exception was: "+str(e), RNS.LOG_ERROR) - - if not self.disable_propagation: - RNS.log("LXMF Propagation Node started on: "+RNS.prettyhexrep(self.message_router.propagation_destination.hash)) - self.node = nomadnet.Node(self) else: self.node = None - if os.path.isfile(self.pnannouncedpath): - try: - RNS.log("Sending indication to peered LXMF Propagation Node that this node is no longer participating", RNS.LOG_DEBUG) - self.message_router.disable_propagation() - os.unlink(self.pnannouncedpath) - except Exception as e: - RNS.log("An error ocurred while indicating that this LXMF Propagation Node is no longer participating. The contained exception was: "+str(e), RNS.LOG_ERROR) RNS.Transport.register_announce_handler(nomadnet.Conversation) RNS.Transport.register_announce_handler(nomadnet.Directory) - self.autoselect_propagation_node() - if self.peer_announce_at_start: - def delayed_announce(): - time.sleep(NomadNetworkApp.START_ANNOUNCE_DELAY) - self.announce_now() + self.announce_now() - da_thread = threading.Thread(target=delayed_announce) - da_thread.setDaemon(True) - da_thread.start() - - atexit.register(self.exit_handler) - sys.excepthook = self.exception_handler - - job_thread = threading.Thread(target=self.__jobs) - job_thread.setDaemon(True) - job_thread.start() - - # Override UI choice from config on --daemon switch - if daemon: - self.uimode = nomadnet.ui.UI_NONE - - # This stderr redirect is needed to stop urwid - # from spewing KeyErrors to the console and thus, - # messing up the UI. A pull request to fix the - # bug in urwid was submitted, but until it is - # merged, this hack will mitigate it. - strio = io.StringIO() - with contextlib.redirect_stderr(strio): - nomadnet.ui.spawn(self.uimode) - - if strio.tell() > 0: - try: - strio.seek(0) - err_file = open(self.errorfilepath, "w") - err_file.write(strio.read()) - err_file.close() - - except Exception as e: - RNS.log("Could not write stderr output to error log file at "+str(self.errorfilepath)+".", RNS.LOG_ERROR) - RNS.log("The contained exception was: "+str(e), RNS.LOG_ERROR) - - - def __jobs(self): - RNS.log("Deferring scheduled jobs for "+str(self.defer_jobs)+" seconds...", RNS.LOG_DEBUG) - time.sleep(self.defer_jobs) - - RNS.log("Starting job scheduler now", RNS.LOG_DEBUG) - while self.should_run_jobs: - now = time.time() - - if now > self.peer_settings["last_lxmf_sync"] + self.lxmf_sync_interval: - RNS.log("Initiating automatic LXMF sync", RNS.LOG_VERBOSE) - self.request_lxmf_sync(limit=self.lxmf_sync_limit) - - time.sleep(self.job_interval) + nomadnet.ui.spawn(self.uimode) def set_display_name(self, display_name): self.peer_settings["display_name"] = display_name @@ -438,122 +197,11 @@ class NomadNetworkApp: def get_display_name_bytes(self): return self.peer_settings["display_name"].encode("utf-8") - def get_sync_status(self): - if self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_IDLE: - return "Idle" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_PATH_REQUESTED: - return "Path requested" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHING: - return "Establishing link" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHED: - return "Link established" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_REQUEST_SENT: - return "Sync request sent" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RECEIVING: - return "Receiving messages" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RESPONSE_RECEIVED: - return "Messages received" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_NO_PATH: - return "No path to node" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_FAILED: - return "Link establisment failed" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_TRANSFER_FAILED: - return "Sync request failed" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_NO_IDENTITY_RCVD: - return "Remote got no identity" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_NO_ACCESS: - return "Node rejected request" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_FAILED: - return "Sync failed" - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_COMPLETE: - new_msgs = self.message_router.propagation_transfer_last_result - if new_msgs == 0: - return "Done, no new messages" - else: - return "Downloaded "+str(new_msgs)+" new messages" - else: - return "Unknown" - - def sync_status_show_percent(self): - if self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_IDLE: - return False - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_PATH_REQUESTED: - return False - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHING: - return False - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_LINK_ESTABLISHED: - return False - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_REQUEST_SENT: - return False - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RECEIVING: - return True - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_RESPONSE_RECEIVED: - return True - elif self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_COMPLETE: - return False - else: - return False - - def get_sync_progress(self): - return self.message_router.propagation_transfer_progress - - def request_lxmf_sync(self, limit = None): - if self.message_router.propagation_transfer_state == LXMF.LXMRouter.PR_IDLE or self.message_router.propagation_transfer_state >= LXMF.LXMRouter.PR_COMPLETE: - self.peer_settings["last_lxmf_sync"] = time.time() - self.save_peer_settings() - self.message_router.request_messages_from_propagation_node(self.identity, max_messages = limit) - - def cancel_lxmf_sync(self): - if self.message_router.propagation_transfer_state != LXMF.LXMRouter.PR_IDLE: - self.message_router.cancel_propagation_node_requests() - def announce_now(self): - self.message_router.set_inbound_stamp_cost(self.lxmf_destination.hash, self.required_stamp_cost) - self.lxmf_destination.display_name = self.peer_settings["display_name"] - self.message_router.announce(self.lxmf_destination.hash) + self.lxmf_destination.announce() self.peer_settings["last_announce"] = time.time() self.save_peer_settings() - def autoselect_propagation_node(self): - selected_node = None - - if "propagation_node" in self.peer_settings and self.peer_settings["propagation_node"] != None: - selected_node = self.peer_settings["propagation_node"] - else: - nodes = self.directory.known_nodes() - trusted_nodes = [] - - best_hops = RNS.Transport.PATHFINDER_M+1 - - for node in nodes: - if node.trust_level == DirectoryEntry.TRUSTED: - hops = RNS.Transport.hops_to(node.source_hash) - - if hops < best_hops: - best_hops = hops - selected_node = node.source_hash - - if selected_node == None: - RNS.log("Could not autoselect a propagation node! LXMF propagation will not be available until a trusted node announces on the network, or a propagation node is manually selected.", RNS.LOG_WARNING) - else: - pn_name_str = "" - RNS.log("Selecting "+RNS.prettyhexrep(selected_node)+pn_name_str+" as default LXMF propagation node", RNS.LOG_DEBUG) - self.message_router.set_outbound_propagation_node(selected_node) - - def get_user_selected_propagation_node(self): - if "propagation_node" in self.peer_settings: - return self.peer_settings["propagation_node"] - else: - return None - - def set_user_selected_propagation_node(self, node_hash): - self.peer_settings["propagation_node"] = node_hash - self.save_peer_settings() - self.autoselect_propagation_node() - - def get_default_propagation_node(self): - return self.message_router.get_outbound_propagation_node() - def save_peer_settings(self): file = open(self.peersettingspath, "wb") file.write(msgpack.packb(self.peer_settings)) @@ -572,100 +220,9 @@ class NomadNetworkApp: nomadnet.Conversation.ingest(message, self) - if self.notify_on_new_message: - self.notify_message_recieved() - - if self.should_print(message): - self.print_message(message) - - def should_print(self, message): - if self.print_messages: - if self.print_all_messages: - return True - - else: - source_hash_text = RNS.hexrep(message.source_hash, delimit=False) - - if self.print_trusted_messages: - trust_level = self.directory.trust_level(message.source_hash) - if trust_level == DirectoryEntry.TRUSTED: - return True - - if type(self.allowed_message_print_destinations) is list: - if source_hash_text in self.allowed_message_print_destinations: - return True - - return False - - def print_file(self, filename): - print_command = self.print_command+" "+filename - - try: - return_code = subprocess.call(shlex.split(print_command), stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) - - except Exception as e: - RNS.log("An error occurred while executing print command: "+str(print_command), RNS.LOG_ERROR) - RNS.log("The contained exception was: "+str(e), RNS.LOG_ERROR) - return False - - if return_code == 0: - RNS.log("Successfully printed "+str(filename)+" using print command: "+print_command, RNS.LOG_DEBUG) - return True - - else: - RNS.log("Printing "+str(filename)+" failed using print command: "+print_command, RNS.LOG_DEBUG) - return False - - - def print_message(self, message, received = None): - try: - template = self.printing_template_msg - - if received == None: - received = time.time() - - g = self.ui.glyphs - - m_rtime = datetime.fromtimestamp(message.timestamp) - stime = m_rtime.strftime(self.time_format) - - message_time = datetime.fromtimestamp(received) - rtime = message_time.strftime(self.time_format) - - display_name = self.directory.simplest_display_str(message.source_hash) - title = message.title_as_string() - if title == "": - title = "None" - - output = template.format( - origin=display_name, - stime=stime, - rtime=rtime, - mtitle=title, - mbody=message.content_as_string(), - ) - - filename = "/tmp/"+RNS.hexrep(RNS.Identity.full_hash(output.encode("utf-8")), delimit=False) - with open(filename, "wb") as f: - f.write(output.encode("utf-8")) - f.close() - - self.print_file(filename) - - os.unlink(filename) - - except Exception as e: - RNS.log("Error while printing incoming LXMF message. The contained exception was: "+str(e)) - def conversations(self): return nomadnet.Conversation.conversation_list(self) - def has_unread_conversations(self): - if len(nomadnet.Conversation.unread_conversations) > 0: - return True - else: - return False - def conversation_is_unread(self, source_hash): if bytes.fromhex(source_hash) in nomadnet.Conversation.unread_conversations: return True @@ -678,17 +235,6 @@ class NomadNetworkApp: if os.path.isfile(self.conversationpath + "/" + source_hash + "/unread"): os.unlink(self.conversationpath + "/" + source_hash + "/unread") - def notify_message_recieved(self): - if self.uimode == nomadnet.ui.UI_TEXT: - sys.stdout.write("\a") - sys.stdout.flush() - - def clear_tmp_dir(self): - if os.path.isdir(self.tmpfilespath): - for file in os.listdir(self.tmpfilespath): - fpath = self.tmpfilespath+"/"+file - os.unlink(fpath) - def createDefaultConfig(self): self.config = ConfigObj(__default_nomadnet_config__) self.config.filename = self.configpath @@ -710,7 +256,7 @@ class NomadNetworkApp: if RNS.loglevel > 7: RNS.loglevel = 7 if option == "destination": - if value.lower() == "file" and not self.force_console_log: + if value.lower() == "file": RNS.logdest = RNS.LOG_FILE if "logfile" in self.config["logging"]: self.logfilepath = self.config["logging"]["logfile"] @@ -734,62 +280,6 @@ class NomadNetworkApp: value = self.config["client"].as_bool(option) self.peer_announce_at_start = value - if option == "try_propagation_on_send_fail": - value = self.config["client"].as_bool(option) - self.try_propagation_on_fail = value - - if option == "periodic_lxmf_sync": - value = self.config["client"].as_bool(option) - self.periodic_lxmf_sync = value - - if option == "lxmf_sync_interval": - value = self.config["client"].as_int(option)*60 - - if value >= 60: - self.lxmf_sync_interval = value - - if option == "lxmf_sync_limit": - value = self.config["client"].as_int(option) - - if value > 0: - self.lxmf_sync_limit = value - else: - self.lxmf_sync_limit = None - - if option == "required_stamp_cost": - value = self.config["client"][option] - if value.lower() == "none": - self.required_stamp_cost = None - else: - value = self.config["client"].as_int(option) - - if value > 0: - if value > 255: - value = 255 - self.required_stamp_cost = value - else: - self.required_stamp_cost = None - - if option == "accept_invalid_stamps": - value = self.config["client"].as_bool(option) - self.accept_invalid_stamps = value - - if option == "max_accepted_size": - value = self.config["client"].as_float(option) - - if value > 0: - self.lxmf_max_incoming_size = value - else: - self.lxmf_max_incoming_size = 500 - - if option == "compact_announce_stream": - value = self.config["client"].as_bool(option) - self.compact_stream = value - - if option == "notify_on_new_message": - value = self.config["client"].as_bool(option) - self.notify_on_new_message = value - if option == "user_interface": value = value.lower() if value == "none": @@ -804,11 +294,8 @@ class NomadNetworkApp: else: self.config["textui"]["intro_time"] = self.config["textui"].as_int("intro_time") - if not "intro_text" in self.config["textui"]: - self.config["textui"]["intro_text"] = "Nomad Network" - if not "editor" in self.config["textui"]: - self.config["textui"]["editor"] = "nano" + self.config["textui"]["editor"] = "editor" if not "glyphs" in self.config["textui"]: self.config["textui"]["glyphs"] = "unicode" @@ -875,19 +362,6 @@ class NomadNetworkApp: else: self.node_name = self.config["node"]["node_name"] - if not "disable_propagation" in self.config["node"]: - self.disable_propagation = False - else: - self.disable_propagation = self.config["node"].as_bool("disable_propagation") - - if not "max_transfer_size" in self.config["node"]: - self.lxmf_max_propagation_size = 256 - else: - value = self.config["node"].as_float("max_transfer_size") - if value < 1: - value = 1 - self.lxmf_max_propagation_size = value - if not "announce_at_start" in self.config["node"]: self.node_announce_at_start = False else: @@ -901,105 +375,12 @@ class NomadNetworkApp: if value < 1: value = 1 self.node_announce_interval = value - + if "pages_path" in self.config["node"]: self.pagespath = self.config["node"]["pages_path"] - - if not "page_refresh_interval" in self.config["node"]: - self.page_refresh_interval = 0 - else: - value = self.config["node"].as_int("page_refresh_interval") - if value < 0: - value = 0 - self.page_refresh_interval = value - if "files_path" in self.config["node"]: self.filespath = self.config["node"]["files_path"] - - if not "file_refresh_interval" in self.config["node"]: - self.file_refresh_interval = 0 - else: - value = self.config["node"].as_int("file_refresh_interval") - if value < 0: - value = 0 - self.file_refresh_interval = value - - - if "prioritise_destinations" in self.config["node"]: - self.prioritised_lxmf_destinations = self.config["node"].as_list("prioritise_destinations") - else: - self.prioritised_lxmf_destinations = [] - - if "static_peers" in self.config["node"]: - self.static_peers = self.config["node"].as_list("static_peers") - else: - self.static_peers = [] - - if not "max_peers" in self.config["node"]: - self.max_peers = None - else: - value = self.config["node"].as_int("max_peers") - if value < 0: - value = 0 - self.max_peers = value - - if not "message_storage_limit" in self.config["node"]: - self.message_storage_limit = 2000 - else: - value = self.config["node"].as_float("message_storage_limit") - if value < 0.005: - value = 0.005 - self.message_storage_limit = value - - self.print_command = "lp" - self.print_messages = False - self.print_all_messages = False - self.print_trusted_messages = False - if "printing" in self.config: - if not "print_messages" in self.config["printing"]: - self.print_messages = False - else: - self.print_messages = self.config["printing"].as_bool("print_messages") - - if "print_command" in self.config["printing"]: - self.print_command = self.config["printing"]["print_command"] - - if self.print_messages: - if not "print_from" in self.config["printing"]: - self.allowed_message_print_destinations = None - else: - if type(self.config["printing"]["print_from"]) == str: - self.allowed_message_print_destinations = [] - if self.config["printing"]["print_from"].lower() == "everywhere": - self.print_all_messages = True - - if self.config["printing"]["print_from"].lower() == "trusted": - - self.print_all_messages = False - self.print_trusted_messages = True - - if len(self.config["printing"]["print_from"]) == (RNS.Identity.TRUNCATED_HASHLENGTH//8)*2: - self.allowed_message_print_destinations.append(self.config["printing"]["print_from"]) - - if type(self.config["printing"]["print_from"]) == list: - self.allowed_message_print_destinations = self.config["printing"].as_list("print_from") - for allowed_entry in self.allowed_message_print_destinations: - if allowed_entry.lower() == "trusted": - self.print_trusted_messages = True - - - if not "message_template" in self.config["printing"]: - self.printing_template_msg = __printing_template_msg__ - else: - mt_path = os.path.expanduser(self.config["printing"]["message_template"]) - if os.path.isfile(mt_path): - template_file = open(mt_path, "rb") - self.printing_template_msg = template_file.read().decode("utf-8") - else: - template_file = open(mt_path, "wb") - template_file.write(__printing_template_msg__.encode("utf-8")) - self.printing_template_msg = __printing_template_msg__ @staticmethod @@ -1038,73 +419,19 @@ destination = file enable_client = yes user_interface = text downloads_path = ~/Downloads -notify_on_new_message = yes # By default, the peer is announced at startup # to let other peers reach it immediately. announce_at_start = yes -# By default, the client will try to deliver a -# message via the LXMF propagation network, if -# a direct delivery to the recipient is not -# possible. -try_propagation_on_send_fail = yes - -# Nomadnet will periodically sync messages from -# LXMF propagation nodes by default, if any are -# present. You can disable this if you want to -# only sync when manually initiated. -periodic_lxmf_sync = yes - -# The sync interval in minutes. This value is -# equal to 6 hours (360 minutes) by default. -lxmf_sync_interval = 360 - -# By default, automatic LXMF syncs will only -# download 8 messages at a time. You can change -# this number, or set the option to 0 to disable -# the limit, and download everything every time. -lxmf_sync_limit = 8 - -# You can specify a required stamp cost for -# inbound messages to be accepted. Specifying -# a stamp cost will require untrusted senders -# that message you to include a cryptographic -# stamp in their messages. Performing this -# operation takes the sender an amount of time -# proportional to the stamp cost. As a rough -# estimate, a stamp cost of 8 will take less -# than a second to compute, and a stamp cost -# of 20 could take several minutes, even on -# a fast computer. -required_stamp_cost = None - -# You can signal stamp requirements to senders, -# but still accept messages with invalid stamps -# by setting this option to True. -accept_invalid_stamps = False - -# The maximum accepted unpacked size for mes- -# sages received directly from other peers, -# specified in kilobytes. Messages larger than -# this will be rejected before the transfer -# begins. -max_accepted_size = 500 - -# The announce stream will only show one entry -# per destination or node by default. You can -# change this to show as many announces as have -# been received, for every destination. -compact_announce_stream = yes - [textui] # Amount of time to show intro screen intro_time = 1 # You can specify the display theme. -# theme = light -theme = dark +# theme = dark +theme = light # Specify the number of colors to use # valid colormodes are: @@ -1136,149 +463,35 @@ glyphs = unicode # application. On by default. mouse_enabled = True -# What editor to use for editing text. -editor = nano +# What editor to use for editing text. By +# default the operating systems "editor" +# alias will be used. +editor = editor # If you don't want the Guide section to # show up in the menu, you can disable it. + hide_guide = no [node] # Whether to enable node hosting + enable_node = no # The node name will be visible to other # peers on the network, and included in # announces. + node_name = None # Automatic announce interval in minutes. -# 6 hours by default. -announce_interval = 360 +# 12 hours by default. -# Whether to announce when the node starts. -announce_at_start = Yes +announce_interval = 720 -# When Nomad Network is hosting a page-serving -# node, it can also act as an LXMF propagation -# node. If there is already a large amount of -# propagation nodes on the network, or you -# simply want to run a pageserving-only node, -# you can disable running a propagation node. -# Due to lots of propagation nodes being -# available, this is currently the default. -disable_propagation = Yes +# Whether to announce when the node starts -# The maximum amount of storage to use for -# the LXMF Propagation Node message store, -# specified in megabytes. When this limit -# is reached, LXMF will periodically remove -# messages in its message store. By default, -# LXMF prioritises keeping messages that are -# new and small. Large and old messages will -# be removed first. This setting is optional -# and defaults to 2 gigabytes. -# message_storage_limit = 2000 +announce_at_start = No -# The maximum accepted transfer size per in- -# coming propagation transfer, in kilobytes. -# This also sets the upper limit for the size -# of single messages accepted onto this node. -# -# If a node wants to propagate a larger number -# of messages to this node, than what can fit -# within this limit, it will prioritise sending -# the smallest, newest messages first, and try -# with any remaining messages at a later point. -max_transfer_size = 256 - -# You can tell the LXMF message router to -# prioritise storage for one or more -# destinations. If the message store reaches -# the specified limit, LXMF will prioritise -# keeping messages for destinations specified -# with this option. This setting is optional, -# and generally you do not need to use it. -# prioritise_destinations = 41d20c727598a3fbbdf9106133a3a0ed, d924b81822ca24e68e2effea99bcb8cf - -# You can configure the maximum number of other -# propagation nodes that this node will peer -# with automatically. The default is 50. -# max_peers = 25 - -# You can configure a list of static propagation -# node peers, that this node will always be -# peered with, by specifying a list of -# destination hashes. -# static_peers = e17f833c4ddf8890dd3a79a6fea8161d, 5a2d0029b6e5ec87020abaea0d746da4 - -# You can specify the interval in minutes for -# rescanning the hosted pages path. By default, -# this option is disabled, and the pages path -# will only be scanned on startup. -# page_refresh_interval = 0 - -# You can specify the interval in minutes for -# rescanning the hosted files path. By default, -# this option is disabled, and the files path -# will only be scanned on startup. -# file_refresh_interval = 0 - -[printing] - -# You can configure Nomad Network to print -# various kinds of information and messages. - -# Printing messages is disabled by default -print_messages = No - -# You can configure a custom template for -# message printing. If you uncomment this -# option, set a path to the template and -# restart Nomad Network, a default template -# will be created that you can edit. -# message_template = ~/.nomadnetwork/print_template_msg.txt - -# You can configure Nomad Network to only -# print messages from trusted destinations. -# print_from = trusted - -# Or specify the source LXMF addresses that -# will automatically have messages printed -# on arrival. -# print_from = 76fe5751a56067d1e84eef3e88eab85b, 0e70b5848eb57c13154154feaeeb89b7 - -# Or allow printing from anywhere, if you -# are feeling brave and adventurous. -# print_from = everywhere - -# You can configure the printing command. -# This will use the default CUPS printer on -# your system. -print_command = lp - -# You can specify what printer to use -# print_command = lp -d PRINTER_NAME - -# Or specify more advanced options. This -# example works well for small thermal- -# roll printers. -# print_command = lp -d PRINTER_NAME -o cpi=16 -o lpi=8 - -# This one is more suitable for full-sheet -# printers. -# print_command = lp -d PRINTER_NAME -o page-left=36 -o page-top=36 -o page-right=36 -o page-bottom=36 - -'''.splitlines() - -__printing_template_msg__ = """ ---------------------------- -From: {origin} -Sent: {stime} -Rcvd: {rtime} -Title: {mtitle} - -{mbody} ---------------------------- -""" +'''.splitlines() \ No newline at end of file diff --git a/nomadnet/_version.py b/nomadnet/_version.py index 49e0fc1..a68927d 100644 --- a/nomadnet/_version.py +++ b/nomadnet/_version.py @@ -1 +1 @@ -__version__ = "0.7.0" +__version__ = "0.1.0" \ No newline at end of file diff --git a/nomadnet/examples/messageboard/README.md b/nomadnet/examples/messageboard/README.md deleted file mode 100644 index 16e35e0..0000000 --- a/nomadnet/examples/messageboard/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# lxmf_messageboard -Simple message board that can be hosted on a NomadNet node, messages can be posted by 'conversing' with a unique peer, all messages are then forwarded to the message board. - -## How Do I Use It? -A user can submit messages to the message board by initiating a chat with the message board peer, they are assigned a username (based on the first 5 characters of their address) and their messages are added directly to the message board. The message board can be viewed on a page hosted by a NomadNet node. - -An example message board can be found on the reticulum testnet hosted on the SolarExpress Node `` and the message board peer `` - -## How Does It Work? -The message board page itself is hosted on a NomadNet node, you can place the message_board.mu into the pages directory. You can then run the message_board.py script which provides the peer that the users can send messages to. The two parts are joined together using umsgpack and a flat file system similar to NomadNet and Reticulum and runs in the background. - -## How Do I Set It Up? -* Turn on node hosting in NomadNet -* Put the `message_board.mu` file into `pages` directory in the config file for `NomadNet`. Edit the file to customise from the default page. -* Run the `message_board.py` script (`python3 message_board.py` either in a `screen` or as a system service), this script uses `NomadNet` and `RNS` libraries and has no additional libraries that need to be installed. Take a note of the message boards address, it is printed on starting the board, you can then place this address in `message_board.mu` file to make it easier for users to interact the board. - -## Credits -* This example application was written and contributed by @chengtripp \ No newline at end of file diff --git a/nomadnet/examples/messageboard/messageboard.mu b/nomadnet/examples/messageboard/messageboard.mu deleted file mode 100644 index 24993d0..0000000 --- a/nomadnet/examples/messageboard/messageboard.mu +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/python3 -import time -import os -import RNS.vendor.umsgpack as msgpack - -message_board_peer = 'please_replace' -userdir = os.path.expanduser("~") - -if os.path.isdir("/etc/nomadmb") and os.path.isfile("/etc/nomadmb/config"): - configdir = "/etc/nomadmb" -elif os.path.isdir(userdir+"/.config/nomadmb") and os.path.isfile(userdir+"/.config/nomadmb/config"): - configdir = userdir+"/.config/nomadmb" -else: - configdir = userdir+"/.nomadmb" - -storagepath = configdir+"/storage" -if not os.path.isdir(storagepath): - os.makedirs(storagepath) - -boardpath = configdir+"/storage/board" - -print('`!`F222`Bddd`cNomadNet Message Board') - -print('-') -print('`a`b`f') -print("") -print("To add a message to the board just converse with the NomadNet Message Board at `[lxmf@{}]".format(message_board_peer)) -time_string = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time())) -print("Last Updated: {}".format(time_string)) -print("") -print('>Messages') -print(" Date Time Username Message") -f = open(boardpath, "rb") -board_contents = msgpack.unpack(f) -board_contents.reverse() - -for content in board_contents: - print("`a{}".format(content.rstrip())) - print("") - -f.close() diff --git a/nomadnet/examples/messageboard/messageboard.py b/nomadnet/examples/messageboard/messageboard.py deleted file mode 100644 index 8a71cd1..0000000 --- a/nomadnet/examples/messageboard/messageboard.py +++ /dev/null @@ -1,187 +0,0 @@ -# Simple message board that can be hosted on a NomadNet node, messages can be posted by 'conversing' with a unique peer, all messages are then forwarded to the message board. -# https://github.com/chengtripp/lxmf_messageboard - -import RNS -import LXMF -import os, time -from queue import Queue -import RNS.vendor.umsgpack as msgpack - -display_name = "NomadNet Message Board" -max_messages = 20 - -def setup_lxmf(): - if os.path.isfile(identitypath): - identity = RNS.Identity.from_file(identitypath) - RNS.log('Loaded identity from file', RNS.LOG_INFO) - else: - RNS.log('No Primary Identity file found, creating new...', RNS.LOG_INFO) - identity = RNS.Identity() - identity.to_file(identitypath) - - return identity - -def lxmf_delivery(message): - # Do something here with a received message - RNS.log("A message was received: "+str(message.content.decode('utf-8'))) - - message_content = message.content.decode('utf-8') - source_hash_text = RNS.hexrep(message.source_hash, delimit=False) - - #Create username (just first 5 char of your addr) - username = source_hash_text[0:5] - - RNS.log('Username: {}'.format(username), RNS.LOG_INFO) - - time_string = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(message.timestamp)) - new_message = '{} {}: {}\n'.format(time_string, username, message_content) - - # Push message to board - # First read message board (if it exists - if os.path.isfile(boardpath): - f = open(boardpath, "rb") - message_board = msgpack.unpack(f) - f.close() - else: - message_board = [] - - #Check we aren't doubling up (this can sometimes happen if there is an error initially and it then gets fixed) - if new_message not in message_board: - # Append our new message to the list - message_board.append(new_message) - - # Prune the message board if needed - while len(message_board) > max_messages: - RNS.log('Pruning Message Board') - message_board.pop(0) - - # Now open the board and write the updated list - f = open(boardpath, "wb") - msgpack.pack(message_board, f) - f.close() - - # Send reply - message_reply = '{}_{}_Your message has been added to the messageboard'.format(source_hash_text, time.time()) - q.put(message_reply) - -def announce_now(lxmf_destination): - lxmf_destination.announce() - -def send_message(destination_hash, message_content): - try: - # Make a binary destination hash from a hexadecimal string - destination_hash = bytes.fromhex(destination_hash) - - except Exception as e: - RNS.log("Invalid destination hash", RNS.LOG_ERROR) - return - - # Check that size is correct - if not len(destination_hash) == RNS.Reticulum.TRUNCATED_HASHLENGTH//8: - RNS.log("Invalid destination hash length", RNS.LOG_ERROR) - - else: - # Length of address was correct, let's try to recall the - # corresponding Identity - destination_identity = RNS.Identity.recall(destination_hash) - - if destination_identity == None: - # No path/identity known, we'll have to abort or request one - RNS.log("Could not recall an Identity for the requested address. You have probably never received an announce from it. Try requesting a path from the network first. In fact, let's do this now :)", RNS.LOG_ERROR) - RNS.Transport.request_path(destination_hash) - RNS.log("OK, a path was requested. If the network knows a path, you will receive an announce with the Identity data shortly.", RNS.LOG_INFO) - - else: - # We know the identity for the destination hash, let's - # reconstruct a destination object. - lxmf_destination = RNS.Destination(destination_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, "lxmf", "delivery") - - # Create a new message object - lxm = LXMF.LXMessage(lxmf_destination, local_lxmf_destination, message_content, title="Reply", desired_method=LXMF.LXMessage.DIRECT) - - # You can optionally tell LXMF to try to send the message - # as a propagated message if a direct link fails - lxm.try_propagation_on_fail = True - - # Send it - message_router.handle_outbound(lxm) - -def announce_check(): - if os.path.isfile(announcepath): - f = open(announcepath, "r") - announce = int(f.readline()) - f.close() - else: - RNS.log('failed to open announcepath', RNS.LOG_DEBUG) - announce = 1 - - if announce > int(time.time()): - RNS.log('Recent announcement', RNS.LOG_DEBUG) - else: - f = open(announcepath, "w") - next_announce = int(time.time()) + 1800 - f.write(str(next_announce)) - f.close() - announce_now(local_lxmf_destination) - RNS.log('Announcement sent, expr set 1800 seconds', RNS.LOG_INFO) - -#Setup Paths and Config Files -userdir = os.path.expanduser("~") - -if os.path.isdir("/etc/nomadmb") and os.path.isfile("/etc/nomadmb/config"): - configdir = "/etc/nomadmb" -elif os.path.isdir(userdir+"/.config/nomadmb") and os.path.isfile(userdir+"/.config/nomadmb/config"): - configdir = userdir+"/.config/nomadmb" -else: - configdir = userdir+"/.nomadmb" - -storagepath = configdir+"/storage" -if not os.path.isdir(storagepath): - os.makedirs(storagepath) - -identitypath = configdir+"/storage/identity" -announcepath = configdir+"/storage/announce" -boardpath = configdir+"/storage/board" - -# Message Queue -q = Queue(maxsize = 5) - -# Start Reticulum and print out all the debug messages -reticulum = RNS.Reticulum(loglevel=RNS.LOG_VERBOSE) - -# Create a Identity. -current_identity = setup_lxmf() - -# Init the LXMF router -message_router = LXMF.LXMRouter(identity = current_identity, storagepath = configdir) - -# Register a delivery destination (for yourself) -# In this example we use the same Identity as we used -# to instantiate the LXMF router. It could be a different one, -# but it can also just be the same, depending on what you want. -local_lxmf_destination = message_router.register_delivery_identity(current_identity, display_name=display_name) - -# Set a callback for when a message is received -message_router.register_delivery_callback(lxmf_delivery) - -# Announce node properties - -RNS.log('LXMF Router ready to receive on: {}'.format(RNS.prettyhexrep(local_lxmf_destination.hash)), RNS.LOG_INFO) -announce_check() - -while True: - - # Work through internal message queue - for i in list(q.queue): - message_id = q.get() - split_message = message_id.split('_') - destination_hash = split_message[0] - message = split_message[2] - RNS.log('{} {}'.format(destination_hash, message), RNS.LOG_INFO) - send_message(destination_hash, message) - - # Check whether we need to make another announcement - announce_check() - - #Sleep - time.sleep(10) diff --git a/nomadnet/examples/various/input_fields.py b/nomadnet/examples/various/input_fields.py deleted file mode 100644 index 5d1eccc..0000000 --- a/nomadnet/examples/various/input_fields.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python3 -import os -env_string = "" -for e in os.environ: - env_string += "{}={}\n".format(e, os.environ[e]) - -template = """>Fields and Submitting Data - -Nomad Network let's you use simple input fields for submitting data to node-side applications. Submitted data, along with other session variables will be available to the node-side script / program as environment variables. This page contains a few examples. - ->> Read Environment Variables - -{@ENV} ->>Examples of Fields and Submissions - -The following section contains a simple set of fields, and a few different links that submit the field data in different ways. - --= - - ->>>Text Fields -An input field : `B444``b - -An masked field : `B444``b - -An small field : `B444`<8|small`test>`b, and some more text. - -Two fields : `B444`<8|one`One>`b `B444`<8|two`Two>`b - -The data can be `!`[submitted`:/page/input_fields.mu`username|two]`!. - ->> Checkbox Fields - -`B444``b Sign me up - ->> Radio group - -Select your favorite color: - -`B900`<^|color|Red`>`b Red - -`B090`<^|color|Green`>`b Green - -`B009`<^|color|Blue`>`b Blue - - ->>> Submitting data - -You can `!`[submit`:/page/input_fields.mu`one|password|small|color]`! other fields, or just `!`[a single one`:/page/input_fields.mu`username]`! - -Or simply `!`[submit them all`:/page/input_fields.mu`*]`!. - -Submission links can also `!`[include pre-configured variables`:/page/input_fields.mu`username|two|entitiy_id=4611|action=view]`!. - -Or take all fields and `!`[pre-configured variables`:/page/input_fields.mu`*|entitiy_id=4611|action=view]`!. - -Or only `!`[pre-configured variables`:/page/input_fields.mu`entitiy_id=4688|task=something]`! - --= - -""" -print(template.replace("{@ENV}", env_string)) \ No newline at end of file diff --git a/nomadnet/nomadnet.py b/nomadnet/nomadnet.py index cb8591f..2ee25de 100644 --- a/nomadnet/nomadnet.py +++ b/nomadnet/nomadnet.py @@ -2,27 +2,18 @@ from ._version import __version__ -import io import argparse import nomadnet -def program_setup(configdir, rnsconfigdir, daemon, console): - app = nomadnet.NomadNetworkApp( - configdir = configdir, - rnsconfigdir = rnsconfigdir, - daemon = daemon, - force_console = console, - ) +def program_setup(configdir, rnsconfigdir): + app = nomadnet.NomadNetworkApp(configdir = configdir, rnsconfigdir = rnsconfigdir) def main(): try: parser = argparse.ArgumentParser(description="Nomad Network Client") parser.add_argument("--config", action="store", default=None, help="path to alternative Nomad Network config directory", type=str) parser.add_argument("--rnsconfig", action="store", default=None, help="path to alternative Reticulum config directory", type=str) - parser.add_argument("-t", "--textui", action="store_true", default=False, help="run Nomad Network in text-UI mode") - parser.add_argument("-d", "--daemon", action="store_true", default=False, help="run Nomad Network in daemon mode") - parser.add_argument("-c", "--console", action="store_true", default=False, help="in daemon mode, log to console instead of file") parser.add_argument("--version", action="version", version="Nomad Network Client {version}".format(version=__version__)) args = parser.parse_args() @@ -37,18 +28,7 @@ def main(): else: rnsconfigarg = None - console = False - if args.daemon: - daemon = True - if args.console: - console = True - else: - daemon = False - - if args.textui: - daemon = False - - program_setup(configarg, rnsconfigarg, daemon, console) + program_setup(configarg, rnsconfigarg) except KeyboardInterrupt: print("") diff --git a/nomadnet/ui/MenuUI.py b/nomadnet/ui/MenuUI.py index 0d7bad9..b5bc34b 100644 --- a/nomadnet/ui/MenuUI.py +++ b/nomadnet/ui/MenuUI.py @@ -4,5 +4,5 @@ import nomadnet class MenuUI: def __init__(self): - RNS.log("Menu UI not implemented", RNS.LOG_ERROR, _override_destination=True) + RNS.log("Menu UI not implemented", RNS.LOG_ERROR) nomadnet.panic() \ No newline at end of file diff --git a/nomadnet/ui/NoneUI.py b/nomadnet/ui/NoneUI.py deleted file mode 100644 index 40a58cc..0000000 --- a/nomadnet/ui/NoneUI.py +++ /dev/null @@ -1,19 +0,0 @@ -import RNS -import nomadnet -import time - -from nomadnet import NomadNetworkApp - -class NoneUI: - - def __init__(self): - self.app = NomadNetworkApp.get_shared_instance() - self.app.ui = self - - if not self.app.force_console_log: - RNS.log("Nomad Network started in daemon mode, all further messages are logged to "+str(self.app.logfilepath), RNS.LOG_INFO, _override_destination=True) - else: - RNS.log("Nomad Network daemon started", RNS.LOG_INFO) - - while True: - time.sleep(1) \ No newline at end of file diff --git a/nomadnet/ui/TextUI.py b/nomadnet/ui/TextUI.py index 11dd2c7..93c03ea 100644 --- a/nomadnet/ui/TextUI.py +++ b/nomadnet/ui/TextUI.py @@ -2,7 +2,6 @@ import RNS import urwid import time import os -import platform import nomadnet from nomadnet.ui.textui import * @@ -22,9 +21,9 @@ THEMES = { # Style name # 16-color style # Monochrome style # 88, 256 and true-color style ("heading", "light gray,underline", "default", "underline", "g93,underline", "default"), ("menubar", "black", "light gray", "standout", "#111", "#bbb"), - ("scrollbar", "light gray", "default", "default", "#444", "default"), + ("scrollbar", "light gray", "default", "standout", "#444", "default"), ("shortcutbar", "black", "light gray", "standout", "#111", "#bbb"), - ("body_text", "light gray", "default", "default", "#ddd", "default"), + ("body_text", "white", "default", "default", "#ddd", "default"), ("error_text", "dark red", "default", "default", "dark red", "default"), ("warning_text", "yellow", "default", "default", "#ba4", "default"), ("inactive_text", "dark gray", "default", "default", "dark gray", "default"), @@ -33,7 +32,6 @@ THEMES = { ("msg_header_ok", "black", "light green", "standout", "#111", "#6b2"), ("msg_header_caution", "black", "yellow", "standout", "#111", "#fd3"), ("msg_header_sent", "black", "light gray", "standout", "#111", "#ddd"), - ("msg_header_propagated", "black", "light blue", "standout", "#111", "#28b"), ("msg_header_delivered", "black", "light blue", "standout", "#111", "#28b"), ("msg_header_failed", "black", "dark gray", "standout", "#000", "#777"), ("msg_warning_untrusted", "black", "dark red", "standout", "#111", "dark red"), @@ -45,30 +43,20 @@ THEMES = { ("list_normal", "dark gray", "default", "default", "#bbb", "default"), ("list_untrusted", "dark red", "default", "default", "#a22", "default"), ("list_focus_untrusted", "black", "light gray", "standout", "#810", "#aaa"), - ("list_unresponsive", "yellow", "default", "default", "#b92", "default"), - ("list_focus_unresponsive", "black", "light gray", "standout", "#530", "#aaa"), - ("topic_list_normal", "light gray", "default", "default", "#ddd", "default"), + ("topic_list_normal", "white", "default", "default", "#ddd", "default"), ("browser_controls", "light gray", "default", "default", "#bbb", "default"), ("progress_full", "black", "light gray", "standout", "#111", "#bbb"), ("progress_empty", "light gray", "default", "default", "#ddd", "default"), - ("interface_title", "", "", "default", "", ""), - ("interface_title_selected", "bold", "", "bold", "", ""), - ("connected_status", "dark green", "default", "default", "dark green", "default"), - ("disconnected_status", "dark red", "default", "default", "dark red", "default"), - ("placeholder", "dark gray", "default", "default", "dark gray", "default"), - ("placeholder_text", "dark gray", "default", "default", "dark gray", "default"), - ("error", "light red,blink", "default", "blink", "#f44,blink", "default"), - - ], + ], }, THEME_LIGHT: { "urwid_theme": [ # Style name # 16-color style # Monochrome style # 88, 256 and true-color style ("heading", "dark gray,underline", "default", "underline", "g93,underline", "default"), ("menubar", "black", "dark gray", "standout", "#111", "#bbb"), - ("scrollbar", "dark gray", "default", "default", "#444", "default"), + ("scrollbar", "dark gray", "default", "standout", "#444", "default"), ("shortcutbar", "black", "dark gray", "standout", "#111", "#bbb"), - ("body_text", "dark gray", "default", "default", "#222", "default"), + ("body_text", "black", "default", "default", "#222", "default"), ("error_text", "dark red", "default", "default", "dark red", "default"), ("warning_text", "yellow", "default", "default", "#ba4", "default"), ("inactive_text", "light gray", "default", "default", "dark gray", "default"), @@ -77,7 +65,6 @@ THEMES = { ("msg_header_ok", "black", "dark green", "standout", "#111", "#6b2"), ("msg_header_caution", "black", "yellow", "standout", "#111", "#fd3"), ("msg_header_sent", "black", "dark gray", "standout", "#111", "#ddd"), - ("msg_header_propagated", "black", "light blue", "standout", "#111", "#28b"), ("msg_header_delivered", "black", "light blue", "standout", "#111", "#28b"), ("msg_header_failed", "black", "dark gray", "standout", "#000", "#777"), ("msg_warning_untrusted", "black", "dark red", "standout", "#111", "dark red"), @@ -89,19 +76,10 @@ THEMES = { ("list_normal", "dark gray", "default", "default", "#444", "default"), ("list_untrusted", "dark red", "default", "default", "#a22", "default"), ("list_focus_untrusted", "black", "dark gray", "standout", "#810", "#aaa"), - ("list_unresponsive", "yellow", "default", "default", "#b92", "default"), - ("list_focus_unresponsive", "black", "light gray", "standout", "#530", "#aaa"), - ("topic_list_normal", "dark gray", "default", "default", "#222", "default"), + ("topic_list_normal", "black", "default", "default", "#222", "default"), ("browser_controls", "dark gray", "default", "default", "#444", "default"), ("progress_full", "black", "dark gray", "standout", "#111", "#bbb"), ("progress_empty", "dark gray", "default", "default", "#ddd", "default"), - ("interface_title", "dark gray", "default", "default", "#444", "default"), - ("interface_title_selected", "dark gray,bold", "default", "bold", "#444,bold", "default"), - ("connected_status", "dark green", "default", "default", "#4a0", "default"), - ("disconnected_status", "dark red", "default", "default", "#a22", "default"), - ("placeholder", "light gray", "default", "default", "#999", "default"), - ("placeholder_text", "light gray", "default", "default", "#999", "default"), - ("error", "dark red,blink", "default", "blink", "#a22,blink", "default"), ], } } @@ -112,13 +90,6 @@ GLYPHSETS = { "nerdfont": 3 } -if platform.system() == "Darwin": - urm_char = " \uf0e0" - ur_char = "\uf0e0 " -else: - urm_char = " \uf003" - ur_char = "\uf003 " - GLYPHS = { # Glyph name # Plain # Unicode # Nerd Font ("check", "=", "\u2713", "\u2713"), @@ -131,45 +102,32 @@ GLYPHS = { ("arrow_u", "/\\", "\u2191", "\u2191"), ("arrow_d", "\\/", "\u2193", "\u2193"), ("warning", "!", "\u26a0", "\uf12a"), - ("info", "i", "\u2139", "\U000f064e"), - ("unread", "[!]", "\u2709", ur_char), + ("info", "i", "\u2139", "\ufb4d"), + ("unread", "[U]", "\u2709", "\uf003 "), ("divider1", "-", "\u2504", "\u2504"), ("peer", "[P]", "\u24c5 ", "\uf415"), - ("node", "[N]", "\u24c3 ", "\U000f0002"), - ("page", "", "\u25a4 ", "\uf719 "), - ("speed", "", "\u25F7 ", "\U000f04c5 "), - ("decoration_menu", " +", " +", " \U000f043b"), - ("unread_menu", " !", " \u2709", urm_char), + ("node", "[N]", "\u24c3 ", "\uf502"), + ("page", "", "\u25a4", "\uf719 "), + ("speed", "", "\u25F7", "\uf9c4"), + ("decoration_menu", "", "", " \uf93a"), ("globe", "", "", "\uf484"), - ("sent", "/\\", "\u2191", "\U000f0cd8"), - ("papermsg", "P", "\u25a4", "\uf719"), - ("qrcode", "QR", "\u25a4", "\uf029"), - ("selected", "[*] ", "\u25CF", "\u25CF"), - ("unselected", "[ ] ", "\u25CB", "\u25CB"), } class TextUI: def __init__(self): - self.restore_ixon = False - - try: - rval = os.system("stty -a | grep \"\\-ixon\"") - if rval == 0: - pass - - else: - os.system("stty -ixon") - self.restore_ixon = True - - except Exception as e: - RNS.log("Could not configure terminal flow control sequences, some keybindings may not work.", RNS.LOG_WARNING) - RNS.log("The contained exception was: "+str(e)) - self.app = NomadNetworkApp.get_shared_instance() self.app.ui = self self.loop = None + # TODO: Remove + # if importlib.util.find_spec("urwid") != None: + # import urwid + # else: + # RNS.log("The text-mode user interface requires Urwid to be installed on your system.", RNS.LOG_ERROR) + # RNS.log("You can install it with the command: pip3 install urwid", RNS.LOG_ERROR) + # nomadnet.panic() + urwid.set_encoding("UTF-8") intro_timeout = self.app.config["textui"]["intro_time"] @@ -181,7 +139,7 @@ class TextUI: if self.app.config["textui"]["glyphs"] == "plain": glyphset = "plain" - elif self.app.config["textui"]["glyphs"] == "unicode": + elif self.app.config["textui"]["glyphs"] == "unicoode": glyphset = "unicode" elif self.app.config["textui"]["glyphs"] == "nerdfont": glyphset = "nerdfont" @@ -203,7 +161,7 @@ class TextUI: else: initial_widget = self.main_display.widget - self.loop = urwid.MainLoop(initial_widget, unhandled_input=self.unhandled_input, screen=self.screen, handle_mouse=mouse_enabled) + self.loop = urwid.MainLoop(initial_widget, screen=self.screen, handle_mouse=mouse_enabled) if intro_timeout > 0: self.loop.set_alarm_in(intro_timeout, self.display_main) @@ -225,22 +183,12 @@ class TextUI: self.set_colormode(colormode) - self.main_display.start() self.loop.run() def set_colormode(self, colormode): self.colormode = colormode self.screen.set_terminal_properties(colormode) - - if self.colormode < 256: - self.screen.reset_default_terminal_palette() - self.restore_palette = True - - def unhandled_input(self, key): - if key == "ctrl q": - raise urwid.ExitMainLoop - elif key == "ctrl e": - pass + self.screen.reset_default_terminal_palette() def display_main(self, loop, user_data): self.loop.widget = self.main_display.widget diff --git a/nomadnet/ui/__init__.py b/nomadnet/ui/__init__.py index fbafc03..8fd7944 100644 --- a/nomadnet/ui/__init__.py +++ b/nomadnet/ui/__init__.py @@ -12,15 +12,11 @@ UI_MENU = 0x01 UI_TEXT = 0x02 UI_GRAPHICAL = 0x03 UI_WEB = 0x04 -UI_MODES = [UI_NONE, UI_MENU, UI_TEXT, UI_GRAPHICAL, UI_WEB] +UI_MODES = [UI_MENU, UI_TEXT, UI_GRAPHICAL, UI_WEB] def spawn(uimode): if uimode in UI_MODES: - if uimode == UI_NONE: - RNS.log("Starting Nomad Network daemon...", RNS.LOG_INFO) - else: - RNS.log("Starting user interface...", RNS.LOG_INFO) - + RNS.log("Starting user interface...", RNS.LOG_INFO) if uimode == UI_MENU: from .MenuUI import MenuUI return MenuUI() @@ -33,11 +29,8 @@ def spawn(uimode): elif uimode == UI_WEB: from .WebUI import WebUI return WebUI() - elif uimode == UI_NONE: - from .NoneUI import NoneUI - return NoneUI() else: return None else: - RNS.log("Invalid UI mode", RNS.LOG_ERROR, _override_destination=True) + RNS.log("Invalid UI mode", RNS.LOG_ERROR) nomadnet.panic() \ No newline at end of file diff --git a/nomadnet/ui/textui/Browser.py b/nomadnet/ui/textui/Browser.py index 1962714..ba85a03 100644 --- a/nomadnet/ui/textui/Browser.py +++ b/nomadnet/ui/textui/Browser.py @@ -1,15 +1,11 @@ import RNS -import LXMF -import io import os import time import urwid -import shutil import nomadnet import subprocess import threading -from .MicronParser import markup_to_attrmaps, make_style, default_state -from nomadnet.Directory import DirectoryEntry +from .MicronParser import markup_to_attrmaps from nomadnet.vendor.Scrollable import * class BrowserFrame(urwid.Frame): @@ -24,39 +20,14 @@ class BrowserFrame(urwid.Frame): self.delegate.reload() elif key == "ctrl u": self.delegate.url_dialog() - elif key == "ctrl s": - self.delegate.save_node_dialog() - elif key == "ctrl b": - self.delegate.save_node_dialog() - elif key == "ctrl g": - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.sub_displays.network_display.toggle_fullscreen() - elif self.focus_position == "body": - if key == "down" or key == "up": - try: - if hasattr(self.delegate, "page_pile") and self.delegate.page_pile: - def df(loop, user_data): - st = None - nf = self.delegate.page_pile.focus - if hasattr(nf, "key_timeout"): - st = nf - elif hasattr(nf, "original_widget"): - no = nf.original_widget - if hasattr(no, "original_widget"): - st = no.original_widget - else: - if hasattr(no, "key_timeout"): - st = no - - if st and hasattr(st, "key_timeout") and hasattr(st, "keypress") and callable(st.keypress): - st.keypress(None, None) - - nomadnet.NomadNetworkApp.get_shared_instance().ui.loop.set_alarm_in(0.25, df) - - except Exception as e: - RNS.log("Error while setting up cursor timeout. The contained exception was: "+str(e), RNS.LOG_ERROR) - + elif self.get_focus() == "body": return super(BrowserFrame, self).keypress(size, key) - + # if key == "up" and self.delegate.messagelist.top_is_visible: + # nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") + # elif key == "down" and self.delegate.messagelist.bottom_is_visible: + # self.set_focus("footer") + # else: + # return super(ConversationFrame, self).keypress(size, key) else: return super(BrowserFrame, self).keypress(size, key) @@ -86,21 +57,15 @@ class Browser: self.aspects = aspects self.destination_hash = destination_hash self.path = path - self.request_data = None self.timeout = Browser.DEFAULT_TIMEOUT self.last_keypress = None self.link = None self.loopback = None self.status = Browser.DISCONECTED - self.progress_updated_at = None - self.previous_progress = 0 self.response_progress = 0 - self.response_speed = None self.response_size = None self.response_transfer_size = None - self.page_background_color = None - self.page_foreground_color = None self.saved_file_name = None self.page_data = None self.displayed_page_data = None @@ -110,7 +75,6 @@ class Browser: self.link_target = None self.frame = None self.attr_maps = [] - self.page_pile = None self.build_display() self.history = [] @@ -126,8 +90,6 @@ class Browser: if self.destination_hash != None: self.load_page() - self.clean_cache() - def current_url(self): if self.destination_hash == None: return "" @@ -159,153 +121,22 @@ class Browser: self.browser_footer = self.make_status_widget() self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) self.link_status_showing = False - if self.page_background_color != None or self.page_foreground_color != None: - style_name = make_style(default_state(fg=self.page_foreground_color, bg=self.page_background_color)) - self.browser_footer.set_attr_map({None: style_name}) else: self.link_status_showing = True self.browser_footer = urwid.AttrMap(urwid.Pile([urwid.Divider(self.g["divider1"]), urwid.Text("Link to: "+str(link_target))]), "browser_controls") self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) - if self.page_background_color != None or self.page_foreground_color != None: - style_name = make_style(default_state(fg=self.page_foreground_color, bg=self.page_background_color)) - self.browser_footer.set_attr_map({None: style_name}) - - def expand_shorthands(self, destination_type): - if destination_type == "nnn": - return "nomadnetwork.node" - elif destination_type == "lxmf": - return "lxmf.delivery" - else: - return destination_type - - def handle_link(self, link_target, link_data = None): - request_data = None - if link_data != None: - link_fields = [] - request_data = {} - all_fields = True if "*" in link_data else False - - for e in link_data: - if "=" in e: - c = e.split("=") - if len(c) == 2: - request_data["var_"+str(c[0])] = str(c[1]) - else: - link_fields.append(e) - - def recurse_down(w): - if isinstance(w, list): - for t in w: - recurse_down(t) - elif isinstance(w, tuple): - for t in w: - recurse_down(t) - elif hasattr(w, "contents"): - recurse_down(w.contents) - elif hasattr(w, "original_widget"): - recurse_down(w.original_widget) - elif hasattr(w, "_original_widget"): - recurse_down(w._original_widget) - else: - if hasattr(w, "field_name") and (all_fields or w.field_name in link_fields): - field_key = "field_" + w.field_name - if isinstance(w, urwid.Edit): - request_data[field_key] = w.edit_text - elif isinstance(w, urwid.RadioButton): - if w.state: - user_data = getattr(w, "field_value", None) - if user_data is not None: - request_data[field_key] = user_data - elif isinstance(w, urwid.CheckBox): - user_data = getattr(w, "field_value", "1") - if w.state: - existing_value = request_data.get(field_key, '') - if existing_value: - # Concatenate the new value with the existing one - request_data[field_key] = existing_value + ',' + user_data - else: - # Initialize the field with the current value - request_data[field_key] = user_data - else: - pass # do nothing if checkbox is not check - - - - - - - - recurse_down(self.attr_maps) - RNS.log("Including request data: "+str(request_data), RNS.LOG_DEBUG) - - components = link_target.split("@") - destination_type = None - - if len(components) == 2: - destination_type = self.expand_shorthands(components[0]) - link_target = components[1] - else: - destination_type = "nomadnetwork.node" - link_target = components[0] - - if destination_type == "nomadnetwork.node": - if self.status >= Browser.DISCONECTED: - RNS.log("Browser handling link to: "+str(link_target), RNS.LOG_DEBUG) - self.browser_footer = urwid.Text("Opening link to: "+str(link_target)) - try: - self.retrieve_url(link_target, request_data) - except Exception as e: - self.browser_footer = urwid.Text("Could not open link: "+str(e)) - self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) - else: - RNS.log("Browser already handling link, cannot handle link to: "+str(link_target), RNS.LOG_DEBUG) - - elif destination_type == "lxmf.delivery": - RNS.log("Passing LXMF link to handler", RNS.LOG_DEBUG) - self.handle_lxmf_link(link_target) - - else: - RNS.log("No known handler for destination type "+str(destination_type), RNS.LOG_DEBUG) - self.browser_footer = urwid.Text("Could not open link: "+"No known handler for destination type "+str(destination_type)) - self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) - - def handle_lxmf_link(self, link_target): - try: - if not type(link_target) is str: - raise ValueError("Invalid data type for LXMF link") - - if len(link_target) != (RNS.Reticulum.TRUNCATED_HASHLENGTH//8)*2: - raise ValueError("Invalid length for LXMF link") + def handle_link(self, link_target): + if self.status >= Browser.DISCONECTED: + RNS.log("Browser handling link to: "+str(link_target), RNS.LOG_DEBUG) try: - bytes.fromhex(link_target) - + self.retrieve_url(link_target) except Exception as e: - raise ValueError("Could not decode destination hash from LXMF link") + self.browser_footer = urwid.Text("Could not open link: "+str(e)) + self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) + else: + RNS.log("Browser aleady hadling link, cannot handle link to: "+str(link_target), RNS.LOG_DEBUG) - existing_conversations = nomadnet.Conversation.conversation_list(self.app) - - source_hash_text = link_target - display_name_data = RNS.Identity.recall_app_data(bytes.fromhex(source_hash_text)) - - display_name = None - if display_name_data != None: - display_name = LXMF.display_name_from_app_data(display_name_data) - - if not source_hash_text in [c[0] for c in existing_conversations]: - entry = DirectoryEntry(bytes.fromhex(source_hash_text), display_name=display_name) - self.app.directory.remember(entry) - - new_conversation = nomadnet.Conversation(source_hash_text, nomadnet.NomadNetworkApp.get_shared_instance(), initiator=True) - self.app.ui.main_display.sub_displays.conversations_display.update_conversation_list() - - self.app.ui.main_display.sub_displays.conversations_display.display_conversation(None, source_hash_text) - self.app.ui.main_display.show_conversations(None) - - except Exception as e: - RNS.log("Error while starting conversation from link. The contained exception was: "+str(e), RNS.LOG_ERROR) - self.browser_footer = urwid.Text("Could not open LXMF link: "+str(e)) - self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) def micron_released_focus(self): @@ -316,11 +147,7 @@ class Browser: self.browser_header = urwid.Text("") self.browser_footer = urwid.Text("") - self.page_pile = None - self.browser_body = urwid.Filler( - urwid.Text("Disconnected\n"+self.g["arrow_l"]+" "+self.g["arrow_r"], align=urwid.CENTER), - urwid.MIDDLE, - ) + self.browser_body = urwid.Filler(urwid.Text("Disconnected\n"+self.g["arrow_l"]+" "+self.g["arrow_r"], align="center"), "middle") self.frame = BrowserFrame(self.browser_body, header=self.browser_header, footer=self.browser_footer) self.frame.delegate = self @@ -329,14 +156,7 @@ class Browser: def make_status_widget(self): if self.response_progress > 0: - if self.page_background_color != None or self.page_foreground_color != None: - style_name = make_style(default_state(fg=self.page_foreground_color, bg=self.page_background_color)) - style_name_inverted = make_style(default_state(bg=self.page_foreground_color, fg=self.page_background_color)) - else: - style_name = "progress_empty" - style_name_inverted = "progress_full" - - pb = ResponseProgressBar(style_name , style_name_inverted, current=self.response_progress, done=1.0, satt=None, owner=self) + pb = ResponseProgressBar("progress_empty" , "progress_full", current=self.response_progress, done=1.0, satt=None) widget = urwid.Pile([urwid.Divider(self.g["divider1"]), pb]) else: widget = urwid.Pile([urwid.Divider(self.g["divider1"]), urwid.Text(self.status_text())]) @@ -354,44 +174,34 @@ class Browser: self.update_display() columns = urwid.Columns([ - (urwid.WEIGHT, 0.5, urwid.Text(" ")), + ("weight", 0.5, urwid.Text(" ")), (8, urwid.Button("Back", on_press=back_action)), - (urwid.WEIGHT, 0.5, urwid.Text(" ")), + ("weight", 0.5, urwid.Text(" ")) ]) if len(self.attr_maps) > 0: pile = urwid.Pile([ - urwid.Text("!\n\n"+self.status_text()+"\n", align=urwid.CENTER), - columns + urwid.Text("!\n\n"+self.status_text()+"\n", align="center"), + columns ]) else: - pile = urwid.Pile([urwid.Text("!\n\n"+self.status_text(), align=urwid.CENTER)]) + pile = urwid.Pile([ + urwid.Text("!\n\n"+self.status_text(), align="center") + ]) - return urwid.Filler(pile, urwid.MIDDLE) + return urwid.Filler(pile, "middle") def update_display(self): if self.status == Browser.DISCONECTED: self.display_widget.set_attr_map({None: "inactive_text"}) - self.page_pile = None - self.browser_body = urwid.Filler( - urwid.Text("Disconnected\n"+self.g["arrow_l"]+" "+self.g["arrow_r"], align=urwid.CENTER), - urwid.MIDDLE, - ) + self.browser_body = urwid.Filler(urwid.Text("Disconnected\n"+self.g["arrow_l"]+" "+self.g["arrow_r"], align="center"), "middle") self.browser_footer = urwid.Text("") self.browser_header = urwid.Text("") self.linebox.set_title("Remote Node") else: self.display_widget.set_attr_map({None: "body_text"}) self.browser_header = self.make_control_widget() - if self.page_background_color != None or self.page_foreground_color != None: - style_name = make_style(default_state(fg=self.page_foreground_color, bg=self.page_background_color)) - self.browser_header.set_attr_map({None: style_name}) - - if self.destination_hash != None: - remote_display_string = self.app.directory.simplest_display_str(self.destination_hash) - else: - remote_display_string = "" - + remote_display_string = self.app.directory.simplest_display_str(self.destination_hash) if self.loopback != None and remote_display_string == RNS.prettyhexrep(self.loopback): remote_display_string = self.app.node.name @@ -400,13 +210,6 @@ class Browser: if self.status == Browser.DONE: self.browser_footer = self.make_status_widget() self.update_page_display() - - if self.page_background_color != None or self.page_foreground_color != None: - style_name = make_style(default_state(fg=self.page_foreground_color, bg=self.page_background_color)) - self.browser_body.set_attr_map({None: style_name}) - self.browser_footer.set_attr_map({None: style_name}) - self.browser_header.set_attr_map({None: style_name}) - self.display_widget.set_attr_map({None: style_name}) elif self.status == Browser.LINK_TIMEOUT: self.browser_body = self.make_request_failed_widget() @@ -414,18 +217,9 @@ class Browser: elif self.status <= Browser.REQUEST_SENT: if len(self.attr_maps) == 0: - self.browser_body = urwid.Filler( - urwid.Text("Retrieving\n["+self.current_url()+"]", align=urwid.CENTER), - urwid.MIDDLE, - ) + self.browser_body = urwid.Filler(urwid.Text("Retrieving\n["+self.current_url()+"]", align="center"), "middle") self.browser_footer = self.make_status_widget() - - if self.page_background_color != None or self.page_foreground_color != None: - style_name = make_style(default_state(fg=self.page_foreground_color, bg=self.page_background_color)) - self.browser_footer.set_attr_map({None: style_name}) - self.browser_header.set_attr_map({None: style_name}) - self.display_widget.set_attr_map({None: style_name}) elif self.status == Browser.REQUEST_FAILED: self.browser_body = self.make_request_failed_widget() @@ -444,8 +238,6 @@ class Browser: def update_page_display(self): pile = urwid.Pile(self.attr_maps) - pile.automove_cursor_on_scroll = True - self.page_pile = pile self.browser_body = urwid.AttrMap(ScrollBar(Scrollable(pile, force_forward_keypress=True), thumb_char="\u2503", trough_char=" "), "scrollbar") def identify(self): @@ -458,13 +250,9 @@ class Browser: if self.link != None: self.link.teardown() - self.request_data = None self.attr_maps = [] self.status = Browser.DISCONECTED self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None @@ -476,7 +264,7 @@ class Browser: self.update_display() - def retrieve_url(self, url, request_data = None): + def retrieve_url(self, url): self.previous_destination_hash = self.destination_hash self.previous_path = self.path @@ -485,7 +273,7 @@ class Browser: components = url.split(":") if len(components) == 1: - if len(components[0]) == (RNS.Reticulum.TRUNCATED_HASHLENGTH//8)*2: + if len(components[0]) == 20: try: destination_hash = bytes.fromhex(components[0]) except Exception as e: @@ -494,7 +282,7 @@ class Browser: else: raise ValueError("Malformed URL") elif len(components) == 2: - if len(components[0]) == (RNS.Reticulum.TRUNCATED_HASHLENGTH//8)*2: + if len(components[0]) == 20: try: destination_hash = bytes.fromhex(components[0]) except Exception as e: @@ -529,7 +317,6 @@ class Browser: else: self.set_destination_hash(destination_hash) self.set_path(path) - self.set_request_data(request_data) self.load_page() def set_destination_hash(self, destination_hash): @@ -543,8 +330,6 @@ class Browser: def set_path(self, path): self.path = path - def set_request_data(self, request_data): - self.request_data = request_data def set_timeout(self, timeout): self.timeout = timeout @@ -575,61 +360,15 @@ class Browser: self.status = Browser.DONE self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 except Exception as e: RNS.log("An error occurred while handling file response. The contained exception was: "+str(e), RNS.LOG_ERROR) def download_file(self, destination_hash, path): - if self.link == None or self.link.destination.hash != self.destination_hash: - if not RNS.Transport.has_path(self.destination_hash): - self.status = Browser.NO_PATH - self.update_display() - - RNS.Transport.request_path(self.destination_hash) - self.status = Browser.PATH_REQUESTED - self.update_display() - - pr_time = time.time()+RNS.Transport.first_hop_timeout(self.destination_hash) - while not RNS.Transport.has_path(self.destination_hash): - now = time.time() - if now > pr_time+self.timeout: - self.request_timeout() - return - - time.sleep(0.25) - - self.status = Browser.ESTABLISHING_LINK - self.update_display() - - identity = RNS.Identity.recall(self.destination_hash) - destination = RNS.Destination( - identity, - RNS.Destination.OUT, - RNS.Destination.SINGLE, - self.app_name, - self.aspects - ) - - self.link = RNS.Link(destination, established_callback = self.link_established, closed_callback = self.link_closed) - - while self.status == Browser.ESTABLISHING_LINK: - time.sleep(0.1) - - if self.status != Browser.LINK_ESTABLISHED: - return - - self.update_display() - if self.link != None and self.link.destination.hash == self.destination_hash: # Send the request self.status = Browser.REQUESTING self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.saved_file_name = None @@ -686,7 +425,7 @@ class Browser: self.load_page() def close_dialogs(self): - options = self.delegate.columns.options(urwid.WEIGHT, self.delegate.right_area_width) + options = self.delegate.columns.options("weight", self.delegate.right_area_width) self.delegate.columns.contents[1] = (self.display_widget, options) def url_dialog(self): @@ -696,22 +435,13 @@ class Browser: self.close_dialogs() def confirmed(sender): - try: - self.retrieve_url(e_url.get_edit_text()) - except Exception as e: - self.browser_footer = urwid.Text("Could not open link: "+str(e)) - self.frame.contents["footer"] = (self.browser_footer, self.frame.options()) - + self.retrieve_url(e_url.get_edit_text()) self.close_dialogs() dialog = UrlDialogLineBox( urwid.Pile([ e_url, - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Cancel", on_press=dismiss_dialog)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Go", on_press=confirmed)), - ]) + urwid.Columns([("weight", 0.45, urwid.Button("Cancel", on_press=dismiss_dialog)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("Go", on_press=confirmed))]) ]), title="Enter URL" ) e_url.confirmed = confirmed @@ -719,106 +449,22 @@ class Browser: dialog.delegate = self bottom = self.display_widget - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=(urwid.RELATIVE, 65), - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) + overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 65), valign="middle", height="pack", left=2, right=2) - options = self.delegate.columns.options(urwid.WEIGHT, self.delegate.right_area_width) + options = self.delegate.columns.options("weight", self.delegate.right_area_width) self.delegate.columns.contents[1] = (overlay, options) self.delegate.columns.focus_position = 1 - def save_node_dialog(self): - if self.destination_hash != None: - try: - def dismiss_dialog(sender): - self.close_dialogs() - - display_name = RNS.Identity.recall_app_data(self.destination_hash) - disp_str = "" - if display_name != None: - display_name = display_name.decode("utf-8") - disp_str = " \""+display_name+"\"" - - def confirmed(sender): - node_entry = DirectoryEntry(self.destination_hash, display_name=display_name, hosts_node=True) - self.app.directory.remember(node_entry) - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() - - self.close_dialogs() - - dialog = UrlDialogLineBox( - urwid.Pile([ - urwid.Text("Save connected node"+disp_str+" "+RNS.prettyhexrep(self.destination_hash)+" to Known Nodes?\n"), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Cancel", on_press=dismiss_dialog)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Save", on_press=confirmed)), - ]) - ]), title="Save Node" - ) - - dialog.confirmed = confirmed - dialog.delegate = self - bottom = self.display_widget - - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=(urwid.RELATIVE, 50), - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - options = self.delegate.columns.options(urwid.WEIGHT, self.delegate.right_area_width) - self.delegate.columns.contents[1] = (overlay, options) - self.delegate.columns.focus_position = 1 - - except Exception as e: - pass def load_page(self): - if self.request_data == None: - cached = self.get_cached(self.current_url()) - else: - cached = None - + cached = self.get_cached(self.current_url()) if cached: self.status = Browser.DONE self.page_data = cached self.markup = self.page_data.decode("utf-8") - - self.page_background_color = None - bgpos = self.markup.find("#!bg=") - if bgpos: - endpos = self.markup.find("\n", bgpos) - if endpos-(bgpos+5) == 3: - bg = self.markup[bgpos+5:endpos] - self.page_background_color = bg - - self.page_foreground_color = None - fgpos = self.markup.find("#!fg=") - if fgpos: - endpos = self.markup.find("\n", fgpos) - if endpos-(fgpos+5) == 3: - fg = self.markup[fgpos+5:endpos] - self.page_foreground_color = fg - - self.attr_maps = markup_to_attrmaps(self.markup, url_delegate=self, fg_color=self.page_foreground_color, bg_color=self.page_background_color) + self.attr_maps = markup_to_attrmaps(self.markup, url_delegate=self) self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.saved_file_name = None @@ -845,15 +491,7 @@ class Browser: page_data = b"The requested local page did not exist in the file system" if os.path.isfile(page_path): if os.access(page_path, os.X_OK): - if self.request_data != None: - env_map = self.request_data - else: - env_map = {} - - if "PATH" in os.environ: - env_map["PATH"] = os.environ["PATH"] - - generated = subprocess.run([page_path], stdout=subprocess.PIPE, env=env_map) + generated = subprocess.run([page_path], stdout=subprocess.PIPE) page_data = generated.stdout else: file = open(page_path, "rb") @@ -863,29 +501,9 @@ class Browser: self.status = Browser.DONE self.page_data = page_data self.markup = self.page_data.decode("utf-8") - - self.page_background_color = None - bgpos = self.markup.find("#!bg=") - if bgpos: - endpos = self.markup.find("\n", bgpos) - if endpos-(bgpos+5) == 3: - bg = self.markup[bgpos+5:endpos] - self.page_background_color = bg - - self.page_foreground_color = None - fgpos = self.markup.find("#!fg=") - if fgpos: - endpos = self.markup.find("\n", fgpos) - if endpos-(fgpos+5) == 3: - fg = self.markup[fgpos+5:endpos] - self.page_foreground_color = fg - - self.attr_maps = markup_to_attrmaps(self.markup, url_delegate=self, fg_color=self.page_foreground_color, bg_color=self.page_background_color) + self.attr_maps = markup_to_attrmaps(self.markup, url_delegate=self) self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.saved_file_name = None @@ -904,7 +522,7 @@ class Browser: def __load(self): # If an established link exists, but it doesn't match the target # destination, we close and clear it. - if self.link != None and (self.link.destination.hash != self.destination_hash or self.link.status != RNS.Link.ACTIVE): + if self.link != None and self.link.destination.hash != self.destination_hash: self.link.teardown() self.link = None @@ -918,7 +536,7 @@ class Browser: self.status = Browser.PATH_REQUESTED self.update_display() - pr_time = time.time()+RNS.Transport.first_hop_timeout(self.destination_hash) + pr_time = time.time() while not RNS.Transport.has_path(self.destination_hash): now = time.time() if now > pr_time+self.timeout: @@ -952,9 +570,6 @@ class Browser: # Send the request self.status = Browser.REQUESTING self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.saved_file_name = None @@ -963,7 +578,7 @@ class Browser: self.update_display() receipt = self.link.request( self.path, - data = self.request_data, + data = None, response_callback = self.response_received, failed_callback = self.request_failed, progress_callback = self.response_progressed @@ -982,10 +597,6 @@ class Browser: def link_established(self, link): self.status = Browser.LINK_ESTABLISHED - if self.app.directory.should_identify_on_connect(self.destination_hash): - RNS.log("Link established, identifying to remote system...", RNS.LOG_VERBOSE) - self.link.identify(self.app.identity) - def link_closed(self, link): if self.status == Browser.DISCONECTED or self.status == Browser.DONE: @@ -1000,9 +611,6 @@ class Browser: def link_establishment_timeout(self): self.status = Browser.LINK_TIMEOUT self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.link = None @@ -1015,28 +623,8 @@ class Browser: self.status = Browser.DONE self.page_data = request_receipt.response self.markup = self.page_data.decode("utf-8") - - self.page_background_color = None - bgpos = self.markup.find("#!bg=") - if bgpos: - endpos = self.markup.find("\n", bgpos) - if endpos-(bgpos+5) == 3: - bg = self.markup[bgpos+5:endpos] - self.page_background_color = bg - - self.page_foreground_color = None - fgpos = self.markup.find("#!fg=") - if fgpos: - endpos = self.markup.find("\n", fgpos) - if endpos-(fgpos+5) == 3: - fg = self.markup[fgpos+5:endpos] - self.page_foreground_color = fg - - self.attr_maps = markup_to_attrmaps(self.markup, url_delegate=self, fg_color=self.page_foreground_color, bg_color=self.page_background_color) + self.attr_maps = markup_to_attrmaps(self.markup, url_delegate=self) self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.loaded_from_cache = False # Simple header handling. Should be expanded when more @@ -1109,22 +697,6 @@ class Browser: return None - def clean_cache(self): - files = os.listdir(self.app.cachepath) - for file in files: - cachepath = self.app.cachepath+"/"+file - try: - components = file.split("_") - if len(components) == 2 and len(components[0]) == 64 and len(components[1]) > 0: - expires = float(components[1]) - - if time.time() > expires: - RNS.log("Removing stale cache entry "+str(file), RNS.LOG_DEBUG) - os.unlink(cachepath) - - except Exception as e: - pass - def cache_page(self, cache_time): url_hash = self.url_hash(self.current_url()) @@ -1148,41 +720,22 @@ class Browser: def file_received(self, request_receipt): try: - if type(request_receipt.response) == io.BufferedReader: - if request_receipt.metadata != None: - file_name = os.path.basename(request_receipt.metadata["name"].decode("utf-8")) - file_handle = request_receipt.response - file_destination = self.app.downloads_path+"/"+file_name + file_name = request_receipt.response[0] + file_data = request_receipt.response[1] + file_destination = self.app.downloads_path+"/"+file_name + + counter = 0 + while os.path.isfile(file_destination): + counter += 1 + file_destination = self.app.downloads_path+"/"+file_name+"."+str(counter) - counter = 0 - while os.path.isfile(file_destination): - counter += 1 - file_destination = self.app.downloads_path+"/"+file_name+"."+str(counter) + fh = open(file_destination, "wb") + fh.write(file_data) + fh.close() - shutil.move(file_handle.name, file_destination) - - else: - file_name = request_receipt.response[0] - file_data = request_receipt.response[1] - file_destination_name = os.path.basename(file_name) - file_destination = self.app.downloads_path+"/"+file_destination_name - - counter = 0 - while os.path.isfile(file_destination): - counter += 1 - file_destination = self.app.downloads_path+"/"+file_destination_name+"."+str(counter) - - fh = open(file_destination, "wb") - fh.write(file_data) - fh.close() - - self.saved_file_name = file_destination.replace(self.app.downloads_path+"/", "", 1) - + self.saved_file_name = file_destination.replace(self.app.downloads_path+"/", "", 1) self.status = Browser.DONE self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.update_display() except Exception as e: @@ -1194,50 +747,26 @@ class Browser: if request_receipt.request_id == self.last_request_id: self.status = Browser.REQUEST_FAILED self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.update_display() - if self.link != None: - try: - self.link.teardown() - except Exception as e: - pass else: self.status = Browser.REQUEST_FAILED self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.update_display() - if self.link != None: - try: - self.link.teardown() - except Exception as e: - pass def request_timeout(self, request_receipt=None): self.status = Browser.REQUEST_TIMEOUT self.response_progress = 0 - self.response_speed = None - self.progress_updated_at = None - self.previous_progress = 0 self.response_size = None self.response_transfer_size = None self.update_display() - if self.link != None: - try: - self.link.teardown() - except Exception as e: - pass def response_progressed(self, request_receipt): @@ -1245,17 +774,6 @@ class Browser: self.response_time = request_receipt.get_response_time() self.response_size = request_receipt.response_size self.response_transfer_size = request_receipt.response_transfer_size - - now = time.time() - if self.progress_updated_at == None: self.progress_updated_at = now - if now > self.progress_updated_at+1: - td = now - self.progress_updated_at - pd = self.response_progress - self.previous_progress - bd = pd*self.response_size - self.response_speed = (bd/td)*8 - self.previous_progress = self.response_progress - self.progress_updated_at = now - self.update_display() @@ -1306,14 +824,8 @@ class Browser: class ResponseProgressBar(urwid.ProgressBar): - def __init__(self, empty, full, current=None, done=None, satt=None, owner=None): - super().__init__(empty, full, current=current, done=done, satt=satt) - self.owner = owner - def get_text(self): - if self.owner.response_speed: speed_str = " "+RNS.prettyspeed(self.owner.response_speed) - else: speed_str = "" - return "Receiving response "+super().get_text().replace(" %", "%")+speed_str + return "Receiving response "+super().get_text() # A convenience function for printing a human- # readable file size @@ -1348,4 +860,4 @@ class UrlEdit(urwid.Edit): if key == "enter": self.confirmed(self) else: - return super(UrlEdit, self).keypress(size, key) + return super(UrlEdit, self).keypress(size, key) \ No newline at end of file diff --git a/nomadnet/ui/textui/Config.py b/nomadnet/ui/textui/Config.py index 36d92a5..6b7039f 100644 --- a/nomadnet/ui/textui/Config.py +++ b/nomadnet/ui/textui/Config.py @@ -12,13 +12,13 @@ class ConfigDisplayShortcuts(): class ConfigFiller(urwid.WidgetWrap): def __init__(self, widget, app): self.app = app - self.filler = urwid.Filler(widget, urwid.TOP) - super().__init__(self.filler) + self.filler = urwid.Filler(widget, "top") + urwid.WidgetWrap.__init__(self, self.filler) def keypress(self, size, key): if key == "up": - self.app.ui.main_display.frame.focus_position = "header" + self.app.ui.main_display.frame.set_focus("header") return super(ConfigFiller, self).keypress(size, key) @@ -31,20 +31,12 @@ class ConfigDisplay(): self.editor_term = EditorTerminal(self.app, self) self.widget = urwid.LineBox(self.editor_term) self.app.ui.main_display.update_active_sub_display() - self.app.ui.main_display.frame.focus_position = "body" + self.app.ui.main_display.frame.set_focus("body") self.editor_term.term.change_focus(True) pile = urwid.Pile([ - urwid.Text( - ( - "body_text", - "\nTo change the configuration, edit the config file located at:\n\n" - +self.app.configpath - +"\n\nRestart Nomad Network for changes to take effect\n", - ), - align=urwid.CENTER, - ), - urwid.Padding(urwid.Button("Open Editor", on_press=open_editor), width=15, align=urwid.CENTER), + urwid.Text(("body_text", "\nTo change the configuration, edit the config file located at:\n\n"+self.app.configpath+"\n\nRestart Nomad Network for changes to take effect\n"), align="center"), + urwid.Padding(urwid.Button("Open Editor", on_press=open_editor), width=15, align="center"), ]) self.config_explainer = ConfigFiller(pile, self.app) @@ -79,11 +71,11 @@ class EditorTerminal(urwid.WidgetWrap): urwid.connect_signal(self.term, 'closed', quit_term) - super().__init__(self.term) + urwid.WidgetWrap.__init__(self, self.term) def keypress(self, size, key): # TODO: Decide whether there should be a way to get out while editing #if key == "up": - # nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" + # nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") return super(EditorTerminal, self).keypress(size, key) \ No newline at end of file diff --git a/nomadnet/ui/textui/Conversations.py b/nomadnet/ui/textui/Conversations.py index 9a5405d..b99cec3 100644 --- a/nomadnet/ui/textui/Conversations.py +++ b/nomadnet/ui/textui/Conversations.py @@ -14,13 +14,13 @@ class ConversationListDisplayShortcuts(): def __init__(self, app): self.app = app - self.widget = urwid.AttrMap(urwid.Text("[C-e] Peer Info [C-x] Delete [C-r] Sync [C-n] New [C-u] Ingest URI [C-g] Fullscreen"), "shortcutbar") + self.widget = urwid.AttrMap(urwid.Text("[Enter] Open [C-e] Peer Info [C-x] Delete [C-n] New"), "shortcutbar") class ConversationDisplayShortcuts(): def __init__(self, app): self.app = app - self.widget = urwid.AttrMap(urwid.Text("[C-d] Send [C-p] Paper Msg [C-t] Title [C-k] Clear [C-w] Close [C-u] Purge [C-x] Clear History [C-o] Sort"), "shortcutbar") + self.widget = urwid.AttrMap(urwid.Text("[C-d] Send [C-k] Clear Editor [C-w] Close [C-t] Editor Type [C-p] Purge [C-x] Clear History"), "shortcutbar") class ConversationsArea(urwid.LineBox): def keypress(self, size, key): @@ -30,16 +30,10 @@ class ConversationsArea(urwid.LineBox): self.delegate.delete_selected_conversation() elif key == "ctrl n": self.delegate.new_conversation() - elif key == "ctrl u": - self.delegate.ingest_lxm_uri() - elif key == "ctrl r": - self.delegate.sync_conversations() - elif key == "ctrl g": - self.delegate.toggle_fullscreen() elif key == "tab": - self.delegate.app.ui.main_display.frame.focus_position = "header" + self.delegate.app.ui.main_display.frame.set_focus("header") elif key == "up" and (self.delegate.ilb.first_item_is_selected() or self.delegate.ilb.body_is_empty()): - self.delegate.app.ui.main_display.frame.focus_position = "header" + self.delegate.app.ui.main_display.frame.set_focus("header") else: return super(ConversationsArea, self).keypress(size, key) @@ -52,13 +46,11 @@ class DialogLineBox(urwid.LineBox): class ConversationsDisplay(): list_width = 0.33 - given_list_width = 52 cached_conversation_widgets = {} def __init__(self, app): self.app = app self.dialog_open = False - self.sync_dialog = None self.currently_displayed_conversation = None def disp_list_shortcuts(sender, arg1, arg2): @@ -69,10 +61,8 @@ class ConversationsDisplay(): self.columns_widget = urwid.Columns( [ - # (urwid.WEIGHT, ConversationsDisplay.list_width, self.listbox), - # (urwid.WEIGHT, 1-ConversationsDisplay.list_width, self.make_conversation_widget(None)) - (ConversationsDisplay.given_list_width, self.listbox), - (urwid.WEIGHT, 1, self.make_conversation_widget(None)) + ("weight", ConversationsDisplay.list_width, self.listbox), + ("weight", 1-ConversationsDisplay.list_width, self.make_conversation_widget(None)) ], dividechars=0, focus_column=0, box_columns=[0] ) @@ -105,15 +95,12 @@ class ConversationsDisplay(): highlight_offFocus="list_off_focus" ) - self.listbox = ConversationsArea(urwid.Filler(self.ilb, height=urwid.RELATIVE_100), title="Conversations") + self.listbox = ConversationsArea(urwid.Filler(self.ilb, height=("relative", 100))) self.listbox.delegate = self def delete_selected_conversation(self): self.dialog_open = True - item = self.ilb.get_selected_item() - if item == None: - return - source_hash = item.source_hash + source_hash = self.ilb.get_selected_item().source_hash def dismiss_dialog(sender): self.update_conversation_list() @@ -127,42 +114,22 @@ class ConversationsDisplay(): dialog = DialogLineBox( urwid.Pile([ - urwid.Text( - "Delete conversation with\n"+self.app.directory.simplest_display_str(bytes.fromhex(source_hash))+"\n", - align=urwid.CENTER, - ), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Yes", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("No", on_press=dismiss_dialog)), - ]) + urwid.Text("Delete conversation with\n"+self.app.directory.simplest_display_str(bytes.fromhex(source_hash))+"\n", align="center"), + urwid.Columns([("weight", 0.45, urwid.Button("Yes", on_press=confirmed)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("No", on_press=dismiss_dialog))]) ]), title="?" ) dialog.delegate = self bottom = self.listbox - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) + overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=2, right=2) - # options = self.columns_widget.options(urwid.WEIGHT, ConversationsDisplay.list_width) - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) + options = self.columns_widget.options("weight", ConversationsDisplay.list_width) self.columns_widget.contents[0] = (overlay, options) def edit_selected_in_directory(self): g = self.app.ui.glyphs self.dialog_open = True - item = self.ilb.get_selected_item() - if item == None: - return - source_hash_text = item.source_hash + source_hash_text = self.ilb.get_selected_item().source_hash display_name = self.ilb.get_selected_item().display_name if display_name == None: display_name = "" @@ -173,12 +140,9 @@ class ConversationsDisplay(): selected_id_widget = t_id - untrusted_selected = False - unknown_selected = True - trusted_selected = False - - direct_selected = True - propagated_selected = False + untrusted_selected = False + unknown_selected = True + trusted_selected = False try: if self.app.directory.find(bytes.fromhex(source_hash_text)): @@ -195,11 +159,6 @@ class ConversationsDisplay(): untrusted_selected = False unknown_selected = False trusted_selected = True - - if self.app.directory.preferred_delivery(bytes.fromhex(source_hash_text)) == DirectoryEntry.PROPAGATED: - direct_selected = False - propagated_selected = True - except Exception as e: pass @@ -208,10 +167,6 @@ class ConversationsDisplay(): r_unknown = urwid.RadioButton(trust_button_group, "Unknown", state=unknown_selected) r_trusted = urwid.RadioButton(trust_button_group, "Trusted", state=trusted_selected) - method_button_group = [] - r_direct = urwid.RadioButton(method_button_group, "Deliver directly", state=direct_selected) - r_propagated = urwid.RadioButton(method_button_group, "Use propagation nodes", state=propagated_selected) - def dismiss_dialog(sender): self.update_conversation_list() self.dialog_open = False @@ -226,11 +181,7 @@ class ConversationsDisplay(): elif r_trusted.state == True: trust_level = DirectoryEntry.TRUSTED - delivery = DirectoryEntry.DIRECT - if r_propagated.state == True: - delivery = DirectoryEntry.PROPAGATED - - entry = DirectoryEntry(source_hash, display_name, trust_level, preferred_delivery=delivery) + entry = DirectoryEntry(source_hash, display_name, trust_level) self.app.directory.remember(entry) self.update_conversation_list() self.dialog_open = False @@ -239,12 +190,9 @@ class ConversationsDisplay(): RNS.log("Could not save directory entry. The contained exception was: "+str(e), RNS.LOG_VERBOSE) if not dialog_pile.error_display: dialog_pile.error_display = True - options = dialog_pile.options(height_type=urwid.PACK) + options = dialog_pile.options(height_type="pack") dialog_pile.contents.append((urwid.Text(""), options)) - dialog_pile.contents.append(( - urwid.Text(("error_text", "Could not save entry. Check your input."), align=urwid.CENTER), - options,) - ) + dialog_pile.contents.append((urwid.Text(("error_text", "Could not save entry. Check your input."), align="center"), options)) source_is_known = self.app.directory.is_known(bytes.fromhex(source_hash_text)) if source_is_known: @@ -253,23 +201,13 @@ class ConversationsDisplay(): def query_action(sender, user_data): self.close_conversation_by_hash(user_data) nomadnet.Conversation.query_for_peer(user_data) - options = dialog_pile.options(height_type=urwid.PACK) + options = dialog_pile.options(height_type="pack") dialog_pile.contents = [ (urwid.Text("Query sent"), options), (urwid.Button("OK", on_press=dismiss_dialog), options) ] query_button = urwid.Button("Query network for keys", on_press=query_action, user_data=source_hash_text) - known_section = urwid.Pile([ - urwid.Divider(g["divider1"]), - urwid.Text(g["info"]+"\n", align=urwid.CENTER), - urwid.Text( - "The identity of this peer is not known, and you cannot currently send messages to it. " - "You can query the network to obtain the identity.\n", - align=urwid.CENTER, - ), - query_button, - urwid.Divider(g["divider1"]), - ]) + known_section = urwid.Pile([urwid.Divider(g["divider1"]), urwid.Text(g["info"]+"\n", align="center"), urwid.Text("The identity of this peer is not known, and you cannot currently communicate.\n", align="center"), query_button, urwid.Divider(g["divider1"])]) dialog_pile = urwid.Pile([ selected_id_widget, @@ -278,15 +216,8 @@ class ConversationsDisplay(): r_untrusted, r_unknown, r_trusted, - urwid.Divider(g["divider1"]), - r_direct, - r_propagated, known_section, - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Save", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Back", on_press=dismiss_dialog)), - ]) + urwid.Columns([("weight", 0.45, urwid.Button("Save", on_press=confirmed)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("Back", on_press=dismiss_dialog))]) ]) dialog_pile.error_display = False @@ -294,19 +225,9 @@ class ConversationsDisplay(): dialog.delegate = self bottom = self.listbox - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) + overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=2, right=2) - # options = self.columns_widget.options(urwid.WEIGHT, ConversationsDisplay.list_width) - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) + options = self.columns_widget.options("weight", ConversationsDisplay.list_width) self.columns_widget.contents[0] = (overlay, options) def new_conversation(self): @@ -344,7 +265,6 @@ class ConversationsDisplay(): self.app.directory.remember(entry) new_conversation = nomadnet.Conversation(source_hash_text, nomadnet.NomadNetworkApp.get_shared_instance(), initiator=True) - self.update_conversation_list() self.display_conversation(source_hash_text) @@ -354,15 +274,9 @@ class ConversationsDisplay(): RNS.log("Could not start conversation. The contained exception was: "+str(e), RNS.LOG_VERBOSE) if not dialog_pile.error_display: dialog_pile.error_display = True - options = dialog_pile.options(height_type=urwid.PACK) + options = dialog_pile.options(height_type="pack") dialog_pile.contents.append((urwid.Text(""), options)) - dialog_pile.contents.append(( - urwid.Text( - ("error_text", "Could not start conversation. Check your input."), - align=urwid.CENTER, - ), - options, - )) + dialog_pile.contents.append((urwid.Text(("error_text", "Could not start conversation. Check your input."), align="center"), options)) dialog_pile = urwid.Pile([ e_id, @@ -372,11 +286,7 @@ class ConversationsDisplay(): r_unknown, r_trusted, urwid.Text(""), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Create", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Back", on_press=dismiss_dialog)), - ]) + urwid.Columns([("weight", 0.45, urwid.Button("Create", on_press=confirmed)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("Back", on_press=dismiss_dialog))]) ]) dialog_pile.error_display = False @@ -384,172 +294,9 @@ class ConversationsDisplay(): dialog.delegate = self bottom = self.listbox - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) + overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=2, right=2) - # options = self.columns_widget.options(urwid.WEIGHT, ConversationsDisplay.list_width) - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) - self.columns_widget.contents[0] = (overlay, options) - - def ingest_lxm_uri(self): - self.dialog_open = True - lxm_uri = "" - e_uri = urwid.Edit(caption="URI : ",edit_text=lxm_uri) - - def dismiss_dialog(sender): - self.update_conversation_list() - self.dialog_open = False - - def confirmed(sender): - try: - local_delivery_signal = "local_delivery_occurred" - duplicate_signal = "duplicate_lxm" - lxm_uri = e_uri.get_edit_text() - - ingest_result = self.app.message_router.ingest_lxm_uri( - lxm_uri, - signal_local_delivery=local_delivery_signal, - signal_duplicate=duplicate_signal - ) - - if ingest_result == False: - raise ValueError("The URI contained no decodable messages") - - elif ingest_result == local_delivery_signal: - rdialog_pile = urwid.Pile([ - urwid.Text("Message was decoded, decrypted successfully, and added to your conversation list."), - urwid.Text(""), - urwid.Columns([ - (urwid.WEIGHT, 0.6, urwid.Text("")), - (urwid.WEIGHT, 0.4, urwid.Button("OK", on_press=dismiss_dialog)), - ]) - ]) - rdialog_pile.error_display = False - - rdialog = DialogLineBox(rdialog_pile, title="Ingest message URI") - rdialog.delegate = self - bottom = self.listbox - - roverlay = urwid.Overlay( - rdialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) - self.columns_widget.contents[0] = (roverlay, options) - - elif ingest_result == duplicate_signal: - rdialog_pile = urwid.Pile([ - urwid.Text("The decoded message has already been processed by the LXMF Router, and will not be ingested again."), - urwid.Text(""), - urwid.Columns([ - (urwid.WEIGHT, 0.6, urwid.Text("")), - (urwid.WEIGHT, 0.4, urwid.Button("OK", on_press=dismiss_dialog)), - ]) - ]) - rdialog_pile.error_display = False - - rdialog = DialogLineBox(rdialog_pile, title="Ingest message URI") - rdialog.delegate = self - bottom = self.listbox - - roverlay = urwid.Overlay( - rdialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) - self.columns_widget.contents[0] = (roverlay, options) - - else: - if self.app.enable_node: - propagation_text = "The decoded message was not addressed to this LXMF address, but has been added to the propagation node queues, and will be distributed on the propagation network." - else: - propagation_text = "The decoded message was not addressed to this LXMF address, and has been discarded." - - rdialog_pile = urwid.Pile([ - urwid.Text(propagation_text), - urwid.Text(""), - urwid.Columns([ - (urwid.WEIGHT, 0.6, urwid.Text("")), - (urwid.WEIGHT, 0.4, urwid.Button("OK", on_press=dismiss_dialog)), - ]) - ]) - rdialog_pile.error_display = False - - rdialog = DialogLineBox(rdialog_pile, title="Ingest message URI") - rdialog.delegate = self - bottom = self.listbox - - roverlay = urwid.Overlay( - rdialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) - self.columns_widget.contents[0] = (roverlay, options) - - except Exception as e: - RNS.log("Could not ingest LXM URI. The contained exception was: "+str(e), RNS.LOG_VERBOSE) - if not dialog_pile.error_display: - dialog_pile.error_display = True - options = dialog_pile.options(height_type=urwid.PACK) - dialog_pile.contents.append((urwid.Text(""), options)) - dialog_pile.contents.append((urwid.Text(("error_text", "Could ingest LXM from URI data. Check your input."), align=urwid.CENTER), options)) - - dialog_pile = urwid.Pile([ - e_uri, - urwid.Text(""), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Ingest", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Back", on_press=dismiss_dialog)), - ]) - ]) - dialog_pile.error_display = False - - dialog = DialogLineBox(dialog_pile, title="Ingest message URI") - dialog.delegate = self - bottom = self.listbox - - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) + options = self.columns_widget.options("weight", ConversationsDisplay.list_width) self.columns_widget.contents[0] = (overlay, options) def delete_conversation(self, source_hash): @@ -557,188 +304,26 @@ class ConversationsDisplay(): conversation = ConversationsDisplay.cached_conversation_widgets[source_hash] self.close_conversation(conversation) - def toggle_fullscreen(self): - if ConversationsDisplay.given_list_width != 0: - self.saved_list_width = ConversationsDisplay.given_list_width - ConversationsDisplay.given_list_width = 0 - else: - ConversationsDisplay.given_list_width = self.saved_list_width - - self.update_conversation_list() - - def sync_conversations(self): - g = self.app.ui.glyphs - self.dialog_open = True - - def dismiss_dialog(sender): - self.dialog_open = False - self.sync_dialog = None - self.update_conversation_list() - if self.app.message_router.propagation_transfer_state >= LXMF.LXMRouter.PR_COMPLETE: - self.app.cancel_lxmf_sync() - - max_messages_group = [] - r_mall = urwid.RadioButton(max_messages_group, "Download all", state=True) - r_mlim = urwid.RadioButton(max_messages_group, "Limit to", state=False) - ie_lim = urwid.IntEdit("", 5) - rbs = urwid.GridFlow([r_mlim, ie_lim], 12, 1, 0, align=urwid.LEFT) - - def sync_now(sender): - limit = None - if r_mlim.get_state(): - limit = ie_lim.value() - self.app.request_lxmf_sync(limit) - self.update_sync_dialog() - - def cancel_sync(sender): - self.app.cancel_lxmf_sync() - self.update_sync_dialog() - - cancel_button = urwid.Button("Close", on_press=dismiss_dialog) - sync_progress = SyncProgressBar("progress_empty" , "progress_full", current=self.app.get_sync_progress(), done=1.0, satt=None) - - real_sync_button = urwid.Button("Sync Now", on_press=sync_now) - hidden_sync_button = urwid.Button("Cancel Sync", on_press=cancel_sync) - - if self.app.get_sync_status() == "Idle" or self.app.message_router.propagation_transfer_state >= LXMF.LXMRouter.PR_COMPLETE: - sync_button = real_sync_button - else: - sync_button = hidden_sync_button - - button_columns = urwid.Columns([ - (urwid.WEIGHT, 0.45, sync_button), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, cancel_button), - ]) - real_sync_button.bc = button_columns - - pn_ident = None - if self.app.get_default_propagation_node() != None: - pn_hash = self.app.get_default_propagation_node() - pn_ident = RNS.Identity.recall(pn_hash) - - if pn_ident == None: - RNS.log("Propagation node identity is unknown, requesting from network...", RNS.LOG_DEBUG) - RNS.Transport.request_path(pn_hash) - - if pn_ident != None: - node_hash = RNS.Destination.hash_from_name_and_identity("nomadnetwork.node", pn_ident) - pn_entry = self.app.directory.find(node_hash) - pn_display_str = " " - if pn_entry != None: - pn_display_str += " "+str(pn_entry.display_name) - else: - pn_display_str += " "+RNS.prettyhexrep(pn_hash) - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text(""+g["node"]+pn_display_str, align=urwid.CENTER), - urwid.Divider(g["divider1"]), - sync_progress, - urwid.Divider(g["divider1"]), - r_mall, - rbs, - urwid.Text(""), - button_columns - ]), title="Message Sync" - ) - else: - button_columns = urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Text("" )), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, cancel_button), - ]) - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text(""), - urwid.Text("No trusted nodes found, cannot sync!\n", align=urwid.CENTER), - urwid.Text( - "To synchronise messages from the network, " - "one or more nodes must be marked as trusted in the Known Nodes list, " - "or a node must manually be selected as the default propagation node. " - "Nomad Network will then automatically sync from the nearest trusted node, " - "or the manually selected one.", - align=urwid.LEFT, - ), - urwid.Text(""), - button_columns - ]), title="Message Sync" - ) - - dialog.delegate = self - dialog.sync_progress = sync_progress - dialog.cancel_button = cancel_button - dialog.real_sync_button = real_sync_button - dialog.hidden_sync_button = hidden_sync_button - dialog.bc = button_columns - - self.sync_dialog = dialog - bottom = self.listbox - - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - # options = self.columns_widget.options(urwid.WEIGHT, ConversationsDisplay.list_width) - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) - self.columns_widget.contents[0] = (overlay, options) - - def update_sync_dialog(self, loop = None, sender = None): - if self.dialog_open and self.sync_dialog != None: - self.sync_dialog.sync_progress.set_completion(self.app.get_sync_progress()) - - if self.app.get_sync_status() == "Idle" or self.app.message_router.propagation_transfer_state >= LXMF.LXMRouter.PR_COMPLETE: - self.sync_dialog.bc.contents[0] = (self.sync_dialog.real_sync_button, self.sync_dialog.bc.options(urwid.WEIGHT, 0.45)) - else: - self.sync_dialog.bc.contents[0] = (self.sync_dialog.hidden_sync_button, self.sync_dialog.bc.options(urwid.WEIGHT, 0.45)) - - self.app.ui.loop.set_alarm_in(0.2, self.update_sync_dialog) - - def conversation_list_selection(self, arg1, arg2): pass def update_conversation_list(self): ilb_position = self.ilb.get_selected_position() self.update_listbox() - # options = self.columns_widget.options(urwid.WEIGHT, ConversationsDisplay.list_width) - options = self.columns_widget.options(urwid.GIVEN, ConversationsDisplay.given_list_width) - if not (self.dialog_open and self.sync_dialog != None): - self.columns_widget.contents[0] = (self.listbox, options) - else: - bottom = self.listbox - overlay = urwid.Overlay( - self.sync_dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - self.columns_widget.contents[0] = (overlay, options) - + options = self.columns_widget.options("weight", ConversationsDisplay.list_width) + self.columns_widget.contents[0] = (self.listbox, options) if ilb_position != None: self.ilb.select_item(ilb_position) nomadnet.NomadNetworkApp.get_shared_instance().ui.loop.draw_screen() - if self.app.ui.main_display.sub_displays.active_display == self.app.ui.main_display.sub_displays.conversations_display: - if self.currently_displayed_conversation != None: - if self.app.conversation_is_unread(self.currently_displayed_conversation): - self.app.mark_conversation_read(self.currently_displayed_conversation) - try: - if os.path.isfile(self.app.conversationpath + "/" + self.currently_displayed_conversation + "/unread"): - os.unlink(self.app.conversationpath + "/" + self.currently_displayed_conversation + "/unread") - except Exception as e: - raise e + if self.currently_displayed_conversation != None: + if self.app.conversation_is_unread(self.currently_displayed_conversation): + self.app.mark_conversation_read(self.currently_displayed_conversation) + try: + if os.path.isfile(self.app.conversationpath + "/" + self.currently_displayed_conversation + "/unread"): + os.unlink(self.app.conversationpath + "/" + self.currently_displayed_conversation + "/unread") + except Exception as e: + raise e @@ -749,17 +334,16 @@ class ConversationsDisplay(): self.app.mark_conversation_read(self.currently_displayed_conversation) self.currently_displayed_conversation = source_hash - # options = self.widget.options(urwid.WEIGHT, 1-ConversationsDisplay.list_width) - options = self.widget.options(urwid.WEIGHT, 1) + options = self.widget.options("weight", 1-ConversationsDisplay.list_width) self.widget.contents[1] = (self.make_conversation_widget(source_hash), options) if source_hash == None: - self.widget.focus_position = 0 + self.widget.set_focus_column(0) else: if self.app.conversation_is_unread(source_hash): self.app.mark_conversation_read(source_hash) self.update_conversation_list() - self.widget.focus_position = 1 + self.widget.set_focus_column(1) conversation_position = None index = 0 for widget in self.list_widgets: @@ -838,8 +422,7 @@ class ConversationsDisplay(): if trust_level != DirectoryEntry.TRUSTED: display_text += " <"+source_hash+">" - - if trust_level != DirectoryEntry.UNTRUSTED: + else: if unread: if source_hash != self.currently_displayed_conversation: display_text += " "+g["unread"] @@ -891,17 +474,15 @@ class MessageEdit(urwid.Edit): def keypress(self, size, key): if key == "ctrl d": self.delegate.send_message() - elif key == "ctrl p": - self.delegate.paper_message() elif key == "ctrl k": self.delegate.clear_editor() elif key == "up": y = self.get_cursor_coords(size)[1] if y == 0: if self.delegate.full_editor_active and self.name == "title_editor": - self.delegate.frame.focus_position = "body" + self.delegate.frame.set_focus("body") elif not self.delegate.full_editor_active and self.name == "content_editor": - self.delegate.frame.focus_position = "body" + self.delegate.frame.set_focus("body") else: return super(MessageEdit, self).keypress(size, key) else: @@ -912,11 +493,11 @@ class MessageEdit(urwid.Edit): class ConversationFrame(urwid.Frame): def keypress(self, size, key): - if self.focus_position == "body": + if self.get_focus() == "body": if key == "up" and self.delegate.messagelist.top_is_visible: - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" + nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") elif key == "down" and self.delegate.messagelist.bottom_is_visible: - self.focus_position = "footer" + self.set_focus("footer") else: return super(ConversationFrame, self).keypress(size, key) elif key == "ctrl k": @@ -931,7 +512,7 @@ class ConversationWidget(urwid.WidgetWrap): if source_hash == None: self.frame = None display_widget = urwid.LineBox(urwid.Filler(urwid.Text("\n No conversation selected"), "top")) - super().__init__(display_widget) + urwid.WidgetWrap.__init__(self, display_widget) else: if source_hash in ConversationsDisplay.cached_conversation_widgets: return ConversationsDisplay.cached_conversation_widgets[source_hash] @@ -939,7 +520,6 @@ class ConversationWidget(urwid.WidgetWrap): self.source_hash = source_hash self.conversation = nomadnet.Conversation(source_hash, nomadnet.NomadNetworkApp.get_shared_instance()) self.message_widgets = [] - self.sort_by_timestamp = False self.updating_message_widgets = False self.update_message_widgets() @@ -958,11 +538,7 @@ class ConversationWidget(urwid.WidgetWrap): header = None if self.conversation.trust_level == DirectoryEntry.UNTRUSTED: - header = urwid.AttrMap( - urwid.Padding( - urwid.Text(g["warning"]+" Warning: Conversation with untrusted peer "+g["warning"], align=urwid.CENTER)), - "msg_warning_untrusted", - ) + header = urwid.AttrMap(urwid.Padding(urwid.Text(g["warning"]+" Warning: Conversation with untrusted peer "+g["warning"], align="center")), "msg_warning_untrusted") self.minimal_editor = urwid.AttrMap(msg_editor, "msg_editor") self.minimal_editor.name = "minimal_editor" @@ -999,7 +575,7 @@ class ConversationWidget(urwid.WidgetWrap): self.frame ) - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def clear_history_dialog(self): def dismiss_dialog(sender): @@ -1014,30 +590,17 @@ class ConversationWidget(urwid.WidgetWrap): dialog = DialogLineBox( urwid.Pile([ - urwid.Text("Clear conversation history\n", align=urwid.CENTER), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Yes", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("No", on_press=dismiss_dialog)), - ]) + urwid.Text("Clear conversation history\n", align="center"), + urwid.Columns([("weight", 0.45, urwid.Button("Yes", on_press=confirmed)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("No", on_press=dismiss_dialog))]) ]), title="?" ) dialog.delegate = self bottom = self.messagelist - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=34, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) + overlay = urwid.Overlay(dialog, bottom, align="center", width=34, valign="middle", height="pack", left=2, right=2) self.frame.contents["body"] = (overlay, self.frame.options()) - self.frame.focus_position = "body" + self.frame.set_focus("body") def toggle_editor(self): if self.full_editor_active: @@ -1054,17 +617,7 @@ class ConversationWidget(urwid.WidgetWrap): if allowed: self.frame.contents["footer"] = (self.minimal_editor, None) else: - warning = urwid.AttrMap( - urwid.Padding(urwid.Text( - "\n"+g["info"]+"\n\nYou cannot currently message this peer, since its identity keys are not known. " - "The keys have been requested from the network and should arrive shortly, if available. " - "Close this conversation and reopen it to try again.\n\n" - "To query the network manually, select this conversation in the conversation list, " - "press Ctrl-E, and use the query button.\n", - align=urwid.CENTER, - )), - "msg_header_caution", - ) + warning = urwid.AttrMap(urwid.Padding(urwid.Text(g["info"]+" You cannot currently communicate with this peer, since it's identity keys are not known", align="center")), "msg_header_caution") self.frame.contents["footer"] = (warning, None) def toggle_focus_area(self): @@ -1075,27 +628,22 @@ class ConversationWidget(urwid.WidgetWrap): pass if name == "messagelist": - self.frame.focus_position = "footer" + self.frame.set_focus("footer") elif name == "minimal_editor" or name == "full_editor": - self.frame.focus_position = "body" + self.frame.set_focus("body") def keypress(self, size, key): if key == "tab": self.toggle_focus_area() elif key == "ctrl w": self.close() - elif key == "ctrl u": + elif key == "ctrl p": self.conversation.purge_failed() self.conversation_changed(None) elif key == "ctrl t": self.toggle_editor() elif key == "ctrl x": self.clear_history_dialog() - elif key == "ctrl g": - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.sub_displays.conversations_display.toggle_fullscreen() - elif key == "ctrl o": - self.sort_by_timestamp ^= True - self.conversation_changed(None) else: return super(ConversationWidget, self).keypress(size, key) @@ -1116,10 +664,7 @@ class ConversationWidget(urwid.WidgetWrap): message_widget = LXMessageWidget(message) self.message_widgets.append(message_widget) - if self.sort_by_timestamp: - self.message_widgets.sort(key=lambda m: m.timestamp, reverse=False) - else: - self.message_widgets.sort(key=lambda m: m.sort_timestamp, reverse=False) + self.message_widgets.sort(key=lambda m: m.timestamp, reverse=False) from nomadnet.vendor.additional_urwid_widgets import IndicativeListBox self.messagelist = IndicativeListBox(self.message_widgets, position = len(self.message_widgets)-1) @@ -1144,127 +689,6 @@ class ConversationWidget(urwid.WidgetWrap): else: pass - def paper_message_saved(self, path): - g = self.app.ui.glyphs - def dismiss_dialog(sender): - self.dialog_open = False - self.conversation_changed(None) - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text("The paper message was saved to:\n\n"+str(path)+"\n", align=urwid.CENTER), - urwid.Columns([ - (urwid.WEIGHT, 0.6, urwid.Text("")), - (urwid.WEIGHT, 0.4, urwid.Button("OK", on_press=dismiss_dialog)), - ]) - ]), title=g["papermsg"].replace(" ", "") - ) - dialog.delegate = self - bottom = self.messagelist - - overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=60, valign=urwid.MIDDLE, height=urwid.PACK, left=2, right=2) - - self.frame.contents["body"] = (overlay, self.frame.options()) - self.frame.focus_position = "body" - - def print_paper_message_qr(self): - content = self.content_editor.get_edit_text() - title = self.title_editor.get_edit_text() - if not content == "": - if self.conversation.paper_output(content, title): - self.clear_editor() - else: - self.paper_message_failed() - - def save_paper_message_qr(self): - content = self.content_editor.get_edit_text() - title = self.title_editor.get_edit_text() - if not content == "": - output_result = self.conversation.paper_output(content, title, mode="save_qr") - if output_result != False: - self.clear_editor() - self.paper_message_saved(output_result) - else: - self.paper_message_failed() - - def save_paper_message_uri(self): - content = self.content_editor.get_edit_text() - title = self.title_editor.get_edit_text() - if not content == "": - output_result = self.conversation.paper_output(content, title, mode="save_uri") - if output_result != False: - self.clear_editor() - self.paper_message_saved(output_result) - else: - self.paper_message_failed() - - def paper_message(self): - def dismiss_dialog(sender): - self.dialog_open = False - self.conversation_changed(None) - - def print_qr(sender): - dismiss_dialog(self) - self.print_paper_message_qr() - - def save_qr(sender): - dismiss_dialog(self) - self.save_paper_message_qr() - - def save_uri(sender): - dismiss_dialog(self) - self.save_paper_message_uri() - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text( - "Select the desired paper message output method.\nSaved files will be written to:\n\n"+str(self.app.downloads_path)+"\n", - align=urwid.CENTER, - ), - urwid.Columns([ - (urwid.WEIGHT, 0.5, urwid.Button("Print QR", on_press=print_qr)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.5, urwid.Button("Save QR", on_press=save_qr)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.5, urwid.Button("Save URI", on_press=save_uri)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.5, urwid.Button("Cancel", on_press=dismiss_dialog)) - ]) - ]), title="Create Paper Message" - ) - dialog.delegate = self - bottom = self.messagelist - - overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=60, valign=urwid.MIDDLE, height=urwid.PACK, left=2, right=2) - - self.frame.contents["body"] = (overlay, self.frame.options()) - self.frame.focus_position = "body" - - def paper_message_failed(self): - def dismiss_dialog(sender): - self.dialog_open = False - self.conversation_changed(None) - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text( - "Could not output paper message,\ncheck your settings. See the log\nfile for any error messages.\n", - align=urwid.CENTER, - ), - urwid.Columns([ - (urwid.WEIGHT, 0.6, urwid.Text("")), - (urwid.WEIGHT, 0.4, urwid.Button("OK", on_press=dismiss_dialog)), - ]) - ]), title="!" - ) - dialog.delegate = self - bottom = self.messagelist - - overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=34, valign=urwid.MIDDLE, height=urwid.PACK, left=2, right=2) - - self.frame.contents["body"] = (overlay, self.frame.options()) - self.frame.focus_position = "body" - def close(self): self.delegate.close_conversation(self) @@ -1274,7 +698,6 @@ class LXMessageWidget(urwid.WidgetWrap): app = nomadnet.NomadNetworkApp.get_shared_instance() g = app.ui.glyphs self.timestamp = message.get_timestamp() - self.sort_timestamp = message.sort_timestamp time_format = app.time_format message_time = datetime.fromtimestamp(self.timestamp) encryption_string = "" @@ -1292,15 +715,6 @@ class LXMessageWidget(urwid.WidgetWrap): elif message.lxm.state == LXMF.LXMessage.FAILED: header_style = "msg_header_failed" title_string = g["cross"]+" "+title_string - elif message.lxm.method == LXMF.LXMessage.PROPAGATED and message.lxm.state == LXMF.LXMessage.SENT: - header_style = "msg_header_propagated" - title_string = g["sent"]+" "+title_string - elif message.lxm.method == LXMF.LXMessage.PAPER and message.lxm.state == LXMF.LXMessage.PAPER: - header_style = "msg_header_propagated" - title_string = g["papermsg"]+" "+title_string - elif message.lxm.state == LXMF.LXMessage.SENT: - header_style = "msg_header_sent" - title_string = g["sent"]+" "+title_string else: header_style = "msg_header_sent" title_string = g["arrow_r"]+" "+title_string @@ -1323,13 +737,4 @@ class LXMessageWidget(urwid.WidgetWrap): urwid.Text("") ]) - super().__init__(display_widget) - -class SyncProgressBar(urwid.ProgressBar): - def get_text(self): - status = nomadnet.NomadNetworkApp.get_shared_instance().get_sync_status() - show_percent = nomadnet.NomadNetworkApp.get_shared_instance().sync_status_show_percent() - if show_percent: - return status+" "+super().get_text() - else: - return status + urwid.WidgetWrap.__init__(self, display_widget) \ No newline at end of file diff --git a/nomadnet/ui/textui/Directory.py b/nomadnet/ui/textui/Directory.py index 3ff090b..aeec463 100644 --- a/nomadnet/ui/textui/Directory.py +++ b/nomadnet/ui/textui/Directory.py @@ -15,7 +15,7 @@ class DirectoryDisplay(): ]) self.shortcuts_display = DirectoryDisplayShortcuts(self.app) - self.widget = urwid.Filler(pile, urwid.TOP) + self.widget = urwid.Filler(pile, 'top') def shortcuts(self): return self.shortcuts_display \ No newline at end of file diff --git a/nomadnet/ui/textui/Extras.py b/nomadnet/ui/textui/Extras.py index 54b4fec..ce62430 100644 --- a/nomadnet/ui/textui/Extras.py +++ b/nomadnet/ui/textui/Extras.py @@ -5,15 +5,57 @@ class IntroDisplay(): font = urwid.font.HalfBlock5x4Font() - big_text = urwid.BigText(("intro_title", self.app.config["textui"]["intro_text"]), font) - big_text = urwid.Padding(big_text, align=urwid.CENTER, width=urwid.CLIP) + big_text = urwid.BigText(("intro_title", "Nomad Network"), font) + big_text = urwid.Padding(big_text, align="center", width="clip") intro = urwid.Pile([ big_text, - urwid.Text(("Version %s" % (str(self.app.version))), align=urwid.CENTER), + urwid.Text(("Version %s" % (str(self.app.version))), align="center"), urwid.Divider(), - urwid.Text(("-= Starting =- "), align=urwid.CENTER), + urwid.Text(("-= Starting =- "), align="center"), ]) self.widget = urwid.Filler(intro) + +class DemoDisplay(): + def __init__(self, ui, app): + import urwid + + def color_mono(btn): + ui.set_colormode(nomadnet.ui.COLORMODE_MONO) + + def color_16(btn): + ui.set_colormode(nomadnet.ui.COLORMODE_16) + + def color_88(btn): + ui.set_colormode(nomadnet.ui.COLORMODE_88) + + def color_8bit(btn): + ui.set_colormode(nomadnet.ui.COLORMODE_256) + + def color_true(btn): + ui.set_colormode(nomadnet.ui.COLORMODE_TRUE) + + # pile = urwid.Pile([ + # urwid.Text(("heading", "This is a heading")), + # urwid.Text(("body_text", "Hello World \U0001F332")), + # urwid.Button(("buttons", "Monochrome"), color_mono), + # urwid.Button(("buttons", "16 color"), color_16), + # urwid.Button(("buttons", "88 color"), color_88), + # urwid.Button(("buttons", "256 color"), color_8bit), + # urwid.Button(("buttons", "True color"), color_true), + # ]) + + gf = urwid.GridFlow([ + urwid.Text(("heading", "This is a heading")), + urwid.Text(("body_text", "Hello World \U0001F332")), + urwid.Button(("buttons", "Monochrome"), color_mono), + urwid.Button(("buttons", "16 color"), color_16), + urwid.Button(("buttons", "88 color"), color_88), + urwid.Button(("buttons", "256 color"), color_8bit), + urwid.Button(("buttons", "True color"), color_true), + ], cell_width=20, h_sep=0, v_sep=0, align="left") + + self.widget = urwid.Filler(urwid.Padding((urwid.Text("Test"),urwid.Text("Test 2"))), 'top') + #self.widget = urwid.Filler(pile, 'top') \ No newline at end of file diff --git a/nomadnet/ui/textui/Guide.py b/nomadnet/ui/textui/Guide.py index 352e71f..627d03e 100644 --- a/nomadnet/ui/textui/Guide.py +++ b/nomadnet/ui/textui/Guide.py @@ -10,7 +10,7 @@ class GuideDisplayShortcuts(): self.app = app g = app.ui.glyphs - self.widget = urwid.AttrMap(urwid.Padding(urwid.Text(""), align=urwid.LEFT), "shortcutbar") + self.widget = urwid.AttrMap(urwid.Padding(urwid.Text(""), align="left"), "shortcutbar") class ListEntry(urwid.Text): _selectable = True @@ -75,7 +75,7 @@ class GuideEntry(urwid.WidgetWrap): style = "topic_list_normal" focus_style = "list_focus" self.display_widget = urwid.AttrMap(widget, style, focus_style) - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def display_topic(self, event, topic): markup = TOPICS[topic] @@ -108,14 +108,9 @@ class TopicList(urwid.WidgetWrap): self.topic_list = [ GuideEntry(self.app, self, guide_display, "Introduction"), - GuideEntry(self.app, self, guide_display, "Concepts & Terminology"), - GuideEntry(self.app, self, guide_display, "Interfaces"), GuideEntry(self.app, self, guide_display, "Hosting a Node"), - GuideEntry(self.app, self, guide_display, "Configuration Options"), - GuideEntry(self.app, self, guide_display, "Keyboard Shortcuts"), GuideEntry(self.app, self, guide_display, "Markup"), self.first_run_entry, - GuideEntry(self.app, self, guide_display, "Network Configuration"), GuideEntry(self.app, self, guide_display, "Display Test"), GuideEntry(self.app, self, guide_display, "Credits & Licenses"), ] @@ -126,12 +121,12 @@ class TopicList(urwid.WidgetWrap): highlight_offFocus="list_off_focus" ) - super().__init__(urwid.LineBox(self.ilb, title="Topics")) + urwid.WidgetWrap.__init__(self, urwid.LineBox(self.ilb, title="Topics")) def keypress(self, size, key): if key == "up" and (self.ilb.first_item_is_selected()): - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" + nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") return super(TopicList, self).keypress(size, key) @@ -142,16 +137,16 @@ class GuideDisplay(): self.app = app g = self.app.ui.glyphs - topic_text = urwid.Text("\n No topic selected", align=urwid.LEFT) + topic_text = urwid.Text("\n No topic selected", align="left") self.left_area = TopicList(self.app, self) - self.right_area = urwid.LineBox(urwid.Filler(topic_text, urwid.TOP)) + self.right_area = urwid.LineBox(urwid.Filler(topic_text, "top")) self.columns = urwid.Columns( [ - (urwid.WEIGHT, GuideDisplay.list_width, self.left_area), - (urwid.WEIGHT, 1-GuideDisplay.list_width, self.right_area) + ("weight", GuideDisplay.list_width, self.left_area), + ("weight", 1-GuideDisplay.list_width, self.right_area) ], dividechars=0, focus_column=0 ) @@ -164,8 +159,9 @@ class GuideDisplay(): entry.display_topic(entry.display_topic, entry.topic_name) def set_content_widgets(self, new_content): - options = self.columns.options(width_type=urwid.WEIGHT, width_amount=1-GuideDisplay.list_width, box_widget=True) + options = self.columns.options(width_type="weight", width_amount=1-GuideDisplay.list_width) pile = urwid.Pile(new_content) + #content = urwid.LineBox(urwid.Filler(pile, "top")) content = urwid.LineBox(urwid.AttrMap(ScrollBar(Scrollable(pile), thumb_char="\u2503", trough_char=" "), "scrollbar")) self.columns.contents[1] = (content, options) @@ -191,58 +187,9 @@ Nomad Network is build on LXMF and Reticulum, which together provides the crypto Nomad Network does not need any connections to the public internet to work. In fact, it doesn't even need an IP or Ethernet network. You can use it entirely over packet radio, LoRa or even serial lines. But if you wish, you can bridge islanded Reticulum networks over the Internet or private ethernet networks, or you can build networks running completely over the Internet. The choice is yours. -The current version of the program should be considered a beta release. The program works well, but there will most probably be bugs and possibly sub-optimal performance in some scenarios. On the other hand, this is the best time to have an influence on the direction of the development of Nomad Network. To do so, join the discussion on the Nomad Network project on GitHub. +The current version of the program should be considered an alpha release. The program works well, but there will most probably be bugs and possibly sub-optimal performance in some scenarios. On the other hand, this is the best time to have an influence on the direction of the development of Nomad Network. To do so, join the discussion on the Nomad Network project on GitHub. -''' - -TOPIC_SHORTCUTS = '''>Keyboard Shortcuts - -The different sections of the program has a number of keyboard shortcuts mapped, that makes operating and navigating the program easier. The following lists details all mapped shortcuts. - ->>`!Conversations Window`! ->>>Conversation List - - Ctrl-N Start a new conversation - - Ctrl-E Display and edit selected peer info - - Ctrl-X Delete conversation - - Ctrl-R Open LXMF syncronisation dialog - ->>>Conversation Display - - Ctrl-D Send message - - Ctrl-K Clear input fields - - Ctrl-T Toggle message title field - - Ctrl-O Toggle sort mode - - Ctrl-P Purge failed messages - - Ctrl-X Clear conversation history - - Ctrl-G Toggle fullscreen conversation - - Ctrl-W Close conversation - ->>`!Network Window`! ->>>Browser - - Ctrl-D Back - - Ctrl-F Forward - - Ctrl-R Reload page - - Ctrl-U Open URL entry dialog - - Ctrl-S Save connected node - - Ctrl-G Toggle fullscreen browser window - - Ctrl-W Disconnect from node - ->>>Announce Stream - - Ctrl-L Switch to Known Nodes list - - Ctrl-X Delete selected announce - - Ctrl-P Display peered LXMF Propagation Nodes - ->>>Known Nodes - - Ctrl-L Switch to Announce Stream - - Ctrl-X Delete selected node entry - - Ctrl-P Display peered LXMF Propagation Nodes - ->>>Peered LXMF Propagation Nodes - - Ctrl-L Switch to Announce Stream or Known Nodes - - Ctrl-X Break peering with selected node entry - - Ctrl-R Request immediate delivery sync of unhandled LXMs -''' - -TOPIC_CONCEPTS = '''>Concepts and Terminology +>Concepts and Terminology The following section will briefly introduce various concepts and terms used in the program. @@ -250,20 +197,9 @@ The following section will briefly introduce various concepts and terms used in A `*peer`* refers to another Nomad Network client, which will generally be operated by another person. But since Nomad Network is a general LXMF client, it could also be any other LXMF client, program, automated system or machine that can communicate over LXMF. -All peers (and nodes) are identified by their `*address`* (which is, technically speaking, a Reticulum destination hash). An address consist of 32 hexadecimal characters (16 bytes), and looks like this: - -`c -`l - -Anyone can choose whatever display name they want, but addresses are always unique, and generated from the unique cryptographic keys of the peer. This is an important point to understand. Since there is not anyone controlling naming or address spaces in Nomad Network, you can easily come across another user with the same display name as you. - -Your addresses will always be unique though, and you must always verify that the address you are communicating with is matching the address of the peer you expect to be in the other end. - -To make this easier, Nomad Network allows you to mark peers and nodes as either `*trusted`*, `*unknown`* or `*untrusted`*. In this way, you can mark the peers and nodes that you know to be legitimate, and easily spot peers with similar names as unrelated. - >>Announces -An `*announce`* can be sent by any peer or node on the network, which will notify other peers of its existence, and contains the cryptographic keys that allows other peers to communicate with it. +An `*announce`* can be sent by any peer on the network, which will notify other peers of its existence, and contains the cryptographic keys that allows other peers to communicate with it. In the `![ Network ]`! section of the program, you can monitor announces on the network, initiate conversations with announced peers, and announce your own peer on the network. You can also connect to nodes on the network and browse information shared by them. @@ -271,95 +207,35 @@ In the `![ Network ]`! section of the program, you can monitor announces on the Nomad Network uses the term `*conversation`* to signify both direct peer-to-peer messaging threads, and also discussion threads with an arbitrary number of participants that might change over time. -Both things like discussion forums and chat threads can be encapsulated as conversations in Nomad Network. The user interface will indicate the different characteristics a conversation can take, and also what form of transport encryption was used for messages within. +Both things like discussion forums and chat threads can be encapsulated as conversations in Nomad Network. The user interface will indicate the different characteristics a conversation can take, and also what form of transport encryption messages within used. -In the `![ Conversations ]`! part of the program you can view and interact with all currently active conversations. You can also edit nickname and trust settings for peers belonging to these conversations here. To edit settings for a peer, select it in the conversation list, and press `!Ctrl-E`!. - -By default, Nomad Network will attempt to deliver messages to a peer directly. This happens by first establishing an encrypted link directly to the peer, and then delivering the message over it. - -If the desired peer is not available because it has disconnected from the network, this method will obviously fail. In this case, Nomad Network will attempt to deliver the message to a node, which will store and forward it over the network, for later retrieval by the destination peer. The message is encrypted before being transmitted to the network, and is only readable by the intended recipient. - -For propagated delivery to work, one or more nodes must be available on the network. If one or more trusted nodes are available, Nomad Network will automatically select the most suitable node to send the message via, but you can also manually specify what node to use. - -To select a node manually, go to the `![ Network ]`! part of the program, choose the desired node in the `*Known Nodes`* list, and select the `!< Info >`! button. In the `!Node Info`! dialog, you can specify the selected node as the default propagation node. - -By default, Nomad Network will check in with propagation nodes, and download any available messages every 6 hours. You can change this interval, or disable automatic syncronisation completely, by editing the configuration file. - -You can always initiate a sync manually, by pressing `!Ctrl-R`! in the `![ Conversations ]`! part of the program, which will open the syncronisation window. +In the `![ Conversations ]`! part of the program you can view and interact with all currently active conversations. You can also edit nickname and trust settings for peers here. >>Node A Nomad Network `*node`* is an instance of the Nomad Network program that has been configured to host information for other peers and help propagate messages and information on the network. -Nodes can host pages (similar to webpages) written in a markup-language called `*micron`*, as well as make files and other resources available for download for peers on the network. Nodes also form a distributed message store for offline users, and allows messages to be exchanged between peers that are not online at the same time. +Nodes can host pages (similar to webpages) written in a markup-language called `*micron`*, as well as make files and other resources available for download for peers on the network. Nodes are also integral in allowing forum/discussion threads to exist and propagate on the network. -If no nodes exist on a network, all peers will still be able to communicate directly peer-to-peer, but both endpoints of a conversation will need to be available at the same time to converse. When nodes exist on the network, messages will be held and syncronised between nodes for deferred delivery if the destination peer is unavailable. Nodes will automatically discover and peer with each other, and handle syncronisation of message stores. - -To learn how to host your own node, read the `*Hosting a Node`* section of this guide. +If no nodes exist on a network, all peers will still be able to communicate directly peer-to-peer, but both endpoints of a conversation will need to be online at the same time to converse. When nodes exist on the network, messages will be held and syncronised between nodes for deferred delivery if the destination peer is unavailable. ''' TOPIC_HOSTING = '''>Hosting a Node -To host a node on the network, you must enable it in the configuration file, by setting the `*enable_node`* directive to `*yes`*. You should also configure the other node-related parameters such as the node name and announce interval settings. Once node hosting has been enabled in the configuration, Nomad Network will start hosting your node as soon as the program is launched, and other peers on the network will be able to connect and interact with content on your node. +To host a node on the network, you must enable it in the configuration file, by setting `*enable_node`* directive to `*yes`*. You should also configure the other node-related parameters such as the node name and announce interval settings. Once node hosting has been enabled in the configuration, Nomad Network will start hosting your node as soon as the program is lauched, and other peers on the network will be able to connect and interact with content on your node. By default, no content is defined, apart from a short placeholder home page. To learn how to add your own content, read on. ->>Distributed Message Store - -All nodes on the network will automatically participate in a distributed message store that allows users to exchange messages, even when they are not connected to the network at the same time. - -When Nomad Network is configured to host a node, by default it also configures itself as an LXMF Propagation Node, and automatically discovers and peers with other propagation nodes on the network. This process is completely automatic and requires no configuration from the node operator. - -`!However`!, if there is already an abundance of Propagation Nodes on the network, or the operator simply wishes to host a pageserving-only node, Propagation Node hosting can be disabled in the configuration file. - -To view LXMF Propagation nodes that are currently peered with your node, go to the `![ Network ]`! part of the program and press `!Ctrl-P`!. In the list of peered Propagation Nodes, it is possible to: - - - Immediately break peering with a node by pressing `!Ctrl-X`! - - Request an immediate delivery sync of all unhandled messages for a node, by pressing `!Ctrl-R`! - -The distributed message store is resilient to intermittency, and will remain functional as long as at least one node remains on the network. Nodes that were offline for a time will automatically be synced up to date when they regain connectivity. - >>Pages -Nomad Network nodes can host pages similar to web pages, that other peers can read and interact with. Pages are written in a compact markup language called `*micron`*. To learn how to write formatted pages with micron, see the `*Markup`* section of this guide (which is, itself, written in micron). Pages can be linked together with hyperlinks, that can also link to pages (or other resources) on other nodes. +Nomad Network nodes can host pages similar to web pages, that other peers can read and interact with. Pages are written in a compact markup language called `*micron`*. To learn how to write formatted pages with micron, see the `*Markup`* section of this guide (which is, itself, written in micron). Pages can be linked arbitrarily with hyperlinks, that can also link to pages (or other resources) on other nodes. To add pages to your node, place micron files in the `*pages`* directory of your Nomad Network programs `*storage`* directory. By default, the path to this will be `!~/.nomadnetwork/storage/pages`!. You should probably create the file `!index.mu`! first, as this is the page that will get served by default to a connecting peer. You can control how long a peer will cache your pages by including the cache header in a page. To do so, the first line of your page must start with `!#!c=X`!, where `!X`! is the cache time in seconds. To tell the peer to always load the page from your node, and never cache it, set the cache time to zero. You should only do this if there is a real need, for example if your page displays dynamic content that `*must`* be updated at every page view. The default caching time is 12 hours. In most cases, you should not need to include the cache control header in your pages. ->> Dynamic Pages - -You can use a preprocessor such as PHP, bash, Python (or whatever you prefer) to generate dynamic pages and fully interactive applications running over Nomad Network. To do so, just set executable permissions on the relevant page file, and be sure to include the interpreter at the beginning of the file, for example `!#!/usr/bin/python3`!. - -Data from fields and link variables will be passed to these scipts or programs as environment variables, and can simply be read by any method for accessing such. - -In the `!examples`! directory, you can find various small examples for the use of this feature. The currently included examples are: - - - A messageboard that receives messages over LXMF, contributed by trippcheng - - A simple demonstration on how to create fields and read entered data in node-side scripts - -By default, you can find the examples in `!~/.nomadnetwork/examples`!. If you build something neat, that you feel would fit here, you are more than welcome to contribute it. - ->>Authenticating Users - -Sometimes, you don't want everyone to be able to view certain pages or execute certain scripts. In such cases, you can use `*authentication`* to control who gets to run certain requests. - -To enable authentication for any page, simply add a new file to your pages directory with ".allowed" added to the file-name of the page. If your page is named "secret_page.mu", just add a file named "secret_page.allowed". - -For each user allowed to access the page, add a line to this file, containing the hash of that users primary identity. Users can find their own identity hash in the `![ Network ]`! part of the program, under `!Local Peer Info`!. If you want to allow access for three different users, your file would look like this: - -`Faaa -`= -d454bcdac0e64fb68ba8e267543ae110 -2b9ff3fb5902c9ca5ff97bdfb239ef50 -7106d5abbc7208bfb171f2dd84b36490 -`= -`` - -You can also dynamically generate this list, by making the file executable, and writing a script (in whatever language you want), that prints the list to stdout. Every time someone tries to request the page, Nomad Network will check the allowed identities list, and only grant access to allowed users. - -By default, Nomad Network connects anonymously to all nodes. To be able to identify, and access restricted pages, you must allow identifying on a per-node basis. To allow identifying when connecting to a node, you must go to the `!Known Nodes`! list in the `![ Network ]`! part of the program, and enable the `!Identify When Connecting`! checkbox under `!Node Info`!. +You can use a preprocessor such as PHP, bash, Python (or whatever you prefer) to generate dynamic pages. To do so, just set executable permissions on the relevant page file, and be sure to include the interpreter at the beginning of the file, for example `!#!/usr/bin/python3`!. >>Files @@ -369,7 +245,7 @@ Like pages, you can place files you want to make available in the `!~/.nomadnetw Links to pages and resources in Nomad Network use a simple URL format. Here is an example: -`!18176ffddcc8cce1ddf8e3f72068f4a6:/page/index.mu`! +`!1385edace36466a6b3dd:/page/index.mu`! The first part is the 10 byte destination address of the node (represented as readable hexadecimal), followed by the `!:`! character. Everything after the `!:`! represents the request path. @@ -387,225 +263,6 @@ Links can be inserted into micron documents. See the `*Markup`* section of this ''' -TOPIC_INTERFACES = '''>Interfaces - -Reticulum supports using many kinds of devices as networking interfaces, and allows you to mix and match them in any way you choose. - -The number of distinct network topologies you can create with Reticulum is more or less endless, but common to them all is that you will need to define one or more interfaces for Reticulum to use. - -The `![ Interfaces ]`! section of NomadNet lets you add, monitor, and update interfaces configured for your Reticulum instance. - -If you are starting NomadNet for the first time you will find that an `!AutoInterface`! has been added by default. This interface will try to use your available network device to communicate with other peers discovered on your local network. - -Interfaces come in many different types and can interact with physical mediums like LoRa radios or standard IP networks. - ->>Viewing Interfaces - -To view more info about an interface, navigate using the `!Up`! and `!Down`! arrow keys or by clicking with the mouse. Pressing `! < Enter >`! on a selected interface will bring you to a detailed interface view, which will show configuration parameters and realtime charts. From here you can also disable or edit the interface. To change the orientation of the TX/RX charts, press `!< V >`! for a vertical layout, and `!< H >`! for a horizontal view. - ->>Updating Interfaces - -To edit an interface, select the interface and press `!< Ctrl + E >`!. - -To remove an interface, select the interface and press `!< Ctrl + X >`!. You can also perform both of these actions from the details view. - ->>Adding Interfaces - -To add a new interface, press `!< Ctrl + A >`!. From here you can select which type of interface you want to add. Each unique interface type will have different configuration options. - -`Ffff`! (!) Note:`! After adding or modifying interfaces, you will need to restart NomadNet or your Reticulum instance for changes to take effect.`f`b - - ->Interface Types - ->>AutoInterface - -The Auto Interface enables communication with other discoverable Reticulum nodes over autoconfigured IPv6 and UDP. It does not need any functional IP infrastructure like routers or DHCP servers, but will require at least some sort of switching medium between peers (a wired switch, a hub, a WiFi access point or similar). - -``` -Required Parameters: -Interface Name - -Optional Parameters: -Devices: Specific network devices to use -Ignored Devices: Network devices to exclude -Group ID: Create isolated networks on the same physical LAN -Discovery Scope: Can set to link, admin, site, organisation or global -``` - -The AutoInterface is ideal for quickly connecting to other Reticulum nodes on your local network without complex configuration. - ->>TCPClientInterface - -The TCP Client interface connects to remote TCP server interfaces, enabling communication over the Internet or private networks. - -``` -Required Parameters: -Target Host: Hostname or IP address of the server -Target Port: Port number to connect to - -Optional Parameters: -I2P Tunneled: Enable for connecting through I2P -KISS Framing: Enable for KISS framing for software modems -``` - -This interface is commonly used to connect to Reticulum testnets or other persistent nodes on the Internet. - ->>TCPServerInterface - -The TCP Server interface listens for incoming connections, allowing other Reticulum peers to connect to your node using TCPClientInterface. - -``` -Required Parameters: -Listen IP: IP address to bind to (0.0.0.0 for all interfaces) -Listen Port: Port number to listen on - -Optional Parameters: -Prefer IPv6: Bind to IPv6 address if available -I2P Tunneled: Enable for I2P tunnel support -Device: Specific network device to use (e,g -``` - -Useful when you want other nodes to be able to connect to your Transport instance over TCP/IP. - ->>UDPInterface - -The UDP interface allows communication over IP networks using UDP packets. - -``` -Required Parameters: -Listen IP: IP address to bind to -Listen Port: Port to listen on -Forward IP: IP address to forward to (Can be broadcast address) -Forward Port: Port to forward to - -Optional Parameters: -Device: Specific network device to use -``` - ->>I2PInterface - -The I2P interface enables connections over the Invisible Internet Protocol. The I2PInterface requires an I2P daemon to be running on your system, such as `!i2pd`! - -``` -Optional Parameters: -Peers: I2P addresses to connect to (Can be left as none if running as a Transport) -``` - - ->>RNodeInterface - -The RNode interface allows using LoRa transceivers running RNode firmware as Reticulum network interfaces. - -``` -Required Parameters: -Port: Serial port or BLE device path -Frequency: Operating frequency in MHz -Bandwidth: Channel bandwidth -TX Power: Transmit power in dBm -Spreading Factor: LoRa spreading factor (7-12) -Coding Rate: LoRa coding rate (4:5-4:8) - -Optional Parameters: -ID Callsign: Station identification -ID Interval: Identification interval in seconds -Airtime Limits: Control duty cycle -``` - -The interface includes a parameter calculator to estimate link budget, sensitivity, and data rate on the air based on your settings. - ->>RNodeMultiInterface - -The RNode Multi Interface is designed for use with specific hardware platforms that support multiple subinterfaces or virtual radios. For most LoRa hardware platforms, you will want to use the standard `!RNodeInterface`! instead. - -``` -Required Parameters: -Port: Serial port or BLE device path -Subinterfaces: Configuration for each subinterface / virtual radio port - -``` - ->>SerialInterface - -The Serial interface enables using direct serial connections as Reticulum interfaces. - -``` -Required Parameters: -Port: Serial port path -Speed: Baud rate of serial device -Databits: Number of data bits -Parity: Parity setting -Stopbits: Number of stop bits -``` - ->>KISSInterface - -The KISS interface supports packet radio modems and TNCs using the KISS protocol. - -``` -Required Parameters: - -Port: Serial port path -Speed: Baud rate of serial device -Databits: Number of data bits -Parity: Parity setting -Stopbits: Number of stop bits -Preamble: Modem preamble in milliseconds -TX Tail: Transmit tail in milliseconds -Slottime: CSMA slottime in milliseconds -Persistence: CSMA persistence value - -Optional Parameters: - -ID Callsign: Station identification -ID Interval: Identification interval in seconds -Flow Control: Enable packet flow control -``` - ->>PipeInterface - -The Pipe interface allows using external programs as Reticulum interfaces via stdin and stdout. - -``` -Required Parameters: - -Command: External command to execute - -Optional Parameters: -Respawn Delay: Seconds to wait before restarting after failure -``` - -< ->> --∿ - For more information and to view the full Interface documentation consult the Reticulum manual or visit https://reticulum.network/manual/interfaces.html (Requires external Internet connection) - - ->Interface Access Code (IFAC) Settings - -Interface Access Codes create private networks and securely segment network traffic. Under `!Show more options`!, you'll find these IFAC settings: - -`!Virtual Network Name`! (network_name): -When added, creates a logical network that only communicates with other interfaces using the same name. This allows multiple separate Reticulum networks to exist on the same physical channel or medium. - -`!IFAC Passphrase`! (passphrase): -Sets an authentication passphrase for the interface. Only interfaces configured with the same passphrase will be able to communicate. Can be used with or without a network name. - -`!IFAC Size`! (ifac_size): -Controls the length of Interface Authentication Codes (8-512 bits). Larger sizes provide stronger security but add overhead to each packet. The default of `!8`! is usually appropriate for most uses. - ->Interface Modes - -When running a Transport node, you can configure interface modes that affect how Reticulum selects paths, propagates announces, and discovers routes: - -`!full`!: Default mode with all discovery, meshing and transport functionality -`!gateway`!: Discovers paths on behalf of other nodes -`!access_point`!: Operates as a network access point -`!roaming`!: For physically mobile interfaces -`!boundary`!: For interfaces connecting different network segments - -''' - TOPIC_CONVERSATIONS = '''>Conversations Conversations in Nomad Network @@ -620,11 +277,9 @@ You're currently located in the guide section of the program. I'm sorry I had to To get the most out of Nomad Network, you will need a terminal that supports UTF-8 and at least 256 colors, ideally true-color. If your terminal supports true-color, you can go to the `![ Config ]`! menu item, launch the editor and change the configuration. -It is recommended to use a terminal size of at least 135x32. Nomad Network will work with smaller terminal sizes, but the interface might feel a bit cramped. - If you don't already have a Nerd Font installed (see https://www.nerdfonts.com/), I also highly recommend to do so, since it will greatly expand the amount of glyphs, icons and graphics that Nomad Network can use. Once you have your terminal set up with a Nerd Font, go to the `![ Config ]`! menu item and enable Nerd Fonts in the configuration instead of normal unicode glyphs. -Nomad Network expects that you are already connected to some form of Reticulum network. That could be as simple as the default one that Reticulum auto-generates on your local ethernet/WiFi network, or something much more complex. This short guide won't go into any details on building networks, but you will find other entries in the guide that deal with network setup and configuration. +Nomad Network expects that you are already connected to some form of Reticulum network. That could be as simple as the default UDP-based demo interface on your local ethernet network. This short guide won't go into any details on building, but you will find other entries in the guide that deal with network setup and configuration. At least, if Nomad Network launches, it means that it is connected to a running Reticulum instance, that should in turn be connected to `*something`*, which should get you started. @@ -638,366 +293,6 @@ Now go out there and explore. This is still early days. See what you can find an ''' -TOPIC_CONFIG = '''>Configuration Options - -To change the configuration of Nomad Network, you must edit the configuration file. If you did not manually specify a config path when you started the program, Nomad Net will look for a configuration in the folllowing directories: - - `!/etc/nomadnetwork`! - `!~/.config/nomadnetwork`! - `!~/.nomadnetwork`! - -If no existing configuration file is found, one will be created at `!~/.nomadnetwork/config`! by default. The default configuration file contains comments on all the different configuration options present, and explains their possible settings. - -You can open the configuration file in any text-editor, and change the options. You can also use the editor built in to this program, under the `![ Config ]`! menu item. If the built-in editor does not gain focus, and your navigation keys are not working, try hitting enter or space, which should focus the editor and let you navigate the text. - -For reference, all the configuration options are listed and explained here as well. The configuration is divided into different sections, each with their own options. - ->> Logging Section - -This section hold configuration directives related to logging output, and is delimited by the `![logging]`! header in the configuration file. Available directives, along with their default values, are as follows: - ->>> -`!loglevel = 4`! ->>>> -Sets the verbosity of the log output. Must be an integer from 0 through 7. ->>>>> -0: Log only critical information -1: Log errors and lower log levels -2: Log warnings and lower log levels -3: Log notices and lower log levels -4: Log info and lower (this is the default) -5: Verbose logging -6: Debug logging -7: Extreme logging -< - ->>> -`!destination = file`! ->>>> -Determines the output destination of logged information. Must be `!file`! or `!console`!. -< - ->>> -`!logfile = ~/.nomadnetwork/logfile`! ->>>> -Path to the log file. Must be a writable filesystem path. -< - ->> Client Section - -This section hold configuration directives related to the client behaviour and user interface of the program. It is delimited by the `![client]`! header in the configuration file. Available directives, along with their default values, are as follows: - ->>> -`!enable_client = yes`! ->>>> -Determines whether the client part of the program should be started on launch. Must be a boolean value. -< - ->>> -`!user_interface = text`! ->>>> -Selects which interface to use. Currently, only the `!text`! interface is available. -< - ->>> -`!downloads_path = ~/Downloads`! ->>>> -Sets the filesystem path to store downloaded files in. -< - ->>> -`!notify_on_new_message = yes`! ->>>> -Sets whether to output a notification character (bell or flash) to the terminal when a new message is received. -< - ->>> -`!announce_at_start = yes`! ->>>> -Determines whether your LXMF address is automatically announced when the program starts. Must be a boolean value. -< - ->>> -`!try_propagation_on_send_fail = yes`! ->>>> -When this option is enabled, and sending a message directly to a peer fails, Nomad Network will instead deliver the message to the propagation network, for later retrieval by the recipient. -< - ->>> -`!periodic_lxmf_sync = yes`! ->>>> -Whether the program should periodically download messages from available propagation nodes in the background. -< - ->>> -`!lxmf_sync_interval = 360`! ->>>> -The number of minutes between each automatic sync. The default is equal to 6 hours. -< - ->>> -`!lxmf_sync_limit = 8`! ->>>> -On low-bandwidth networks, it can be useful to limit the amount of messages downloaded in each sync. The default is 8. Set to 0 to download all available messages every time a sync occurs. -< - ->>> -`!required_stamp_cost = None`! ->>>> -You can specify a required stamp cost for inbound messages to be accepted. Specifying a stamp cost will require untrusted senders that message you to include a cryptographic stamp in their messages. Performing this operation takes the sender an amount of time proportional to the stamp cost. As a rough estimate, a stamp cost of 8 will take less than a second to compute, and a stamp cost of 20 could take several minutes, even on a fast computer. -< - ->>> -`!accept_invalid_stamps = False`! ->>>> -You can signal stamp requirements to senders, but still accept messages with invalid stamps by setting this option to True. -< - ->>> -`!max_accepted_size = 500`! ->>>> -The maximum accepted unpacked size for messages received directly from other peers, specified in kilobytes. Messages larger than this will be rejected before the transfer begins. -< - ->>> -`!compact_announce_stream = yes`! ->>>> -With this option enabled, Nomad Network will only display one entry in the announce stream per destination. Older announces are culled when a new one arrives. -< - ->> Text UI Section - -This section hold configuration directives related to the look and feel of the text-based user interface of the program. It is delimited by the `![textui]`! header in the configuration file. Available directives, along with their default values, are as follows: - ->>> -`!intro_time = 1`! ->>>> -Number of seconds to display the intro screen. Set to 0 to disable the intro screen. -< - ->>> -`!intro_text = Nomad Network`! ->>>> -The text to display on the intro screen. -< - ->>> -`!editor = editor`! ->>>> -What editor program to use when launching a text editor from within the program. Defaults to the `!editor`! alias, which in turn will use the default editor of the operating system. -< - ->>> -`!glyphs = unicode`! ->>>> -Determines what set of glyphs the program uses for rendering the user interface. ->>>>> -The `!plain`! set only uses ASCII characters, and should work on all terminals, but is rather boring. -The `!unicode`! set uses more interesting glyphs and icons, and should work on most terminals. This is the default. -The `!nerdfont`! set allows using a much wider range of glyphs, icons and graphics, and should be enabled if you are using a Nerd Font in your terminal. -< - ->>> -`!mouse_enabled = yes`! ->>>> -Determines whether the program should react to mouse/touch input. Must be a boolean value. -< - ->>> -`!hide_guide = no`! ->>>> -This option allows hiding the `![ Guide ]`! section of the program. -< - ->>> -`!animation_interval = 1`! ->>>> -Sets the animation refresh rate for certain animations and graphics in the program. Must be an integer. -< - ->>> -`!colormode = 256`! ->>>> -Tells the program what color palette is supported by the terminal. Most terminals support `!256`! colors. If your terminal supports full-color / RGB-mode, set to `!24bit`!. Available options: ->>>>> -`!monochrome`! Single-color (black/white) palette, for monochrome displays -`!16`! Low-color mode for really old-school terminals -`!88`! Standard palletised color-mode for terminals -`!256`! Almost all modern terminals support this mode -`!24bit`! Most new terminals support this full-color mode -< - ->>> -`!theme = dark`! ->>>> -What color theme to use. Set it to match your terminal theme. Can be either `!dark`! or `!light`!. -< - ->> Node Section - -This section holds configuration directives related to the node hosting. It is delimited by the `![node]`! header in the configuration file. Available directives, along with example values, are as follows: - ->>> -`!enable_node = no`! ->>>> -Determines whether the node server should be started on launch. Must be a boolean value, and is turned off by default. -< - ->>> -`!node_name = DisplayName's Node`! ->>>> -Defines what the announced name of the node should be. -< - ->>> -`!announce_at_start = yes`! ->>>> -Determines whether your node is automatically announced on the network when the program starts. Must be a boolean value. -< - ->>> -`!announce_interval = 360`! ->>>> -Determines how often, in minutes, your node is announced on the network. Defaults to 6 hours. -< - ->>> -`!pages_path = ~/.nomadnetwork/storage/pages`! ->>>> -Determines where the node server will look for hosted pages. Must be a readable filesystem path. -< - ->>> -`!page_refresh_interval = 0`! ->>>> -Determines the interval in minutes for rescanning the hosted pages path. By default, this option is disabled, and the pages path will only be scanned on startup. -< - ->>> -`!files_path = ~/.nomadnetwork/storage/files`! ->>>> -Determines where the node server will look for downloadable files. Must be a readable filesystem path. -< - ->>> -`!file_refresh_interval = 0`! ->>>> -Determines the interval in minutes for rescanning the hosted files path. By default, this option is disabled, and the files path will only be scanned on startup. -< - ->>> -`!disable_propagation = yes`! ->>>> -When Nomad Network is hosting a node, it can also run an LXMF propagation node. If there is already a large amount of propagation nodes on the network, or you simply want to run a pageserving-only node, you can disable running a propagation node. -< - ->>> -`!message_storage_limit = 2000`! ->>>> -Configures the maximum amount of storage, in megabytes, that the LXMF Propagation Node will use to store messages. -< - ->>> -`!max_transfer_size = 256`! ->>>> -The maximum accepted transfer size per incoming propagation transfer, in kilobytes. This also sets the upper limit for the size of single messages accepted onto this propagation node. If a node wants to propagate a larger number of messages to this node, than what can fit within this limit, it will prioritise sending the smallest, newest messages first, and try with any remaining messages at a later point. -< - ->>> -`!prioritise_destinations = 41d20c727598a3fbbdf9106133a3a0ed, d924b81822ca24e68e2effea99bcb8cf`! ->>>> -Configures the LXMF Propagation Node to prioritise storing messages for certain destinations. If the message store reaches the specified limit, LXMF will prioritise keeping messages for destinations specified with this option. This setting is optional, and generally you do not need to use it. -< - ->>> -`!max_peers = 25`! ->>>> -Configures the maximum number of other nodes the LXMF Propagation Node will automatically peer with. The default is 50, but can be lowered or increased according to available resources. -< - ->>> -`!static_peers = e17f833c4ddf8890dd3a79a6fea8161d, 5a2d0029b6e5ec87020abaea0d746da4`! ->>>> -Configures the LXMF Propagation Node to always maintain propagation node peering with the specified list of destination hashes. -< - ->> Printing Section - -This section holds configuration directives related to printing. It is delimited by the `![printing]`! header in the configuration file. Available directives, along with example values, are as follows: - ->>> -`!print_messages = no`! ->>>> -Determines whether messages should be printed upon arrival. Must be a boolean value, and is turned off by default. -< - ->>> -`!message_template = ~/.nomadnetwork/print_template_msg.txt`! ->>>> -Determines where the template for printed messages is found. Must be a filesystem path. If you set this path to a non-existing file, an example will be generated in the specified location. -< - ->>> -`!print_from = 76fe5751a56067d1e84eef3e88eab85b, trusted`! ->>>> -Determines from which destinations messages are printed. Can be a list of destinations hashes, the keyword "trusted", or "everywhere". -< - ->>> -`!print_command = lp -d PRINTER_NAME -o cpi=16 -o lpi=8`! ->>>> -Specifies the command that Nomad Network uses to print the message. Defaults to "lp". The above example works well for small thermal-roll printers. -< - ->Ignoring Destinations - -If you encounter peers or nodes on the network, that you would rather not see in your client, you can add them to the `!~/.nomadnetwork/ignored`! file. To ignore nodes or peers, add one 32-character hexadecimal destination hash per line to the file. To unignore one again, simply remove the corresponding entry from the file and restart Nomad Network. -''' - -TOPIC_NETWORKS = '''>Network Configuration - -Nomad Network uses the Reticulum Network Stack for communication and encryption. This means that it will use any interfaces and communications channels already defined in your Reticulum configuration. - -Reticulum supports using many kinds of devices as networking interfaces, and allows you to mix and match them in any way you choose. The number of distinct network topologies you can create with Reticulum is more or less endless, but common to them all is that you will need to define one or more interfaces for Reticulum to use. - -If you have not changed the default Reticulum configuration, which should be located at `!~/.reticulum/config`!, you will have one interface active right now. With it, you should be able to communicate with any other peers and systems that exist on your local ethernet or WiFi network, if your computer is connected to one, and most probably nothing else outside of that. - -To learn how to configure your Reticulum setup to use LoRa radios, packet radio or other interfaces, or connect to other Reticulum networks via the Internet, the best places to start is to read the relevant parts of the Reticulum Manual, which can be found on GitHub: - -`c`_https://markqvist.github.io/Reticulum/manual/interfaces.html`_ -`l - -If you don't currently have access to the Internet, you can generate a configuration file full of examples of all the supported interface types, by using the command `!rnsd --exampleconfig`!. Using those examples, it should be possible to get a working setup going. - -For future reference, you can download the Reticulum Manual in PDF format here: - -`c`_https://github.com/markqvist/Reticulum/raw/master/docs/Reticulum%20Manual.pdf`_ -`l - -It might be nice to keep that handy when you are not connected to the Internet, as it is full of information and examples that are also very relevant to Nomad Network. - ->The Reticulum Testnet - -If you have Internet access, and just want to get started experimenting, you are welcome to join the Unsigned.io RNS Testnet. The testnet is just that, an informal network for testing and experimenting. It will be up most of the time, and anyone can join, but it also means that there's no guarantees for service availability. - -The Testnet also runs the latest version of Reticulum, often even a short while before it is publicly released, which means strange behaviour might occur. If none of that scares you, add the following interface to your Reticulum configuration file to join: - ->> -[[RNS Testnet Dublin]] - type = TCPClientInterface - enabled = yes - target_host = dublin.connect.reticulum.network - target_port = 4965 -< - -If you connect to the testnet, you can leave nomadnet running for a while and wait for it to receive announces from other nodes on the network that host pages or services, or you can try connecting directly to some nodes listed here: - - - Dublin Hub Testnet Node : `!`[abb3ebcd03cb2388a838e70c001291f9]`! - - Frankfurt Hub Testnet Node : `!`[ea6a715f814bdc37e56f80c34da6ad51]`! - -To browse pages on a node that is not currently known, open the URL dialog in the `![ Network ]`! section of the program by pressing `!Ctrl+U`!, paste or enter the address and select `!< Go >`! or press enter. Nomadnet will attempt to discover and connect to the requested node. You can save the currently connected node by pressing `!Ctrl+S`!. -''' - TOPIC_DISPLAYTEST = '''>Markup & Color Display Test @@ -1027,12 +322,9 @@ The following line should contain a green gradient bar: The following line should contain a blue gradient bar: `B001 `B002 `B003 `B004 `B005 `B006 `B007 `B008 `B009 `B00a `B00b `B00c `B00d `B00e `B00f`b -The following line should contain a grayscale gradient bar: -`Bg06 `Bg13 `Bg20 `Bg26 `Bg33 `Bg40 `Bg46 `Bg53 `Bg59 `Bg66 `Bg73 `Bg79 `Bg86 `Bg92 `Bg99`b - Unicode Glyphs : \u2713 \u2715 \u26a0 \u24c3 \u2193 -Nerd Font Glyphs : \uf484 \U000f04c5 \U000f0219 \U000f0002 \uf415 \uf023 \uf06e +Nerd Font Glyphs : \uf484 \uf9c4 \uf719 \uf502 \uf415 \uf023 \uf06e ''' @@ -1097,7 +389,7 @@ While micron can output formatted text to even the most basic terminal, there's Formatting such as `_underline`_, `!bold`! or `*italics`* will be displayed if your terminal supports it. -If you are having trouble getting micron output to display correctly, try using `*gnome-terminal`* or `*alacritty`*, which should work with all formatting options out of the box. Most other terminals will work fine as well, but you might have to change some settings to get certain formatting to display correctly. +If you are having trouble getting micron output to display correctly, try using `*gnome-terminal`*, which should work with all formatting options out of the box. Most other terminals will work fine as well, but you might have to change some settings to get certain formatting to display correctly. >>>Encoding @@ -1268,9 +560,6 @@ You can use `B5d5`F222 color `f`B333 `Ff00f`Ff80o`Ffd0r`F9f0m`F0f2a`F0fdt`F07ft` `` ->Page Foreground and Background Colors - -To specify a background color for the entire page, place the `!#!bg=X`! header on one of the first lines of your page, where `!X`! is the color you want to use, for example `!444`!. If you're also using the cache control header, the background specifier must come `*after`* the cache control header. Likewise, you can specify the default text color by using the `!#!fg=X`! header. >Links @@ -1280,11 +569,11 @@ Here's a few examples: `Faaa `= -Here is a link without any label: `[72914442a3689add83a09a767963f57c:/page/index.mu] +Here is a link without any label: `[1385edace36466a6b3dd:/page/index.mu] -This is a `[labeled link`72914442a3689add83a09a767963f57c:/page/index.mu] to the same page, but it's hard to see if you don't know it +This is a `[labeled link`1385edace36466a6b3dd:/page/index.mu] to the same page, but it's hard to see if you don't know it -Here is `F00a`_`[a more visible link`72914442a3689add83a09a767963f57c:/page/index.mu]`_`f +Here is `F00a`_`[a more visible link`1385edace36466a6b3dd:/page/index.mu]`_`f `= `` @@ -1292,146 +581,16 @@ The above markup produces the following output: `Faaa`B333 -Here is a link without any label: `[72914442a3689add83a09a767963f57c:/page/index.mu] +Here is a link without any label: `[1385edace36466a6b3dd:/page/index.mu] -This is a `[labeled link`72914442a3689add83a09a767963f57c:/page/index.mu] to the same page, but it's hard to see if you don't know it +This is a `[labeled link`1385edace36466a6b3dd:/page/index.mu] to the same page, but it's hard to see if you don't know it -Here is `F00f`_`[a more visible link`72914442a3689add83a09a767963f57c:/page/index.mu]`_`f +Here is `F00f`_`[a more visible link`1385edace36466a6b3dd:/page/index.mu]`_`f `` When links like these are displayed in the built-in browser, clicking on them or activating them using the keyboard will cause the browser to load the specified URL. ->Fields & Requests - -Nomad Network let's you use simple input fields for submitting data to node-side applications. Submitted data, along with other session variables will be available to the node-side script / program as environment variables. - ->>Request Links - -Links can contain request variables and a list of fields to submit to the node-side application. You can include all fields on the page, only specific ones, and any number of request variables. To simply submit all fields on a page to a specified node-side page, create a link like this: - -`Faaa -`= -`[Submit Fields`:/page/fields.mu`*] -`= -`` - -Note the `!*`! following the extra `!\\``! at the end of the path. This `!*`! denotes `*all fields`*. You can also specify a list of fields to include: - -`Faaa -`= -`[Submit Fields`:/page/fields.mu`username|auth_token] -`= -`` - -If you want to include pre-set variables, you can do it like this: - -`Faaa -`= -`[Query the System`:/page/fields.mu`username|auth_token|action=view|amount=64] -`= -`` - ->> Fields - -Here's an example of creating a field. We'll create a field named `!user_input`! and fill it with the text `!Pre-defined data`!. Note that we are using background color tags to make the field more visible to the user: - -`Faaa -`= -A simple input field: `B444``b -`= -`` - -You must always set a field `*name`*, but you can of course omit the pre-defined value of the field: - -`Faaa -`= -An empty input field: `B444``b -`= -`` - -You can set the size of the field like this: - -`Faaa -`= -A sized input field: `B444`<16|with_size`>`b -`= -`` - -It is possible to mask fields, for example for use with passwords and similar: - -`Faaa -`= -A masked input field: `B444``b -`= -`` - -And you can of course control all parameters at the same time: - -`Faaa -`= -Full control: `B444``b -`= -`` - -Collecting the above markup produces the following output: - -`Faaa`B333 - -A simple input field: `B444``B333 - -An empty input field: `B444``B333 - -A sized input field: `B444`<16|with_size`>`B333 - -A masked input field: `B444``B333 - -Full control: `B444``B333 -`b - ->>> Checkboxes - -In addition to text fields, Checkboxes are another way of submitting data. They allow the user to make a single selection or select multiple options. - -`Faaa -`= -``b Label Text` -`= -When the checkbox is checked, it's field will be set to the provided value. If there are multiple checkboxes that share the same field name, the checked values will be concatenated when they are sent to the node by a comma. -`` - -`B444``b Sign me up` - -You can also pre-check both checkboxes and radio groups by appending a |* after the field value. - -`B444``b Pre-checked checkbox` - ->>> Radio groups - -Radio groups are another input that lets the user chose from a set of options. Unlike checkboxes, radio buttons with the same field name are mutually exclusive. - -Example: - -`= -`B900`<^|color|Red`>`b Red - -`B090`<^|color|Green`>`b Green - -`B009`<^|color|Blue`>`b Blue -`= - -will render: - -`B900`<^|color|Red`>`b Red - -`B090`<^|color|Green`>`b Green - -`B009`<^|color|Blue`>`b Blue - -In this example, when the data is submitted, `B444` field_color`b will be set to whichever value from the list was selected. - -`` - >Comments You can insert comments that will not be displayed in the output by starting a line with the # character. @@ -1464,20 +623,15 @@ To display literal content, for example source-code, or blocks of text that shou `= ''' TOPIC_MARKUP += TOPIC_MARKUP.replace("`=", "\\`=") + "[ micron source for document goes here, we don't want infinite recursion now, do we? ]\n\\`=" -TOPIC_MARKUP += "\n`=\n\n>Closing Remarks\n\nIf you made it all the way here, you should be well equipped to write documents, pages and applications using micron and Nomad Network. Thank you for staying with me.\n" +TOPIC_MARKUP += "\n`=\n\n>Closing Remarks\n\nIf you made it all the way here, you should be well equipped to write documents and pages using micron. Thank you for staying with me.\n\n`c\U0001F332\n" TOPICS = { "Introduction": TOPIC_INTRODUCTION, - "Concepts & Terminology": TOPIC_CONCEPTS, "Conversations": TOPIC_CONVERSATIONS, - "Interfaces": TOPIC_INTERFACES, "Hosting a Node": TOPIC_HOSTING, - "Configuration Options": TOPIC_CONFIG, - "Keyboard Shortcuts": TOPIC_SHORTCUTS, "Markup": TOPIC_MARKUP, - "Display Test": TOPIC_DISPLAYTEST, - "Network Configuration": TOPIC_NETWORKS, - "Credits & Licenses": TOPIC_LICENSES, "First Run": TOPIC_FIRST_RUN, -} + "Display Test": TOPIC_DISPLAYTEST, + "Credits & Licenses": TOPIC_LICENSES, +} \ No newline at end of file diff --git a/nomadnet/ui/textui/Interfaces.py b/nomadnet/ui/textui/Interfaces.py deleted file mode 100644 index 85b9b12..0000000 --- a/nomadnet/ui/textui/Interfaces.py +++ /dev/null @@ -1,3206 +0,0 @@ -import RNS -import time -import nomadnet -from math import log10, pow - -from nomadnet.vendor.additional_urwid_widgets.FormWidgets import * -from nomadnet.vendor.AsciiChart import AsciiChart - -### GYLPHS ### -INTERFACE_GLYPHS = { - # Glyph name # Plain # Unicode # Nerd Font - ("NetworkInterfaceType", "(IP)", "\U0001f5a7", "\U000f0200"), - ("SerialInterfaceType", "(<->)", "\u2194", "\U000f065c"), - ("RNodeInterfaceType", "(R)" , "\u16b1", "\U000f043a"), - ("OtherInterfaceType", "(#)" , "\U0001f67e", "\ued95"), -} - -### HELPER ### -PLATFORM_IS_LINUX = False -try: - PLATFORM_IS_LINUX = (RNS.vendor.platformutils.is_android() or - RNS.vendor.platformutils.is_linux()) -except Exception: - pass - -def _get_interface_icon(glyphset, iface_type): - glyphset_index = 1 # Default to unicode - if glyphset == "plain": - glyphset_index = 0 # plain - elif glyphset == "nerdfont": - glyphset_index = 2 # nerdfont - - type_to_glyph_tuple = { - "BackboneInterface": "NetworkInterfaceType", - "AutoInterface": "NetworkInterfaceType", - "TCPClientInterface": "NetworkInterfaceType", - "TCPServerInterface": "NetworkInterfaceType", - "UDPInterface": "NetworkInterfaceType", - "I2PInterface": "NetworkInterfaceType", - - "RNodeInterface": "RNodeInterfaceType", - "RNodeMultiInterface": "RNodeInterfaceType", - - "SerialInterface": "SerialInterfaceType", - "KISSInterface": "SerialInterfaceType", - "AX25KISSInterface": "SerialInterfaceType", - - "PipeInterface": "OtherInterfaceType" - } - - glyph_tuple_name = type_to_glyph_tuple.get(iface_type, "OtherInterfaceType") - - for glyph_tuple in INTERFACE_GLYPHS: - if glyph_tuple[0] == glyph_tuple_name: - return glyph_tuple[glyphset_index + 1] - - # Fallback - return "(#)" if glyphset == "plain" else "\U0001f67e" if glyphset == "unicode" else "\ued95" - -def format_bytes(bytes_value): - units = ['bytes', 'KB', 'MB', 'GB', 'TB'] - size = float(bytes_value) - unit_index = 0 - - while size >= 1024.0 and unit_index < len(units) - 1: - size /= 1024.0 - unit_index += 1 - - if unit_index == 0: - return f"{int(size)} {units[unit_index]}" - else: - return f"{size:.1f} {units[unit_index]}" - -def _get_cols_rows(): - return nomadnet.NomadNetworkApp.get_shared_instance().ui.screen.get_cols_rows() - - -### PORT FUNCTIONS ### -PYSERIAL_AVAILABLE = False # If NomadNet is installed on environments with rnspure instead of rns, pyserial won't be available -try: - import serial.tools.list_ports - PYSERIAL_AVAILABLE = True -except ImportError: - class DummyPort: - def __init__(self, device, description=None, manufacturer=None, hwid=None): - self.device = device - self.description = description or device - self.manufacturer = manufacturer - self.hwid = hwid - self.vid = None - self.pid = None - -def get_port_info(): - if not PYSERIAL_AVAILABLE: - return [] - - try: - ports = serial.tools.list_ports.comports() - port_info = [] - - # Ports are sorted into categories for dropdown, priority ports appear first - priority_ports = [] # USB, ACM, bluetooth, etc - standard_ports = [] # COM, tty/s ports - - for port in ports: - desc = f"{port.device}" - if port.description and port.description != port.device: - desc += f" ({port.description})" - if port.manufacturer: - desc += f" - {port.manufacturer}" - - is_standard = ( - port.device.startswith("COM") or # windows - "/dev/ttyS" in port.device or # Linux - "Serial" in port.description - ) - - port_data = { - 'device': port.device, - 'description': desc, - 'hwid': port.hwid, - 'vid': port.vid, - 'pid': port.pid, - 'is_standard': is_standard - } - - if is_standard: - standard_ports.append(port_data) - else: - priority_ports.append(port_data) - - priority_ports.sort(key=lambda x: x['device']) - standard_ports.sort(key=lambda x: x['device']) - - return priority_ports + standard_ports - except Exception as e: - RNS.log(f"error accessing serial ports: {str(e)}", RNS.LOG_ERROR) - return [] - -def get_port_field(): - if not PYSERIAL_AVAILABLE: - return { - "config_key": "port", - "type": "edit", - "label": "Port: ", - "default": "", - "placeholder": "/dev/ttyUSB0 or COM port (pyserial not installed)", - "validation": ["required"], - "transform": lambda x: x.strip() - } - - port_info = get_port_info() - - if len(port_info) > 1: - options = [p['description'] for p in port_info] - device_map = {p['description']: p['device'] for p in port_info} - - return { - "config_key": "port", - "type": "dropdown", - "label": "Port: ", - "options": options, - "default": options[0] if options else "", - "validation": ["required"], - "transform": lambda x: device_map[x] - } - else: - # single or no ports - use text field - default = port_info[0]['device'] if port_info else "" - placeholder = "/dev/ttyXXX (or COM port on Windows)" - - return { - "config_key": "port", - "type": "edit", - "label": "Port: ", - "default": default, - "placeholder": placeholder, - "validation": ["required"], - "transform": lambda x: x.strip() - } - -### RNODE #### -def calculate_rnode_parameters(bandwidth, spreading_factor, coding_rate, noise_floor=6, antenna_gain=0, - transmit_power=17): - crn = { - 5: 1, - 6: 2, - 7: 3, - 8: 4, - } - coding_rate_n = crn.get(coding_rate, 1) - - sfn = { - 5: -2.5, - 6: -5, - 7: -7.5, - 8: -10, - 9: -12.5, - 10: -15, - 11: -17.5, - 12: -20 - } - - data_rate = spreading_factor * ( - (4 / (4 + coding_rate_n)) / (pow(2, spreading_factor) / (bandwidth / 1000))) * 1000 - - sensitivity = -174 + 10 * log10(bandwidth) + noise_floor + (sfn.get(spreading_factor, 0)) - - if bandwidth == 203125 or bandwidth == 406250 or bandwidth > 500000: - sensitivity = -165.6 + 10 * log10(bandwidth) + noise_floor + (sfn.get(spreading_factor, 0)) - - link_budget = (transmit_power - sensitivity) + antenna_gain - - if data_rate < 1000: - data_rate_str = f"{data_rate:.0f} bps" - else: - data_rate_str = f"{(data_rate / 1000):.2f} kbps" - - return { - "data_rate": data_rate_str, - "link_budget": f"{link_budget:.1f} dB", - "sensitivity": f"{sensitivity:.1f} dBm", - "raw_data_rate": data_rate, - "raw_link_budget": link_budget, - "raw_sensitivity": sensitivity - } - -class RNodeCalculator(urwid.WidgetWrap): - def __init__(self, parent_view): - self.parent_view = parent_view - self.update_alarm = None - - self.data_rate_widget = urwid.Text("Data Rate: Calculating...") - self.link_budget_widget = urwid.Text("Link Budget: Calculating...") - self.sensitivity_widget = urwid.Text("Sensitivity: Calculating...") - - self.noise_floor_edit = urwid.Edit("", "0") - self.antenna_gain_edit = urwid.Edit("", "0") - - layout = urwid.Pile([ - urwid.Divider("-"), - - urwid.Columns([ - (28, urwid.Text(("key", "Enter Noise Floor (dB): "), align="right")), - self.noise_floor_edit - ]), - - urwid.Columns([ - (28, urwid.Text(("key", "Enter Antenna Gain (dBi): "), align="right")), - self.antenna_gain_edit - ]), - - urwid.Divider(), - - urwid.Text(("connected_status", "On-Air Calculations:"), align="left"), - self.data_rate_widget, - self.link_budget_widget, - self.sensitivity_widget, - urwid.Divider(), - - urwid.Text([ - "These calculations will update as you change RNode parameters" - ]) - ]) - - super().__init__(layout) - - self.connect_all_field_signals() - - self.update_calculation() - - def connect_all_field_signals(self): - urwid.connect_signal(self.noise_floor_edit, 'change', self._queue_update) - urwid.connect_signal(self.antenna_gain_edit, 'change', self._queue_update) - rnode_fields = ['bandwidth', 'spreadingfactor', 'codingrate', 'txpower'] - - for field_name in rnode_fields: - if field_name in self.parent_view.fields: - - field_widget = self.parent_view.fields[field_name]['widget'] - - if hasattr(field_widget, 'edit_text'): - urwid.connect_signal(field_widget, 'change', self._queue_update) - elif hasattr(field_widget, '_emit') and 'change' in getattr(field_widget, 'signals', []): - urwid.connect_signal(field_widget, 'change', self._queue_update) - - def _queue_update(self, widget, new_text): - if self.update_alarm is not None: - try: - self.parent_view.parent.app.ui.loop.remove_alarm(self.update_alarm) - except: - pass - - self.update_alarm = self.parent_view.parent.app.ui.loop.set_alarm_in( - 0.3, self._delayed_update) - - def _delayed_update(self, loop, user_data): - self.update_alarm = None - self.update_calculation() - - def update_calculation(self): - try: - - try: - bandwidth_widget = self.parent_view.fields.get('bandwidth', {}).get('widget') - bandwidth = int(bandwidth_widget.get_value()) if bandwidth_widget else 125000 - except (ValueError, AttributeError): - bandwidth = 125000 - - try: - sf_widget = self.parent_view.fields.get('spreadingfactor', {}).get('widget') - spreading_factor = int(sf_widget.get_value()) if sf_widget else 7 - except (ValueError, AttributeError): - spreading_factor = 7 - - try: - cr_widget = self.parent_view.fields.get('codingrate', {}).get('widget') - coding_rate = int(cr_widget.get_value()) if cr_widget else 5 - if isinstance(coding_rate, str) and ":" in coding_rate: - coding_rate = int(coding_rate.split(":")[1]) - except (ValueError, AttributeError): - coding_rate = 5 - - try: - txpower_widget = self.parent_view.fields.get('txpower', {}).get('widget') - if hasattr(txpower_widget, 'edit_text'): - txpower_text = txpower_widget.edit_text.strip() - txpower = int(txpower_text) if txpower_text else 17 - else: - txpower = int(txpower_widget.get_value()) if txpower_widget else 17 - except (ValueError, AttributeError): - txpower = 17 - - try: - noise_floor_text = self.noise_floor_edit.edit_text.strip() - noise_floor = int(noise_floor_text) if noise_floor_text else 0 - except (ValueError, AttributeError): - noise_floor = 0 - - try: - antenna_gain_text = self.antenna_gain_edit.edit_text.strip() - antenna_gain = int(antenna_gain_text) if antenna_gain_text else 0 - except (ValueError, AttributeError): - antenna_gain = 0 - - result = calculate_rnode_parameters( - bandwidth=bandwidth, - spreading_factor=spreading_factor, - coding_rate=coding_rate, - noise_floor=noise_floor, - antenna_gain=antenna_gain, - transmit_power=txpower - ) - - self.data_rate_widget.set_text(f"Data Rate: {result['data_rate']}") - self.link_budget_widget.set_text(f"Link Budget: {result['link_budget']}") - self.sensitivity_widget.set_text(f"Sensitivity: {result['sensitivity']}") - - except (ValueError, KeyError, TypeError) as e: - self.data_rate_widget.set_text(f"Data Rate: Waiting for parameters...") - self.link_budget_widget.set_text(f"Link Budget: Waiting for valid parameters...") - self.sensitivity_widget.set_text(f"Sensitivity: Waiting for parameters...") - -### INTERFACE FIELDS ### -COMMON_INTERFACE_OPTIONS = [ - { - "config_key": "network_name", - "type": "edit", - "label": "Virtual Network Name: ", - "placeholder": "Optional virtual network name", - "default": "", - "validation": [], - "transform": lambda x: x.strip() - }, - { - "config_key": "passphrase", - "type": "edit", - "label": "IFAC Passphrase: ", - "placeholder": "IFAC authentication passphrase", - "default": "", - "validation": [], - "transform": lambda x: x.strip() - }, - { - "config_key": "ifac_size", - "type": "edit", - "label": "IFAC Size: ", - "placeholder": "8 - 512", - "default": "", - "validation": ['number'], - "transform": lambda x: x.strip() - }, - { - "config_key": "bitrate", - "type": "edit", - "label": "Inferred Bitrate: ", - "placeholder": "Automatically determined", - "default": "", - "validation": ['number'], - "transform": lambda x: x.strip() - }, -] - -INTERFACE_FIELDS = { - "BackboneInterface": [ - { - "config_key": "listen_on", - "type": "edit", - "label": "Listen On: ", - "default": "", - "placeholder": "e.g., 0.0.0.0", - "transform": lambda x: x.strip() - }, - { - "config_key": "port", - "type": "edit", - "label": "Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - { - "config_key": "device", - "type": "edit", - "label": "Device: ", - "default": "", - "placeholder": "e.g., eth0", - "transform": lambda x: x.strip() - }, - { - "config_key": "remote", - "type": "edit", - "label": "Remote: ", - "default": "", - "placeholder": "e.g., a remote TCPServerInterface location", - "transform": lambda x: x.strip() - }, - { - "config_key": "target_host", - "type": "edit", - "label": "Target Host: ", - "default": "", - "placeholder": "e.g., 201:5d78:af73:5caf:a4de:a79f:3278:71e5", - "transform": lambda x: x.strip() - }, - { - "config_key": "port", - "type": "edit", - "label": "Target Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - { - "config_key": "prefer_ipv6", - "type": "checkbox", - "label": "", - "default": False, - "validation": [], - "transform": lambda x: bool(x) - }, - ], - "AutoInterface": [ - { - - }, - { - "additional_options": [ - { - "config_key": "devices", - "type": "multilist", - "label": "Devices: ", - "validation": [], - "transform": lambda x: ",".join(x) - }, - { - "config_key": "ignored_devices", - "type": "multilist", - "label": "Ignored Devices: ", - "validation": [], - "transform": lambda x: ",".join(x) - }, - { - "config_key": "group_id", - "type": "edit", - "label": "Group ID: ", - "default": "", - "placeholder": "e.g., my_custom_network", - "validation": [], - "transform": lambda x: x.strip() - }, - { - "config_key": "discovery_scope", - "type": "dropdown", - "label": "Discovery Scope: ", - "options": ["None", "link", "admin", "site", "organisation", "global"], - "default": "None", - "validation": [], - "transform": lambda x: "" if x == "None" else x.strip() - } - ] - }, - ], - "I2PInterface": [ - { - "config_key": "peers", - "type": "multilist", - "label": "Peers: ", - "placeholder": "", - "validation": ["required"], - "transform": lambda x: ",".join(x) - } - ], - "TCPServerInterface": [ - { - "config_key": "listen_ip", - "type": "edit", - "label": "Listen IP: ", - "default": "", - "placeholder": "e.g., 0.0.0.0", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "listen_port", - "type": "edit", - "label": "Listen Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - { - "additional_options": [ - { - "config_key": "prefer_ipv6", - "type": "checkbox", - "label": "Prefer IPv6?", - "default": False, - "validation": [], - "transform": lambda x: bool(x) - }, - { - "config_key": "i2p_tunneled", - "type": "checkbox", - "label": "I2P Tunneled?", - "default": False, - "validation": [], - "transform": lambda x: bool(x) - }, - { - "config_key": "device", - "type": "edit", - "label": "Device: ", - "placeholder": "A specific network device to listen on - e.g. eth0", - "default": "", - "validation": [], - "transform": lambda x: x.strip() if x.strip() else None - }, - { - "config_key": "port", - "type": "edit", - "label": "Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - ] - } - ], - "TCPClientInterface": [ - { - "config_key": "target_host", - "type": "edit", - "label": "Target Host: ", - "default": "", - "placeholder": "e.g., 127.0.0.1", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "target_port", - "type": "edit", - "label": "Target Port: ", - "default": "", - "placeholder": "e.g., 8080", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - { - "additional_options": [ - { - "config_key": "i2p_tunneled", - "type": "checkbox", - "label": "I2P Tunneled?", - "default": False, - "validation": [], - "transform": lambda x: bool(x) - }, - { - "config_key": "kiss_framing", - "type": "checkbox", - "label": "KISS Framing?", - "default": False, - "validation": [], - "transform": lambda x: bool(x) - } - ] - } - ], - "UDPInterface": [ - { - "config_key": "listen_ip", - "type": "edit", - "label": "Listen IP: ", - "default": "", - "placeholder": "e.g., 0.0.0.0", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "listen_port", - "type": "edit", - "label": "Listen Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - { - "config_key": "forward_ip", - "type": "edit", - "label": "Forward IP: ", - "default": "", - "placeholder": "e.g., 255.255.255.255", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "forward_port", - "type": "edit", - "label": "Forward Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - { - "additional_options": [ - { - "config_key": "device", - "type": "edit", - "label": "Device: ", - "placeholder": "A specific network device to listen on - e.g. eth0", - "default": "", - "validation": [], - "transform": lambda x: x.strip() - }, - { - "config_key": "port", - "type": "edit", - "label": "Port: ", - "default": "", - "placeholder": "e.g., 4242", - "validation": ["number"], - "transform": lambda x: int(x.strip()) if x.strip() else None - }, - ] - } - ], - "RNodeInterface": [ - get_port_field(), - { - "config_key": "frequency", - "type": "edit", - "label": "Frequency (MHz): ", - "default": "", - "placeholder": "868.5", - "validation": ["required", "float"], - "transform": lambda x: int(float(x.strip()) * 1000000) if x.strip() else 868500000 - }, - { - "config_key": "txpower", - "type": "edit", - "label": "Transmit Power (dBm): ", - "default": "", - "placeholder": "17", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) if x.strip() else 17 - }, - { - "config_key": "bandwidth", - "type": "dropdown", - "label": "Bandwidth (Hz): ", - "options": ["7800", "10400", "15600", "20800", "31250", "41700", "62500", "125000", "250000", - "500000", "1625000"], - "default": "7800", - "validation": ["required"], - "transform": lambda x: int(x) - }, - { - "config_key": "spreadingfactor", - "type": "dropdown", - "label": "Spreading Factor: ", - "options": ["7", "8", "9", "10", "11", "12"], - "default": "7", - "validation": ["required"], - "transform": lambda x: int(x) - }, - { - "config_key": "codingrate", - "type": "dropdown", - "label": "Coding Rate: ", - "options": ["4:5", "4:6", "4:7", "4:8"], - "default": "4:5", - "validation": ["required"], - "transform": lambda x: int(x.split(":")[1]) - }, - { - "additional_options": [ - { - "config_key": "id_callsign", - "type": "edit", - "label": "Callsign: ", - "default": "", - "placeholder": "e.g. MYCALL-0", - "validation": [""], - "transform": lambda x: x.strip() - }, - { - "config_key": "id_interval", - "type": "edit", - "label": "ID Interval (Seconds): ", - "placeholder": "e.g. 600", - "default": "", - "validation": ['number'], - "transform": lambda x: "" if x == "" else int(x) - }, - { - "config_key": "airtime_limit_long", - "type": "edit", - "label": "Airtime Limit Long (Seconds): ", - "placeholder": "e.g. 1.5", - "default": "", - "validation": ['number'], - "transform": lambda x: "" if x == "" else int(x) - }, - { - "config_key": "airtime_limit_short", - "type": "edit", - "label": "Airtime Limit Short (Seconds): ", - "placeholder": "e.g. 33", - "default": "", - "validation": ['number'], - "transform": lambda x: "" if x == "" else int(x) - }, - ] - } - ], - "RNodeMultiInterface": [ - get_port_field(), - { - "config_key": "subinterfaces", - "type": "multitable", - "fields": { - "frequency": { - "label": "Freq (Hz)", - "type": "edit", - "validation": ["required", "float"], - "transform": lambda x: int(x) if x else None - }, - "bandwidth": { - "label": "BW (Hz)", - "type": "edit", - "options": ["7800", "10400", "15600", "20800", "31250", "41700", "62500", "125000", "250000", "500000", "1625000"], - "transform": lambda x: int(x) if x else None - }, - "txpower": { - "label": "TX (dBm)", - "type": "edit", - "validation": ["required", "number"], - "transform": lambda x: int(x) if x else None - }, - "vport": { - "label": "V.Port", - "type": "edit", - "validation": ["required", "number"], - "transform": lambda x: int(x) if x else None - }, - "spreadingfactor": { - "label": "SF", - "type": "edit", - "transform": lambda x: int(x) if x else None - }, - "codingrate": { - "label": "CR", - "type": "edit", - "transform": lambda x: int(x) if x else None - } - }, - "validation": ["required"], - "transform": lambda x: x - }, - { - "additional_options": [ - { - "config_key": "id_callsign", - "type": "edit", - "label": "Callsign: ", - "default": "", - "placeholder": "e.g. MYCALL-0", - "validation": [""], - "transform": lambda x: x.strip() - }, - { - "config_key": "id_interval", - "type": "edit", - "label": "ID Interval (Seconds): ", - "placeholder": "e.g. 600", - "default": "", - "validation": ['number'], - "transform": lambda x: "" if x == "" else int(x) - } - ] - } - ], - "SerialInterface": [ - get_port_field(), - { - "config_key": "speed", - "type": "edit", - "label": "Speed (bps): ", - "default": "", - "placeholder": "e.g. 115200", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) - }, - { - "config_key": "databits", - "type": "edit", - "label": "Databits: ", - "default": "", - "placeholder": "e.g. 8", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) - }, - { - "config_key": "parity", - "type": "edit", - "label": "Parity: ", - "default": "", - "placeholder": "", - "validation": ["number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "stopbits", - "type": "edit", - "label": "Stopbits: ", - "default": "", - "placeholder": "e.g. 1", - "validation": ["number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - ], - "PipeInterface": [ - { - "config_key": "command", - "type": "edit", - "label": "Command: ", - "default": "", - "placeholder": "e.g. netcat -l 5757", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "respawn_delay", - "type": "edit", - "label": "Respawn Delay (seconds): ", - "default": "", - "placeholder": "e.g. 5", - "validation": ["number"], - "transform": lambda x: x.strip() - }, - ], - "KISSInterface": [ - get_port_field(), - { - "config_key": "speed", - "type": "edit", - "label": "Speed (bps): ", - "default": "", - "placeholder": "e.g. 115200", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) - }, - { - "config_key": "databits", - "type": "edit", - "label": "Databits: ", - "default": "", - "placeholder": "e.g. 8", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) - }, - { - "config_key": "parity", - "type": "edit", - "label": "Parity: ", - "default": "", - "placeholder": "", - "validation": ["number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "stopbits", - "type": "edit", - "label": "Stopbits: ", - "default": "", - "placeholder": "e.g. 1", - "validation": ["number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "preamble", - "type": "edit", - "label": "Preamble (miliseconds): ", - "default": "", - "placeholder": "e.g. 150", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "txtail", - "type": "edit", - "label": "TX Tail (miliseconds): ", - "default": "", - "placeholder": "e.g. 10", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "slottime", - "type": "edit", - "label": "slottime (miliseconds): ", - "default": "", - "placeholder": "e.g. 20", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "persistence", - "type": "edit", - "label": "Persistence (miliseconds): ", - "default": "", - "placeholder": "e.g. 200", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "additional_options": [ - { - "config_key": "id_callsign", - "type": "edit", - "label": "ID Callsign: ", - "default": "", - "placeholder": "e.g. MYCALL-0", - "validation": [""], - "transform": lambda x: x.strip() - }, - { - "config_key": "id_interval", - "type": "edit", - "label": "ID Interval (Seconds): ", - "placeholder": "e.g. 600", - "default": "", - "validation": ['number'], - "transform": lambda x: "" if x == "" else int(x) - }, - { - "config_key": "flow_control", - "type": "checkbox", - "label": "Flow Control ", - "validation": [], - "transform": lambda x: "" if x == "" else bool(x) - }, - ] - } - ], - "AX25KISSInterface": [ - get_port_field(), - { - "config_key": "callsign", - "type": "edit", - "label": "Callsign: ", - "default": "", - "placeholder": "e.g. NO1CLL", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "ssid", - "type": "edit", - "label": "SSID: ", - "default": "", - "placeholder": "e.g. 0", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "speed", - "type": "edit", - "label": "Speed (bps): ", - "default": "", - "placeholder": "e.g. 115200", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) - }, - { - "config_key": "databits", - "type": "edit", - "label": "Databits: ", - "default": "", - "placeholder": "e.g. 8", - "validation": ["required", "number"], - "transform": lambda x: int(x.strip()) - }, - { - "config_key": "parity", - "type": "edit", - "label": "Parity: ", - "default": "", - "placeholder": "", - "validation": ["number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "stopbits", - "type": "edit", - "label": "Stopbits: ", - "default": "", - "placeholder": "e.g. 1", - "validation": ["number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "preamble", - "type": "edit", - "label": "Preamble (miliseconds): ", - "default": "", - "placeholder": "e.g. 150", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "txtail", - "type": "edit", - "label": "TX Tail (miliseconds): ", - "default": "", - "placeholder": "e.g. 10", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "slottime", - "type": "edit", - "label": "Slottime (miliseconds): ", - "default": "", - "placeholder": "e.g. 20", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "config_key": "persistence", - "type": "edit", - "label": "Persistence (miliseconds): ", - "default": "", - "placeholder": "e.g. 200", - "validation": ["required", "number"], - "transform": lambda x: "" if x == "" else int(x.strip()) - }, - { - "additional_options": [ - { - "config_key": "flow_control", - "type": "checkbox", - "label": "Flow Control ", - "validation": [], - "transform": lambda x: "" if x == "" else bool(x) - }, - ] - } - ], - "CustomInterface": [ - { - "config_key": "type", - "type": "edit", - "label": "Interface Type: ", - "default": "", - "placeholder": "Name of custom interface class", - "validation": ["required"], - "transform": lambda x: x.strip() - }, - { - "config_key": "custom_parameters", - "type": "keyvaluepairs", - "label": "Parameters: ", - "validation": [], - "transform": lambda x: x - }, - ], - "default": [ - { - - }, - ] -} - -### INTERFACE WIDGETS #### -class SelectableInterfaceItem(urwid.WidgetWrap): - def __init__(self, parent, name, is_connected, is_enabled, iface_type, tx, rx, icon="?", iface_options=None): - self.parent = parent - self._selectable = True - self.icon = icon - self.name = name - self.is_connected = is_connected - self.is_enabled = is_enabled - self.iface_options = iface_options - - - if is_enabled: - enabled_txt = ("connected_status", "Enabled") - else: - enabled_txt = ("disconnected_status", "Disabled") - - if is_connected: - connected_txt = ("connected_status", "Connected") - else: - connected_txt = ("disconnected_status", "Disconnected") - - self.selection_txt = urwid.Text(" ") - self.title_widget = urwid.Text(("interface_title", f"{icon} {name}")) - - title_content = urwid.Columns([ - (4, self.selection_txt), - self.title_widget, - ]) - - self.tx_widget = urwid.Text(("value", format_bytes(tx))) - self.rx_widget = urwid.Text(("value", format_bytes(rx))) - - self.status_widget = urwid.Text(enabled_txt) - self.connection_widget = urwid.Text(connected_txt) - - rows = [ - urwid.Columns([ - (10, urwid.Text(("key", "Status: "))), - (10, self.status_widget), - (3, urwid.Text(" | ")), - self.connection_widget, - ]), - - urwid.Columns([ - (10, urwid.Text(("key", "Type:"))), - urwid.Text(("value", iface_type)), - ]), - - urwid.Divider("-"), - - urwid.Columns([ - (10, urwid.Text(("key", "TX:"))), - (15, self.tx_widget), - (10, urwid.Text(("key", "RX:"))), - self.rx_widget, - ]), - ] - - pile_contents = [title_content] + rows - - pile = urwid.Pile(pile_contents) - - padded_body = urwid.Padding(pile, left=2, right=2) - - box = urwid.LineBox( - padded_body, - title=None, - #todo - tlcorner="╭", tline="─", - trcorner="╮", lline="│", - rline="│", blcorner="╰", - bline="─", brcorner="╯" - ) - - super().__init__(box) - - def update_status_display(self): - if self.is_enabled: - self.status_widget.set_text(("connected_status", "Enabled")) - else: - self.status_widget.set_text(("disconnected_status", "Disabled")) - - def selectable(self): - return True - - def render(self, size, focus=False): - self.selection_txt.set_text(self.parent.g['selected'] if focus else self.parent.g['unselected']) - - if focus: - self.title_widget.set_text( - ("interface_title_selected", f"{self.icon} {self.name}")) - else: - self.title_widget.set_text(("interface_title", f"{self.icon} {self.name}")) - - return super().render(size, focus=focus) - - def keypress(self, size, key): - if key == "up": - listbox = self.parent.box_adapter._original_widget - walker = listbox.body - - interface_items = [i for i, item in enumerate(walker) - if isinstance(item, SelectableInterfaceItem)] - - if interface_items and walker[listbox.focus_position] is self and \ - listbox.focus_position == interface_items[0]: - self.parent.app.ui.main_display.frame.focus_position = "header" - return None - elif key == "enter": - self.parent.switch_to_show_interface(self.name) - return None - return key - - def update_stats(self, tx, rx): - self.tx_widget.set_text(("value", format_bytes(tx))) - self.rx_widget.set_text(("value", format_bytes(rx))) - -class InterfaceOptionItem(urwid.WidgetWrap): - def __init__(self, parent_display, label, value): - self.parent_display = parent_display - self.label = label - self.value = value - self._selectable = True - - text_widget = urwid.Text(label, align="left") - super().__init__(urwid.AttrMap(text_widget, "list_normal", focus_map="list_focus")) - - def selectable(self): - return True - - def keypress(self, size, key): - if key == "enter": - self.parent_display.dismiss_dialog() - self.parent_display.switch_to_add_interface(self.value) - return None - return super().keypress(size, key) - -class InterfaceBandwidthChart: - - def __init__(self, history_length=60, glyphset="unicode"): - self.history_length = history_length - self.glyphset = glyphset - self.rx_rates = [0] * history_length - self.tx_rates = [0] * history_length - - self.prev_rx = None - self.prev_tx = None - self.prev_time = None - - self.max_rx_rate = 1 - self.max_tx_rate = 1 - - self.first_update = True - self.initialization_complete = False - self.stabilization_updates = 2 - self.update_count = 0 - - self.peak_rx_for_display = 0 - self.peak_tx_for_display = 0 - - def update(self, rx_bytes, tx_bytes): - current_time = time.time() - - if self.prev_rx is None or self.first_update: - self.prev_rx = rx_bytes - self.prev_tx = tx_bytes - self.prev_time = current_time - self.first_update = False - return - - time_delta = max(0.1, current_time - self.prev_time) - - rx_delta = max(0, rx_bytes - self.prev_rx) / time_delta - tx_delta = max(0, tx_bytes - self.prev_tx) / time_delta - - self.prev_rx = rx_bytes - self.prev_tx = tx_bytes - self.prev_time = current_time - - self.update_count += 1 - - self.rx_rates.pop(0) - self.tx_rates.pop(0) - self.rx_rates.append(rx_delta*8) - self.tx_rates.append(tx_delta*8) - - if self.update_count >= self.stabilization_updates: - self.initialization_complete = True - - self.peak_rx_for_display = max(self.peak_rx_for_display, rx_delta) - self.peak_tx_for_display = max(self.peak_tx_for_display, tx_delta) - - - current_rx_max = max(self.rx_rates) - current_tx_max = max(self.tx_rates) - - self.max_rx_rate = max(1, current_rx_max) - self.max_tx_rate = max(1, current_tx_max) - - def get_charts(self, height=8): - chart = AsciiChart(glyphset=self.glyphset) - - rx_data = self.rx_rates.copy() - tx_data = self.tx_rates.copy() - - peak_rx = self.peak_rx_for_display if self.initialization_complete else 0 - peak_tx = self.peak_tx_for_display if self.initialization_complete else 0 - - peak_rx_str = RNS.prettyspeed(peak_rx*8) - peak_tx_str = RNS.prettyspeed(peak_tx*8) - - rx_chart = chart.plot( - [rx_data], - { - 'height': height, - 'format': RNS.prettyspeed, - 'min': 0, - 'max': self.max_rx_rate * 1.1, - } - ) - - tx_chart = chart.plot( - [tx_data], - { - 'height': height, - 'format': RNS.prettyspeed, - 'min': 0, - 'max': self.max_tx_rate * 1.1, - } - ) - - return rx_chart, tx_chart, peak_rx_str, peak_tx_str - - -class ResponsiveChartContainer(urwid.WidgetWrap): - - def __init__(self, rx_box, tx_box, min_cols_for_horizontal=100): - self.rx_box = rx_box - self.tx_box = tx_box - self.min_cols_for_horizontal = min_cols_for_horizontal - - self.horizontal_layout = urwid.Columns([ - (urwid.WEIGHT, 1, self.rx_box), - (urwid.WEIGHT, 1, self.tx_box) - ]) - - self.vertical_layout = urwid.Pile([ - self.rx_box, - self.tx_box - ]) - - self.layout = urwid.WidgetPlaceholder(self.horizontal_layout) - - super().__init__(self.layout) - - def render(self, size, focus=False): - maxcol = size[0] if len(size) > 0 else 0 - - if maxcol >= self.min_cols_for_horizontal and self.layout.original_widget is not self.horizontal_layout: - self.layout.original_widget = self.horizontal_layout - elif maxcol < self.min_cols_for_horizontal and self.layout.original_widget is not self.vertical_layout: - self.layout.original_widget = self.vertical_layout - - return super().render(size, focus) - -### URWID FILLER ### -class InterfaceFiller(urwid.WidgetWrap): - def __init__(self, widget, app): - self.app = app - self.filler = urwid.Filler(widget, urwid.TOP) - super().__init__(self.filler) - - def keypress(self, size, key): - if key == "ctrl a": - # add interface - self.app.ui.main_display.sub_displays.interface_display.add_interface() - return - elif key == "ctrl x": - # remove Interface - self.app.ui.main_display.sub_displays.interface_display.remove_selected_interface() - return - elif key == "ctrl e": - # edit interface - self.app.ui.main_display.sub_displays.interface_display.edit_selected_interface() - return None - elif key == "ctrl w": - # open config file editor - self.app.ui.main_display.sub_displays.interface_display.open_config_editor() - return None - - return super().keypress(size, key) - -### VIEWS ### -class AddInterfaceView(urwid.WidgetWrap): - def __init__(self, parent, iface_type): - self.parent = parent - self.iface_type = iface_type - self.fields = {} - self.port_pile = None - self.additional_fields = {} - self.additional_pile_contents = [] - self.common_fields = {} - - self.parent.shortcuts_display.set_add_interface_shortcuts() - - name_field = FormEdit( - config_key="name", - placeholder="Enter interface name", - validation_types=["required"] - ) - self.fields['name'] = { - 'label': "Name: ", - 'widget': name_field - } - - config = INTERFACE_FIELDS.get(iface_type, INTERFACE_FIELDS["default"]) - iface_fields = [field for field in config if "config_key" in field] - - for field in iface_fields: - self._initialize_field(field) - - self._initialize_additional_fields(config) - - self._initialize_common_fields() - - pile_items = self._build_form_layout(iface_fields) - - form_pile = urwid.Pile(pile_items) - form_filler = urwid.Filler(form_pile, valign="top") - form_box = urwid.LineBox( - form_filler, - title="Add Interface", - tlcorner="╭", tline="─", - trcorner="╮", lline="│", - rline="│", blcorner="╰", - bline="─", brcorner="╯" - ) - - background = urwid.SolidFill(" ") - self.overlay = urwid.Overlay( - top_w=form_box, - bottom_w=background, - align='center', - width=('relative', 85), - valign='middle', - height=('relative', 85), - ) - super().__init__(self.overlay) - - def _initialize_field(self, field): - if field["type"] == "dropdown": - widget = FormDropdown( - config_key=field["config_key"], - label=field.get("label", ""), - options=field["options"], - default=field.get("default"), - validation_types=field.get("validation", []), - transform=field.get("transform") - ) - elif field["type"] == "checkbox": - widget = FormCheckbox( - config_key=field["config_key"], - label=field.get("label", ""), - state=field.get("default", False), - validation_types=field.get("validation", []), - transform=field.get("transform") - ) - elif field["type"] == "multilist": - widget = FormMultiList( - config_key=field["config_key"], - placeholder=field.get("placeholder", ""), - validation_types=field.get("validation", []), - transform=field.get("transform") - ) - elif field["type"] == "multitable": - widget = FormMultiTable( - config_key=field["config_key"], - fields=field.get("fields", {}), - validation_types=field.get("validation", []), - transform=field.get("transform") - ) - elif field["type"] == "keyvaluepairs": - widget = FormKeyValuePairs( - config_key=field["config_key"], - validation_types=field.get("validation", []), - transform=field.get("transform") - ) - else: - widget = FormEdit( - config_key=field["config_key"], - caption="", - edit_text=field.get("default", ""), - placeholder=field.get("placeholder", ""), - validation_types=field.get("validation", []), - transform=field.get("transform") - ) - - label = field.get("label", "") - if not label: - label = " ".join(word.capitalize() for word in field["config_key"].split('_')) + ": " - - self.fields[field["config_key"]] = { - 'label': label, - 'widget': widget - } - - def _initialize_additional_fields(self, config): - for field in config: - if isinstance(field, dict) and "additional_options" in field: - for option in field["additional_options"]: - if option["type"] == "checkbox": - widget = FormCheckbox( - config_key=option["config_key"], - label=option.get("label", ""), - state=option.get("default", False), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - elif option["type"] == "dropdown": - widget = FormDropdown( - config_key=option["config_key"], - label=option.get("label", ""), - options=option["options"], - default=option.get("default"), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - elif option["type"] == "multilist": - widget = FormMultiList( - config_key=option["config_key"], - placeholder=option.get("placeholder", ""), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - else: - widget = FormEdit( - config_key=option["config_key"], - caption="", - edit_text=str(option.get("default", "")), - placeholder=option.get("placeholder", ""), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - - label = option.get("label", "") - if not label: - label = " ".join(word.capitalize() for word in option["config_key"].split('_')) + ": " - - self.additional_fields[option["config_key"]] = { - 'label': label, - 'widget': widget, - 'type': option["type"] - } - - def _initialize_common_fields(self): - if self.parent.app.rns.transport_enabled(): - # Transport mode options - COMMON_INTERFACE_OPTIONS.extend([ - { - "config_key": "outgoing", - "type": "checkbox", - "label": "Allow outgoing traffic", - "default": True, - "validation": [], - "transform": lambda x: bool(x) - }, - { - "config_key": "mode", - "type": "dropdown", - "label": "Interface Mode: ", - "options": ["full", "gateway", "access_point", "roaming", "boundary"], - "default": "full", - "validation": [], - "transform": lambda x: x - }, - { - "config_key": "announce_cap", - "type": "edit", - "label": "Announce Cap: ", - "placeholder": "Default: 2.0", - "default": "", - "validation": ["float"], - "transform": lambda x: float(x) if x.strip() else 2.0 - } - ]) - - for option in COMMON_INTERFACE_OPTIONS: - if option["type"] == "checkbox": - widget = FormCheckbox( - config_key=option["config_key"], - label=option["label"], - state=option.get("default", False), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - elif option["type"] == "dropdown": - widget = FormDropdown( - config_key=option["config_key"], - label=option["label"], - options=option["options"], - default=option.get("default"), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - else: - widget = FormEdit( - config_key=option["config_key"], - caption="", - edit_text=str(option.get("default", "")), - placeholder=option.get("placeholder", ""), - validation_types=option.get("validation", []), - transform=option.get("transform") - ) - - self.common_fields[option["config_key"]] = { - 'label': option["label"], - 'widget': widget, - 'type': option["type"] - } - - def _on_rnode_field_change(self, widget, new_value): - if hasattr(self, 'rnode_calculator') and self.calculator_visible: - self.rnode_calculator.update_calculation() - - def _build_form_layout(self, iface_fields): - pile_items = [] - pile_items.append(urwid.Text( - ("form_title", f"Add new {_get_interface_icon(self.parent.glyphset, self.iface_type)} {self.iface_type}"), - align="center")) - pile_items.append(urwid.Divider("─")) - - for key in ["name"] + [f["config_key"] for f in iface_fields]: - field = self.fields[key] - widget = field["widget"] - - # Special case for multitable and keyvaluepairs - they already have their own layout - if isinstance(widget, (FormMultiTable, FormKeyValuePairs)): - pile_items.append(urwid.Text(("key", field["label"]), align="left")) - pile_items.append(widget) - pile_items.append(urwid.Padding(widget.error_widget, left=2)) - continue - - field_pile = urwid.Pile([ - urwid.Columns([ - (26, urwid.Text(("key", field["label"]), align="right")), - widget, - ]), - urwid.Padding(widget.error_widget, left=24) - ]) - - if self.iface_type in ["RNodeInterface", "RNodeMultiInterface", "SerialInterface", "AX25KISSInterface", - "KISSInterface"] and key == "port": - refresh_btn = urwid.Button("Refresh Ports", on_press=self.refresh_ports) - refresh_btn = urwid.AttrMap(refresh_btn, "button_normal", focus_map="button_focus") - refresh_row = urwid.Padding(refresh_btn, left=26, width=20) - field_pile.contents.append((refresh_row, field_pile.options())) - self.port_pile = field_pile - - pile_items.append(field_pile) - - self.more_options_visible = False - self.more_options_button = urwid.Button("Show more options", on_press=self.toggle_more_options) - self.more_options_button = urwid.AttrMap(self.more_options_button, "button_normal", focus_map="button_focus") - self.more_options_widget = urwid.Pile([]) - - self.ifac_options_visible = False - self.ifac_options_button = urwid.Button("Show IFAC options", on_press=self.toggle_ifac_options) - self.ifac_options_button = urwid.AttrMap(self.ifac_options_button, "button_normal", focus_map="button_focus") - self.ifac_options_widget = urwid.Pile([]) - - if self.iface_type in ["RNodeInterface"]: - self.calculator_button = urwid.Button("Show On-Air Calculations", on_press=self.toggle_calculator) - self.calculator_button = urwid.AttrMap(self.calculator_button, "button_normal", focus_map="button_focus") - - save_btn = urwid.Button("Save", on_press=self.on_save) - back_btn = urwid.Button("Cancel", on_press=self.on_back) - button_row = urwid.Columns([ - (urwid.WEIGHT, 0.45, save_btn), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, back_btn), - ]) - - pile_items.extend([ - urwid.Divider(), - self.more_options_button, - self.more_options_widget, - ]) - if self.iface_type in ["RNodeInterface"]: - self.rnode_calculator = RNodeCalculator(self) - self.calculator_visible = False - self.calculator_widget = urwid.Pile([]) - pile_items.extend([ - self.calculator_button, - self.calculator_widget, - ]) - pile_items.extend([ - urwid.Divider("─"), - button_row, - ]) - - return pile_items - - def toggle_more_options(self, button): - if self.more_options_visible: - self.more_options_widget.contents = [] - button.base_widget.set_label("Show more options") - self.more_options_visible = False - else: - pile_contents = [] - - if self.additional_fields: - for key, field in self.additional_fields.items(): - widget = field['widget'] - - if field['type'] == "checkbox": - centered_widget = urwid.Columns([ - ('weight', 1, urwid.Text("")), - ('pack', widget), - ('weight', 1, urwid.Text("")) - ]) - field_pile = urwid.Pile([ - centered_widget, - urwid.Padding(widget.error_widget, left=24) - ]) - else: - field_pile = urwid.Pile([ - urwid.Columns([ - (26, urwid.Text(("key", field["label"]), align="right")), - widget - ]), - urwid.Padding(widget.error_widget, left=24) - ]) - - pile_contents.append(field_pile) - - if self.additional_fields and self.common_fields: - pile_contents.append(urwid.Divider("─")) - - if self.common_fields: - for key, field in self.common_fields.items(): - widget = field['widget'] - - if field['type'] == "checkbox": - centered_widget = urwid.Columns([ - ('weight', 1, urwid.Text("")), - ('pack', widget), - ('weight', 1, urwid.Text("")) - ]) - field_pile = urwid.Pile([ - centered_widget, - urwid.Padding(widget.error_widget, left=24) - ]) - else: - field_pile = urwid.Pile([ - urwid.Columns([ - (26, urwid.Text(("key", field["label"]), align="right")), - widget - ]), - urwid.Padding(widget.error_widget, left=24) - ]) - - pile_contents.append(field_pile) - - if pile_contents: - self.more_options_widget.contents = [(w, self.more_options_widget.options()) for w in pile_contents] - else: - self.more_options_widget.contents = [( - urwid.Text("No additional options available", align="center"), - self.more_options_widget.options() - )] - - button.base_widget.set_label("Hide more options") - self.more_options_visible = True - - def toggle_ifac_options(self, button): - if self.ifac_options_visible: - self.ifac_options_widget.contents = [] - button.base_widget.set_label("Show IFAC options") - self.ifac_options_visible = False - else: - dummy = urwid.Text("IFAC (Interface Access Codes)", align="left") - self.ifac_options_widget.contents = [(dummy, self.more_options_widget.options())] - button.base_widget.set_label("Hide IFAC options") - self.ifac_options_visible = True - - def toggle_calculator(self, button): - if self.calculator_visible: - self.calculator_widget.contents = [] - button.base_widget.set_label("Show On-Air Calculations") - self.calculator_visible = False - else: - calculator_contents = [self.rnode_calculator] - - self.calculator_widget.contents = [(w, self.calculator_widget.options()) for w in calculator_contents] - - self.rnode_calculator.update_calculation() - - button.base_widget.set_label("Hide On-Air Calculations") - self.calculator_visible = True - - def refresh_ports(self, button): - if self.port_pile is not None: - # Get fresh port config - port_field = get_port_field() - - if port_field["type"] == "dropdown": - widget = FormDropdown( - config_key=port_field["config_key"], - label=port_field["label"], - options=port_field["options"], - default=port_field.get("default"), - validation_types=port_field.get("validation", []), - transform=port_field.get("transform") - ) - else: - widget = FormEdit( - config_key=port_field["config_key"], - caption="", - edit_text=port_field.get("default", ""), - placeholder=port_field.get("placeholder", ""), - validation_types=port_field.get("validation", []), - transform=port_field.get("transform") - ) - - self.fields["port"] = { - 'label': port_field["label"], - 'widget': widget - } - - columns = urwid.Columns([ - (26, urwid.Text(("key", port_field["label"]), align="right")), - widget - ]) - self.port_pile.contents[0] = (columns, self.port_pile.options()) - - self.port_pile.contents[1] = (urwid.Padding(widget.error_widget, left=24), self.port_pile.options()) - - def validate_all(self): - all_valid = True - - # validate main fields - for field in self.fields.values(): - if not field["widget"].validate(): - all_valid = False - - # validate additional iface fields - for field in self.additional_fields.values(): - if not field["widget"].validate(): - all_valid = False - - # validate common fields - for field in self.common_fields.values(): - if not field["widget"].validate(): - all_valid = False - - return all_valid - - def on_save(self, button): - all_valid = self.validate_all() - - name = self.fields['name']["widget"].get_value() or "Untitled interface" - - existing_interfaces = self.parent.app.rns.config['interfaces'] - if name in existing_interfaces: - self.fields['name']["widget"].error = f"Interface name '{name}' already exists" - self.fields['name']["widget"].error_widget.set_text(("error", self.fields['name']["widget"].error)) - all_valid = False - - if not all_valid: - return - - if self.iface_type == "CustomInterface": - custom_type = self.fields.get('type', {}).get('widget').get_value() - interface_config = { - "type": custom_type, - "interface_enabled": True - } - else: - interface_config = { - "type": self.iface_type, - "interface_enabled": True - } - - for field_key, field in self.fields.items(): - if field_key not in ["name", "custom_parameters", "type"]: - widget = field["widget"] - value = widget.get_value() - - if field_key == "subinterfaces" and self.iface_type == "RNodeMultiInterface" and isinstance(value, - dict): - for subname, subconfig in value.items(): - interface_config[f"{subname}"] = subconfig - elif value is not None and value != "": - interface_config[widget.config_key] = value - - if self.iface_type == "CustomInterface" and "custom_parameters" in self.fields: - custom_params = self.fields["custom_parameters"]["widget"].get_value() - if isinstance(custom_params, dict): - for param_key, param_value in custom_params.items(): - interface_config[param_key] = param_value - - for field_key, field in self.additional_fields.items(): - widget = field["widget"] - value = widget.get_value() - if value is not None and value != "": - interface_config[widget.config_key] = value - - for field_key, field in self.common_fields.items(): - widget = field["widget"] - value = widget.get_value() - if value is not None and value != "": - interface_config[widget.config_key] = value - - try: - interfaces = self.parent.app.rns.config['interfaces'] - interfaces[name] = interface_config - self.parent.app.rns.config.write() - - display_type = custom_type if self.iface_type == "CustomInterface" else self.iface_type - - new_item = SelectableInterfaceItem( - parent=self.parent, - name=name, - is_connected=False, # will always be false until restart - is_enabled=True, - iface_type=display_type, - tx=0, - rx=0, - icon=_get_interface_icon(self.parent.glyphset, display_type), - iface_options=interface_config - ) - - self.parent.interface_items.append(new_item) - self.parent._rebuild_list() - - self.show_message(f"Interface {name} added. Restart NomadNet to start using this interface") - - except Exception as e: - print(f"Error saving interface: {str(e)}") - self.show_message(f"Error: {str(e)}", title="Error") - - def on_back(self, button): - self.parent.switch_to_list() - - def show_message(self, message, title="Notice"): - def dismiss_dialog(button): - self.parent.switch_to_list() - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text(message, align="center"), - urwid.Divider(), - urwid.Button("OK", on_press=dismiss_dialog) - ]), - title=title - ) - - overlay = urwid.Overlay( - dialog, - self.parent.interfaces_display, - align='center', - width=100, - valign='middle', - height=8, - min_width=1, - min_height=1 - ) - - self.parent.widget = overlay - self.parent.app.ui.main_display.update_active_sub_display() - - -class EditInterfaceView(AddInterfaceView): - def __init__(self, parent, iface_name): - self.parent = parent - self.iface_name = iface_name - - self.interface_config = parent.app.rns.config['interfaces'][iface_name] - config_type = self.interface_config.get("type", "Unknown") - - # check if this is a custom interface type - known_types = list(INTERFACE_FIELDS.keys()) - if config_type not in known_types: - self.original_type = config_type - self.iface_type = "CustomInterface" - else: - self.original_type = None - self.iface_type = config_type - - super().__init__(parent, self.iface_type) - - self.overlay.top_w.title_widget.set_text(f"Edit Interface: {iface_name}") - - self._populate_form_fields() - - def _populate_form_fields(self): - self.fields['name']['widget'].edit_text = self.iface_name - - if self.original_type and self.iface_type == "CustomInterface": - if "type" in self.fields: - self.fields["type"]["widget"].edit_text = self.original_type - - if "custom_parameters" in self.fields: - custom_params = {} - standard_keys = ["type", "interface_enabled", "enabled", "description", - "network_name", "bitrate", "passphrase", "ifac_size", - "mode", "outgoing", "announce_cap"] - - for key, value in self.interface_config.items(): - if key not in standard_keys: - custom_params[key] = value - - self.fields["custom_parameters"]["widget"].set_value(custom_params) - - for key, field in self.fields.items(): - if key not in ['name', 'type', 'custom_parameters']: - widget = field['widget'] - - if key == "subinterfaces" and isinstance(widget, FormMultiTable): - self._populate_subinterfaces(widget) - continue - - if key in self.interface_config: - value = self.interface_config[key] - - if key == 'frequency': - value = float(value) / 1000000 - value = f"{value:.6f}".rstrip('0').rstrip('.') if '.' in f"{value:.6f}" else f"{value}" - - self._set_field_value(widget, value) - - for key, field in self.additional_fields.items(): - if key in self.interface_config: - self._set_field_value(field['widget'], self.interface_config[key]) - - for key, field in self.common_fields.items(): - if key in self.interface_config: - self._set_field_value(field['widget'], self.interface_config[key]) - - def _set_field_value(self, widget, value): - if hasattr(widget, 'edit_text'): - widget.edit_text = str(value) - elif hasattr(widget, 'set_state'): - checkbox_state = value if isinstance(value, bool) else value.strip().lower() not in ( - 'false', 'off', 'no', '0') - widget.set_state(checkbox_state) - elif isinstance(widget, FormDropdown): - str_value = str(value) - if str_value in widget.options: - widget.selected = str_value - widget.main_button.base_widget.set_text(str_value) - else: - # Try to match after transform - for opt in widget.options: - try: - if widget.transform(opt) == value: - widget.selected = opt - widget.main_button.base_widget.set_text(opt) - break - except: - pass - elif isinstance(widget, FormMultiList): - self._populate_multilist(widget, value) - - def _populate_multilist(self, widget, value): - items = [] - if isinstance(value, str): - items = [item.strip() for item in value.split(',') if item.strip()] - elif isinstance(value, list): - items = value - - while len(widget.entries) > 1: - widget.remove_entry(None, widget.entries[-1]) - - if items: - first_entry = widget.entries[0] - first_edit = first_entry.contents[0][0] - if len(items) > 0: - first_edit.edit_text = items[0] - - for i in range(1, len(items)): - widget.add_entry(None) - entry = widget.entries[i] - edit_widget = entry.contents[0][0] - edit_widget.edit_text = items[i] - - def _populate_subinterfaces(self, widget): - subinterfaces = {} - - for key, value in self.interface_config.items(): - if isinstance(value, dict): - if key.startswith('[[[') and key.endswith(']]]'): - clean_key = key[3:-3] # removes [[[...]]] - subinterfaces[clean_key] = value - elif key not in ["type", "interface_enabled", "enabled", "port", - "id_callsign", "id_interval"]: - subinterfaces[key] = value - - if subinterfaces: - widget.set_value(subinterfaces) - - def on_save(self, button): - if not self.validate_all(): - return - - new_name = self.fields['name']["widget"].get_value() or self.iface_name - - if new_name != self.iface_name and new_name in self.parent.app.rns.config['interfaces']: - self.fields['name']["widget"].error = f"Interface name '{new_name}' already exists" - self.fields['name']["widget"].error_widget.set_text(("error", self.fields['name']["widget"].error)) - return - - if self.iface_type == "CustomInterface": - interface_type = self.fields.get('type', {}).get('widget').get_value() - else: - interface_type = self.iface_type - - updated_config = { - "type": interface_type, - "interface_enabled": True - } - - for field_key, field in self.fields.items(): - if field_key not in ["name", "custom_parameters", "type", "subinterfaces"]: - widget = field["widget"] - value = widget.get_value() - if value is not None and value != "": - updated_config[widget.config_key] = value - - if self.iface_type == "CustomInterface" and "custom_parameters" in self.fields: - custom_params = self.fields["custom_parameters"]["widget"].get_value() - if isinstance(custom_params, dict): - for param_key, param_value in custom_params.items(): - updated_config[param_key] = param_value - - elif self.iface_type == "RNodeMultiInterface" and "subinterfaces" in self.fields: - subinterfaces = self.fields["subinterfaces"]["widget"].get_value() - for subname, subconfig in subinterfaces.items(): - updated_config[subname] = subconfig - - for field_key, field in self.additional_fields.items(): - widget = field["widget"] - value = widget.get_value() - if value is not None and value != "": - updated_config[widget.config_key] = value - - for field_key, field in self.common_fields.items(): - widget = field["widget"] - value = widget.get_value() - if value is not None and value != "": - updated_config[widget.config_key] = value - - try: - interfaces = self.parent.app.rns.config['interfaces'] - - if new_name != self.iface_name: - del interfaces[self.iface_name] - interfaces[new_name] = updated_config - - for i, item in enumerate(self.parent.interface_items): - if item.name == self.iface_name: - self.parent.interface_items[i].name = new_name - break - else: - interfaces[self.iface_name] = updated_config - - self.parent.app.rns.config.write() - - display_type = interface_type - - for item in self.parent.interface_items: - if item.name == new_name: - item.iface_type = display_type - break - - self.parent._rebuild_list() - self.show_message(f"Interface {new_name} updated. Restart NomadNet for these changes to take effect") - - except Exception as e: - print(f"Error saving interface: {str(e)}") - self.show_message(f"Error updating interface: {str(e)}", title="Error") - - -class ShowInterface(urwid.WidgetWrap): - def __init__(self, parent, iface_name): - self.parent = parent - self.iface_name = iface_name - self.started = False - self.g = self.parent.app.ui.glyphs - - # get config - self.interface_config = self.parent.app.rns.config['interfaces'][iface_name] - iface_type = self.interface_config.get("type", "Unknown") - - self.parent.shortcuts_display.set_show_interface_shortcuts() - - self.config_rows = [] - - screen_cols, _ = _get_cols_rows() - margin = 22 - if screen_cols >= 145: - self.history_length = screen_cols//2-margin - else: - self.history_length = screen_cols-(margin+2) - - # get interface stats - interface_stats = self.parent.app.rns.get_interface_stats() - stats_lookup = {iface['short_name']: iface for iface in interface_stats['interfaces']} - self.stats = stats_lookup.get(iface_name, {}) - - self.tx = self.stats.get("txb", 0) - self.rx = self.stats.get("rxb", 0) - self.is_connected = self.stats.get("status", False) - self.is_enabled = (str(self.interface_config.get("enabled")).lower() != 'false' and - str(self.interface_config.get("interface_enabled")).lower() != 'false') - - header_content = [ - urwid.Text(("interface_title", f"Interface: {iface_name}"), align="center"), - urwid.Divider("=") - ] - header = urwid.Pile(header_content) - - self.edit_button = urwid.Button("Edit", on_press=self.on_edit) - self.back_button = urwid.Button("Back", on_press=self.on_back) - - self.toggle_button = urwid.Button( - "Disable" if self.is_enabled else "Enable", - on_press=self.on_toggle_enabled - ) - - button_row = urwid.Columns([ - (urwid.WEIGHT, 0.3, self.back_button), - (urwid.WEIGHT, 0.05, urwid.Text("")), - (urwid.WEIGHT, 0.3, self.toggle_button), - (urwid.WEIGHT, 0.05, urwid.Text("")), - (urwid.WEIGHT, 0.3, self.edit_button), - ]) - - footer_content = [ - urwid.Divider("="), - button_row - ] - footer = urwid.Pile(footer_content) - - # status widgets - self.status_text = urwid.Text(("connected_status" if self.is_enabled else "disconnected_status", - "Enabled" if self.is_enabled else "Disabled")) - - self.status_indicator = urwid.Text(("connected_status" if self.is_enabled else "disconnected_status", - self.parent.g['selected'] if self.is_enabled else self.parent.g[ - 'unselected'])) - - self.connection_text = urwid.Text(("connected_status" if self.is_connected else "disconnected_status", - "Connected" if self.is_connected else "Disconnected")) - - self.info_rows = [ - urwid.Columns([ - (10, urwid.Text(("key", "Type:"))), - urwid.Text(("value", f"{_get_interface_icon(self.parent.glyphset, iface_type)} {iface_type}")), - ]), - urwid.Columns([ - (10, urwid.Text(("key", "Status:"))), - (4, self.status_indicator), - (8, self.status_text), - (3, urwid.Text(" | ")), - self.connection_text, - ]), - urwid.Divider("-") - ] - - self.tx_text = urwid.Text(("value", format_bytes(self.tx))) - self.rx_text = urwid.Text(("value", format_bytes(self.rx))) - - self.stat_row = urwid.Columns([ - (10, urwid.Text(("key", "TX:"))), - (15, self.tx_text), - (10, urwid.Text(("key", "RX:"))), - self.rx_text, - ]) - - self.info_rows.append(self.stat_row) - self.info_rows.append(urwid.Divider("-")) - - self.bandwidth_chart = InterfaceBandwidthChart(history_length=self.history_length, glyphset=self.parent.glyphset) - self.bandwidth_chart.update(self.rx, self.tx) - - self.rx_chart_text = urwid.Text("Loading RX data...", align='left') - self.tx_chart_text = urwid.Text("Loading TX data...", align='left') - self.rx_peak_text = urwid.Text("Peak: 0 B/s", align='right') - self.tx_peak_text = urwid.Text("Peak: 0 B/s", align='right') - - self.rx_box = urwid.LineBox( - urwid.Pile([ - urwid.AttrMap(self.rx_chart_text, "rx"), - self.rx_peak_text - ]), - title="RX Traffic (60s)" - ) - - self.tx_box = urwid.LineBox( - urwid.Pile([ - urwid.AttrMap(self.tx_chart_text, "tx"), - self.tx_peak_text - ]), - title="TX Traffic (60s)" - ) - - self.horizontal_charts = urwid.Columns([ - (urwid.WEIGHT, 1, self.rx_box), - (urwid.WEIGHT, 1, self.tx_box) - ]) - - self.vertical_charts = urwid.Pile([ - self.rx_box, - self.tx_box - ]) - - self.disconnected_message = urwid.Filler( - urwid.Text(("disconnected_status", - "Charts not available - Interface is not connected"), - align="center"), - valign="top" - ) - self.disconnected_box = urwid.LineBox(self.disconnected_message, title="Bandwidth Charts") - - self.charts_widget = self.vertical_charts - self.is_horizontal = False - - screen_cols, _ = _get_cols_rows() - # RNS.log(screen_cols) - if screen_cols >= 145: - self.charts_widget = self.horizontal_charts - self.is_horizontal = True - - if not self.is_connected: - self.charts_widget = self.disconnected_box - - connection_params = [] - radio_params = [] - network_params = [] - ifac_params = [] - other_params = [] - - # Sort parameters into groups - for key, value in self.interface_config.items(): - # skip empty - if value is None or value == "": - continue - - # Skip these keys as their shown elsewhere - if key in ["type", "interface_enabled", "enabled", 'selected_interface_mode', 'name']: - continue - - # Connection parameters - elif key in ["port", "listen_ip", "listen_port", "target_host", "target_port", "device"]: - connection_params.append((key, value)) - - # Radio parameters - elif key in ["frequency", "bandwidth", "spreadingfactor", "codingrate", "txpower"]: - radio_params.append((key, value)) - - # Network parameters - elif key in ["network_name", "bitrate", "peers", "group_id", "multicast_address_type", - "discovery_scope", "announce_cap", "mode"]: - network_params.append((key, value)) - - # IFAC parameters - elif key in ["passphrase", "ifac_size", "ifac_netname", "ifac_netkey"]: - ifac_params.append((key, value)) - - else: - other_params.append((key, value)) - - def create_param_row(key, value): - if isinstance(value, bool): - value_str = "Yes" if value else "No" - elif key == "frequency": - int_value = int(value) - value_str = f"{int_value / 1000000:.3f} MHz" - elif key == "bandwidth": - int_value = int(value) - value_str = f"{int_value / 1000:.1f} kHz" - elif key == "passphrase": - value_str = len(value)*"*" - else: - value_str = str(value) - # format display keys: "listen_port" => Listen Port - display_key = key.replace('_', ' ').title() - - return urwid.Columns([ - (18, urwid.Text(("key", f"{display_key}:"))), - urwid.Text(("value", value_str)), - ]) - - if connection_params: - connection_params.sort(key=lambda x: x[0]) - self.config_rows.append(urwid.Text(("interface_title", "Connection Parameters"), align="left")) - for key, value in connection_params: - self.config_rows.append(create_param_row(key, value)) - self.config_rows.append(urwid.Divider("-")) - - if radio_params: - radio_params.sort(key=lambda x: x[0]) - self.config_rows.append(urwid.Text(("interface_title", "Radio Parameters"), align="left")) - for key, value in radio_params: - self.config_rows.append(create_param_row(key, value)) - self.config_rows.append(urwid.Divider("-")) - - if network_params: - network_params.sort(key=lambda x: x[0]) - self.config_rows.append(urwid.Text(("interface_title", "Network Parameters"), align="left")) - for key, value in network_params: - self.config_rows.append(create_param_row(key, value)) - self.config_rows.append(urwid.Divider("-")) - - if ifac_params: - ifac_params.sort(key=lambda x: x[0]) - self.config_rows.append(urwid.Text(("interface_title", "IFAC Parameters"), align="left")) - for key, value in ifac_params: - self.config_rows.append(create_param_row(key, value)) - self.config_rows.append(urwid.Divider("-")) - - if other_params: - other_params.sort(key=lambda x: x[0]) - self.config_rows.append(urwid.Text(("interface_title", "Additional Parameters"), align="left")) - for key, value in other_params: - self.config_rows.append(create_param_row(key, value)) - self.config_rows.append(urwid.Divider("-")) - - if not self.config_rows: - self.config_rows.append(urwid.Text("No additional parameters", align="center")) - - body_content = [] - body_content.extend(self.info_rows) - body_content.append( - self.charts_widget) - body_content.append(urwid.Divider("-")) - body_content.extend(self.config_rows) - - body_pile = urwid.Pile(body_content) - body_padding = urwid.Padding(body_pile, left=2, right=2) - - body = urwid.ListBox(urwid.SimpleListWalker([body_padding])) - - self.frame = urwid.Frame( - body=body, - header=header, - footer=footer - ) - - self.content_box = urwid.LineBox(self.frame) - - super().__init__(self.content_box) - - def update_status_display(self): - if self.is_enabled: - self.status_indicator.set_text(("connected_status", self.parent.g['selected'])) - self.status_text.set_text(("connected_status", "Enabled")) - else: - self.status_indicator.set_text(("disconnected_status", self.parent.g['unselected'])) - self.status_text.set_text(("disconnected_status", "Disabled")) - - def update_connection_display(self, is_connected): - old_connection_state = self.is_connected - self.is_connected = is_connected - - self.connection_text.set_text(("connected_status" if self.is_connected else "disconnected_status", - "Connected" if self.is_connected else "Disconnected")) - - if old_connection_state != self.is_connected: - body_pile = self.frame.body.body[0].original_widget - - chart_index = None - for i, (widget, options) in enumerate(body_pile.contents): - if (widget == self.horizontal_charts or - widget == self.vertical_charts or - widget == self.disconnected_box): - chart_index = i - break - - if chart_index is not None: - if self.is_connected: - new_widget = self.horizontal_charts if self.is_horizontal else self.vertical_charts - if not self.started: - self.start() - else: - new_widget = self.disconnected_box - self.started = False - - body_pile.contents[chart_index] = (new_widget, body_pile.options()) - - def on_toggle_enabled(self, button): - action = "disable" if self.is_enabled else "enable" - - def on_confirm_yes(confirm_button): - self.parent.app.ui.main_display.frame.body = self.parent.app.ui.main_display.sub_displays.active().widget - - self.is_enabled = not self.is_enabled - - self.toggle_button.set_label("Disable" if self.is_enabled else "Enable") - - if "interface_enabled" in self.interface_config: - self.interface_config["interface_enabled"] = self.is_enabled - else: - self.interface_config["enabled"] = self.is_enabled - - try: - interfaces = self.parent.app.rns.config['interfaces'] - - interfaces[self.iface_name] = self.interface_config - - self.parent.app.rns.config.write() - - self.update_status_display() - - for item in self.parent.interface_items: - if item.name == self.iface_name: - item.is_enabled = self.is_enabled - item.update_status_display() - - if hasattr(self.parent.app.ui, 'loop') and self.parent.app.ui.loop is not None: - self.parent.app.ui.loop.draw_screen() - - self.show_restart_required_message() - - except Exception as e: - self.show_error_message(f"Error updating interface: {str(e)}") - - def on_confirm_no(confirm_button): - self.parent.app.ui.main_display.frame.body = self.parent.app.ui.main_display.sub_displays.active().widget - - confirm_text = urwid.Text(( - "interface_title", - f"Are you sure you want to {action} the {self.iface_name} interface?" - ), align="center") - - yes_button = urwid.Button("Yes", on_press=on_confirm_yes) - no_button = urwid.Button("No", on_press=on_confirm_no) - - buttons_row = urwid.Columns([ - (urwid.WEIGHT, 0.45, yes_button), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, no_button), - ]) - - pile = urwid.Pile([ - confirm_text, - urwid.Divider(), - buttons_row - ]) - - dialog = DialogLineBox(pile, title="Confirm") - - overlay = urwid.Overlay( - dialog, - self.parent.app.ui.main_display.frame.body, - align='center', - width=50, - valign='middle', - height=7 - ) - - self.parent.app.ui.main_display.frame.body = overlay - - def show_restart_required_message(self): - - def dismiss_dialog(button): - self.parent.app.ui.main_display.frame.body = self.parent.app.ui.main_display.sub_displays.active().widget - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text( - f"Interface {self.iface_name} has been " + - ("enabled" if self.is_enabled else "disabled") + - ".\nRestart required for changes to take effect.", - align="center" - ), - urwid.Divider(), - urwid.Button("OK", on_press=dismiss_dialog) - ]), - title="Notice" - ) - - overlay = urwid.Overlay( - dialog, - self.parent.app.ui.main_display.frame.body, - align='center', - width=50, - valign='middle', - height=8 - ) - - self.parent.app.ui.main_display.frame.body = overlay - - def show_error_message(self, message): - - def dismiss_dialog(button): - self.parent.app.ui.main_display.frame.body = self.parent.app.ui.main_display.sub_displays.active().widget - - dialog = DialogLineBox( - urwid.Pile([ - urwid.Text(message, align="center"), - urwid.Divider(), - urwid.Button("OK", on_press=dismiss_dialog) - ]), - title="Error" - ) - - overlay = urwid.Overlay( - dialog, - self.parent.app.ui.main_display.frame.body, - align='center', - width=50, - valign='middle', - height=8 - ) - - self.parent.app.ui.main_display.frame.body = overlay - - def keypress(self, size, key): - if key == 'tab': - if self.frame.focus_position == 'body': - self.frame.focus_position = 'footer' - footer_pile = self.frame.footer - if isinstance(footer_pile, urwid.Pile): - footer_pile.focus_position = 1 # button row - button_row = footer_pile.contents[1][0] - if isinstance(button_row, urwid.Columns): - button_row.focus_position = 0 - return None - elif self.frame.focus_position == 'footer': - footer_pile = self.frame.footer - if isinstance(footer_pile, urwid.Pile): - button_row = footer_pile.contents[1][0] - if isinstance(button_row, urwid.Columns): - # If on first button (Back), move to Toggle button - if button_row.focus_position == 0: - button_row.focus_position = 2 # skip spacer - return None - # If on toggle button, move to Edit button - elif button_row.focus_position == 2: - button_row.focus_position = 4 - return None - # if on edit button wrap back to toggle button - elif button_row.focus_position == 4: - button_row.focus_position = 0 - return None - elif key == 'shift tab': - if self.frame.focus_position == 'footer': - self.frame.focus_position = 'body' - return None - elif self.frame.focus_position == 'footer': - footer_pile = self.frame.footer - if isinstance(footer_pile, urwid.Pile): - button_row = footer_pile.contents[1][0] - if isinstance(button_row, urwid.Columns): - if button_row.focus_position == 4: # edit button - button_row.focus_position = 2 # toggle button - return None - elif button_row.focus_position == 2: - button_row.focus_position = 0 # back button - return None - elif button_row.focus_position == 0: # back button - self.frame.focus_position = 'body' - return None - elif key == 'down': - if self.frame.focus_position == 'body': - result = super().keypress(size, key) - # if the key wasn't consumed, we're at the bottom - if result == 'down': - self.frame.focus_position = 'footer' - footer_pile = self.frame.footer - if isinstance(footer_pile, urwid.Pile): - footer_pile.focus_position = 1 # button row - button_row = footer_pile.contents[1][0] - if isinstance(button_row, urwid.Columns): - button_row.focus_position = 0 # focus on back button - return None - return result - elif key == 'up': - if self.frame.focus_position == 'footer': - self.frame.focus_position = 'body' - listbox = self.frame.body - if hasattr(listbox, 'body') and len(listbox.body) > 0: - listbox.focus_position = len(listbox.body) - 1 - return None - elif self.frame.focus_position == 'body': - result = super().keypress(size, key) - # if the key wasn't consumed, we're at the top - if result == 'up': - pass - return result - elif key == "h" and self.is_connected: # horizontal layout - if not self.is_horizontal: - self.switch_to_horizontal() - return None - elif key == "v" and self.is_connected: # vertical layout - if self.is_horizontal: - self.switch_to_vertical() - return None - - return super().keypress(size, key) - - def switch_to_horizontal(self): - if not self.is_connected: - return - - self.is_horizontal = True - - body_pile = self.frame.body.body[0].original_widget - for i, (widget, options) in enumerate(body_pile.contents): - if widget == self.vertical_charts: - body_pile.contents[i] = (self.horizontal_charts, options) - self.charts_widget = self.horizontal_charts - break - - def switch_to_vertical(self): - if not self.is_connected: - return - - self.is_horizontal = False - body_pile = self.frame.body.body[0].original_widget - for i, (widget, options) in enumerate(body_pile.contents): - if widget == self.horizontal_charts: - body_pile.contents[i] = (self.vertical_charts, options) - self.charts_widget = self.vertical_charts - break - - def start(self): - if not self.started and self.is_connected: - self.started = True - self.parent.app.ui.loop.set_alarm_in(1, self.update_bandwidth_charts) - - def update_bandwidth_charts(self, loop, user_data): - if not self.started: - return - - try: - interface_stats = self.parent.app.rns.get_interface_stats() - stats_lookup = {iface['short_name']: iface for iface in interface_stats['interfaces']} - stats = stats_lookup.get(self.iface_name, {}) - - tx = stats.get("txb", self.tx) - rx = stats.get("rxb", self.rx) - - new_connection_status = stats.get("status", False) - if new_connection_status != self.is_connected: - self.update_connection_display(new_connection_status) - - if not self.is_connected: - return - - self.tx_text.set_text(("value", format_bytes(tx))) - self.rx_text.set_text(("value", format_bytes(rx))) - - self.bandwidth_chart.update(rx, tx) - - rx_chart, tx_chart, peak_rx, peak_tx = self.bandwidth_chart.get_charts(height=8) - - self.rx_chart_text.set_text(rx_chart) - self.tx_chart_text.set_text(tx_chart) - self.rx_peak_text.set_text(f"Peak: {peak_rx}") - self.tx_peak_text.set_text(f"Peak: {peak_tx}") - - self.tx = tx - self.rx = rx - except Exception as e: - if not hasattr(self.parent, - 'disconnect_overlay') or self.parent.widget is not self.parent.disconnect_overlay: - dialog_text = urwid.Pile([ - urwid.Text(("disconnected_status", "(!) RNS Instance Disconnected"), align="center"), - urwid.Text("Waiting to Reconnect...", align="center") - ]) - dialog_content = urwid.Filler(dialog_text) - dialog_box = urwid.LineBox(dialog_content) - - self.parent.disconnect_overlay = urwid.Overlay( - dialog_box, - self, - align='center', - width=35, - valign='middle', - height=4 - ) - - self.parent.widget = self.parent.disconnect_overlay - self.parent.app.ui.main_display.update_active_sub_display() - self.started = False - finally: - if self.started: - loop.set_alarm_in(1, self.update_bandwidth_charts) - - def on_back(self, button): - self.started = False - self.parent.switch_to_list() - - def on_edit(self, button): - self.started = False - self.parent.switch_to_edit_interface(self.iface_name) - -### MAIN DISPLAY ### -class InterfaceDisplay: - def __init__(self, app): - self.app = app - self.started = False - self.interface_items = [] - self.glyphset = self.app.config["textui"]["glyphs"] - self.g = self.app.ui.glyphs - - self.terminal_cols, self.terminal_rows = _get_cols_rows() - self.iface_row_offset = 4 - self.list_rows = self.terminal_rows - self.iface_row_offset - - interfaces = app.rns.config['interfaces'] - processed_interfaces = {} - - for interface_name, interface in interfaces.items(): - interface_data = interface.copy() - - # handle sub-interfaces for RNodeMultiInterface - if interface_data.get("type") == "RNodeMultiInterface": - sub_interfaces = [] - for sub_name, sub_config in interface_data.items(): - if sub_name not in {"type", "port", "interface_enabled", "selected_interface_mode", - "configured_bitrate"}: - if isinstance(sub_config, dict): - sub_config["name"] = sub_name - sub_interfaces.append(sub_config) - - # add sub-interfaces to the main interface data - interface_data["sub_interfaces"] = sub_interfaces - - for sub in sub_interfaces: - del interface_data[sub["name"]] - - processed_interfaces[interface_name] = interface_data - - interface_stats = app.rns.get_interface_stats() - stats_lookup = {interface['short_name']: interface for interface in interface_stats['interfaces']} - # print(stats_lookup) - for interface_name, interface_data in processed_interfaces.items(): - # configobj false values - is_enabled = str(interface_data.get("enabled")).lower() not in ('false', 'off', 'no', '0') and str(interface_data.get("interface_enabled")).lower() not in ('false', 'off', 'no', '0') - - iface_type = interface_data.get("type", "Unknown") - icon = _get_interface_icon(self.glyphset, iface_type) - - stats_for_interface = stats_lookup.get(interface_name) - - if stats_for_interface: - tx = stats_for_interface.get("txb", 0) - rx = stats_for_interface.get("rxb", 0) - is_connected = stats_for_interface["status"] - else: - tx = 0 - rx = 0 - is_connected = False - - item = SelectableInterfaceItem( - parent=self, - name=interface_data.get("name", interface_name), - is_connected=is_connected, - is_enabled=is_enabled, - iface_type=iface_type, - tx=tx, - rx=rx, - icon=icon - ) - - self.interface_items.append(item) - - interface_header = urwid.Text(("interface_title", "Interfaces"), align="center") - if len(self.interface_items) == 0: - interface_header = urwid.Text( - ("interface_title", "No interfaces found. Press Ctrl + A to add a new interface "), align="center") - - - list_contents = [ - interface_header, - urwid.Divider(), - ] + self.interface_items - - self.list_walker = urwid.SimpleFocusListWalker(list_contents) - self.list_box = urwid.ListBox(self.list_walker) - - self.box_adapter = urwid.BoxAdapter(self.list_box, self.list_rows) - - - pile = urwid.Pile([self.box_adapter]) - self.interfaces_display = InterfaceFiller(pile, self.app) - self.shortcuts_display = InterfaceDisplayShortcuts(self.app) - self.widget = self.interfaces_display - - def start(self): - # started from Main.py - self.started = True - self.app.ui.loop.set_alarm_in(1, self.poll_stats) - self.app.ui.loop.set_alarm_in(5, self.check_terminal_size) - - def switch_to_edit_interface(self, iface_name): - self.edit_interface_view = EditInterfaceView(self, iface_name) - self.widget = self.edit_interface_view - self.app.ui.main_display.update_active_sub_display() - - def edit_selected_interface(self): - focus_widget, focus_position = self.box_adapter._original_widget.body.get_focus() - - if not isinstance(focus_widget, SelectableInterfaceItem): - return - - selected_item = focus_widget - interface_name = selected_item.name - - self.switch_to_edit_interface(interface_name) - - def check_terminal_size(self, loop, user_data): - new_cols, new_rows = _get_cols_rows() - - if new_rows != self.terminal_rows or new_cols != self.terminal_cols: - self.terminal_cols, self.terminal_rows = new_cols, new_rows - self.list_rows = self.terminal_rows - self.iface_row_offset - - self.box_adapter.height = self.list_rows - - loop.draw_screen() - - if self.started: - loop.set_alarm_in(5, self.check_terminal_size) - - def poll_stats(self, loop, user_data): - try: - if hasattr(self, 'disconnect_overlay') and self.widget is self.disconnect_overlay: - self.widget = self.interfaces_display - self.app.ui.main_display.update_active_sub_display() - - interface_stats = self.app.rns.get_interface_stats() - stats_lookup = {iface['short_name']: iface for iface in interface_stats['interfaces']} - for item in self.interface_items: - # use interface name as the key - stats_for_interface = stats_lookup.get(item.name) - if stats_for_interface: - tx = stats_for_interface.get("txb", 0) - rx = stats_for_interface.get("rxb", 0) - item.update_stats(tx, rx) - except Exception as e: - if not hasattr(self, 'disconnect_overlay') or self.widget is not self.disconnect_overlay: - dialog_text = urwid.Pile([ - urwid.Text(("disconnected_status", "(!) RNS Instance Disconnected"), align="center"), - urwid.Text(("Waiting to Reconnect..."), align="center") - ]) - dialog_content = urwid.Filler(dialog_text) - dialog_box = urwid.LineBox(dialog_content) - - self.disconnect_overlay = urwid.Overlay( - dialog_box, - self.interfaces_display, - align='center', - width=35, - valign='middle', - height=4 - ) - - if self.widget is self.interfaces_display: - self.widget = self.disconnect_overlay - self.app.ui.main_display.update_active_sub_display() - finally: - if self.started: - loop.set_alarm_in(1, self.poll_stats) - - def shortcuts(self): - return self.shortcuts_display - - def switch_to_show_interface(self, iface_name): - show_interface = ShowInterface(self, iface_name) - self.widget = show_interface - self.app.ui.main_display.update_active_sub_display() - - show_interface.start() - - def switch_to_list(self): - self.shortcuts_display.reset_shortcuts() - self.widget = self.interfaces_display - self._rebuild_list() - self.app.ui.main_display.update_active_sub_display() - - def add_interface(self): - dialog_widgets = [] - - def add_heading(txt): - dialog_widgets.append(urwid.Text(("interface_title", txt), align="left")) - - def add_option(label, value): - item = InterfaceOptionItem(self, label, value) - dialog_widgets.append(item) - - # Get the icons based on plain, unicode, nerdfont glyphset - network_icon = _get_interface_icon(self.glyphset, "AutoInterface") - rnode_icon = _get_interface_icon(self.glyphset, "RNodeInterface") - serial_icon = _get_interface_icon(self.glyphset, "SerialInterface") - other_icon = _get_interface_icon(self.glyphset, "PipeInterface") - - add_heading(f"{network_icon} IP Networks") - add_option("Auto Interface", "AutoInterface") - add_option("TCP Client Interface", "TCPClientInterface") - add_option("TCP Server Interface", "TCPServerInterface") - add_option("UDP Interface", "UDPInterface") - add_option("I2P Interface", "I2PInterface") - if PLATFORM_IS_LINUX: - add_option("Backbone Interface", "BackboneInterface") - - if PYSERIAL_AVAILABLE: - add_heading(f"{rnode_icon} RNodes") - add_option("RNode Interface", "RNodeInterface") - add_option("RNode Multi Interface", "RNodeMultiInterface") - - add_heading(f"{serial_icon} Hardware") - add_option("Serial Interface", "SerialInterface") - add_option("KISS Interface", "KISSInterface") - add_option("AX.25 KISS Interface", "AX25KISSInterface") - - add_heading(f"{other_icon} Other") - add_option("Pipe Interface", "PipeInterface") - add_option("Custom Interface", "CustomInterface") - - - listbox = urwid.ListBox(urwid.SimpleFocusListWalker(dialog_widgets)) - dialog = DialogLineBox(listbox, parent=self, title="Select Interface Type") - - overlay = urwid.Overlay( - dialog, - self.interfaces_display, - align='center', - width=('relative', 50), - valign='middle', - height=('relative', 50), - min_width=20, - min_height=15, - left=2, - right=2 - ) - self.widget = overlay - self.app.ui.main_display.update_active_sub_display() - - def switch_to_add_interface(self, iface_type): - self.add_interface_view = AddInterfaceView(self, iface_type) - self.widget = self.add_interface_view - self.app.ui.main_display.update_active_sub_display() - - def remove_selected_interface(self): - focus_widget, focus_position = self.box_adapter._original_widget.body.get_focus() - if not isinstance(focus_widget, SelectableInterfaceItem): - return - - selected_item = focus_widget - interface_name = selected_item.name - - def on_confirm_yes(button): - try: - if interface_name in self.app.rns.config['interfaces']: - del self.app.rns.config['interfaces'][interface_name] - self.app.rns.config.write() - - if selected_item in self.interface_items: - self.interface_items.remove(selected_item) - - self._rebuild_list() - self.dismiss_dialog() - - except Exception as e: - print(e) - - def on_confirm_no(button): - self.dismiss_dialog() - - confirm_text = urwid.Text(("interface_title", f"Remove interface {interface_name}?"), align="center") - yes_button = urwid.Button("Yes", on_press=on_confirm_yes) - no_button = urwid.Button("No", on_press=on_confirm_no) - - buttons_row = urwid.Columns([ - (urwid.WEIGHT, 0.45, yes_button), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, no_button), - ]) - - pile = urwid.Pile([ - confirm_text, - buttons_row - ]) - - dialog = DialogLineBox(pile, parent=self, title="?") - - overlay = urwid.Overlay( - dialog, - self.interfaces_display, - align='center', - width=('relative', 35), - valign='middle', - height=(5), - min_width=5, - left=2, - right=2 - ) - dialog.original_widget.focus_position = 1 # columns row - buttons_row = dialog.original_widget.contents[1][0] - buttons_row.focus_position = 2 # second button "No" - - self.widget = overlay - self.app.ui.main_display.update_active_sub_display() - - def dismiss_dialog(self): - self.widget = self.interfaces_display - self.app.ui.main_display.update_active_sub_display() - - def _rebuild_list(self): - interface_header = urwid.Text(("interface_title", f"Interfaces ({len(self.interface_items)})"), align="center") - if len(self.interface_items) == 0: - interface_header = urwid.Text(("interface_title", "No interfaces found. Press Ctrl + A to add a new interface "), align="center") - - new_list = [ - interface_header, - urwid.Divider(), - ] + self.interface_items - # RNS.log(f"items: {self.interface_items}") - - walker = urwid.SimpleFocusListWalker(new_list) - self.box_adapter._original_widget.body = walker - self.box_adapter._original_widget.focus_position = len(new_list) - 1 - - def open_config_editor(self): - import platform - - editor_cmd = self.app.config["textui"]["editor"] - - if platform.system() == "Darwin" and editor_cmd == "editor": - editor_cmd = "nano" - - editor_term = urwid.Terminal( - (editor_cmd, self.app.rns.configpath), - encoding='utf-8', - main_loop=self.app.ui.loop, - ) - - def quit_term(*args, **kwargs): - self.widget = self.interfaces_display - self.app.ui.main_display.update_active_sub_display() - self.app.ui.main_display.request_redraw() - - urwid.connect_signal(editor_term, 'closed', quit_term) - - editor_box = urwid.LineBox(editor_term, title="Editing RNS Config") - self.widget = editor_box - self.app.ui.main_display.update_active_sub_display() - self.app.ui.main_display.frame.focus_position = "body" - editor_term.change_focus(True) - -### SHORTCUTS ### -class InterfaceDisplayShortcuts: - def __init__(self, app): - self.app = app - self.default_shortcuts = "[C-a] Add Interface [C-e] Edit Interface [C-x] Remove Interface [Enter] Show Interface [C-w] Open Text Editor" - self.current_shortcuts = self.default_shortcuts - self.widget = urwid.AttrMap( - urwid.Text(self.current_shortcuts), - "shortcutbar" - ) - - def update_shortcuts(self, new_shortcuts): - self.current_shortcuts = new_shortcuts - self.widget.original_widget.set_text(new_shortcuts) - - def reset_shortcuts(self): - self.update_shortcuts(self.default_shortcuts) - - def set_show_interface_shortcuts(self): - show_shortcuts = "[Up/Down] Navigate [Tab] Switch Focus [h] Horizontal Charts [v] Vertical Charts " - self.update_shortcuts(show_shortcuts) - - def set_add_interface_shortcuts(self): - add_shortcuts = "[Up/Down] Navigate Fields [Enter] Select Option" - self.update_shortcuts(add_shortcuts) - - def set_edit_interface_shortcuts(self): - edit_shortcuts = "[Up/Down] Navigate Fields [Enter] Select Option" - self.update_shortcuts(edit_shortcuts) \ No newline at end of file diff --git a/nomadnet/ui/textui/Log.py b/nomadnet/ui/textui/Log.py index bea98ef..b38e4b3 100644 --- a/nomadnet/ui/textui/Log.py +++ b/nomadnet/ui/textui/Log.py @@ -1,11 +1,6 @@ -import os -import sys -import itertools -import mmap import urwid import nomadnet - class LogDisplayShortcuts(): def __init__(self, app): import urwid @@ -13,115 +8,31 @@ class LogDisplayShortcuts(): self.widget = urwid.AttrMap(urwid.Text(""), "shortcutbar") - class LogDisplay(): def __init__(self, app): + import urwid self.app = app + self.log_term = LogTerminal(self.app) self.shortcuts_display = LogDisplayShortcuts(self.app) - self.widget = None - - @property - def log_term(self): - return self.widget - - def show(self): - if self.widget is None: - self.widget = log_widget(self.app) - - def kill(self): - if self.widget is not None: - self.widget.terminate() - self.widget = None + self.widget = urwid.LineBox(self.log_term) def shortcuts(self): return self.shortcuts_display - class LogTerminal(urwid.WidgetWrap): def __init__(self, app): self.app = app self.log_term = urwid.Terminal( ("tail", "-fn50", self.app.logfilepath), encoding='utf-8', - escape_sequence="up", - main_loop=self.app.ui.loop, + escape_sequence="up" ) - self.widget = urwid.LineBox(self.log_term) - super().__init__(self.widget) - - def terminate(self): - self.log_term.terminate() + urwid.WidgetWrap.__init__(self, self.log_term) def keypress(self, size, key): if key == "up": - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" + nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") - return super(LogTerminal, self).keypress(size, key) - - -class LogTail(urwid.WidgetWrap): - def __init__(self, app): - self.app = app - self.log_tail = urwid.Text(tail(self.app.logfilepath, 50)) - self.log = urwid.Scrollable(self.log_tail) - self.log.set_scrollpos(-1) - self.log_scrollbar = urwid.ScrollBar(self.log) - # We have this here because ui.textui.Main depends on this field to kill it - self.log_term = None - - super().__init__(self.log_scrollbar) - - def terminate(self): - pass - - -def log_widget(app, platform=sys.platform): - if platform == "win32": - return LogTail(app) - else: - return LogTerminal(app) - -# https://stackoverflow.com/a/34029605/3713120 -def _tail(f_name, n, offset=0): - def skip_back_lines(mm: mmap.mmap, numlines: int, startidx: int) -> int: - '''Factored out to simplify handling of n and offset''' - for _ in itertools.repeat(None, numlines): - startidx = mm.rfind(b'\n', 0, startidx) - if startidx < 0: - break - return startidx - - # Open file in binary mode - with open(f_name, 'rb') as binf, mmap.mmap(binf.fileno(), 0, access=mmap.ACCESS_READ) as mm: - # len(mm) - 1 handles files ending w/newline by getting the prior line - startofline = skip_back_lines(mm, offset, len(mm) - 1) - if startofline < 0: - return [] # Offset lines consumed whole file, nothing to return - # If using a generator function (yield-ing, see below), - # this should be a plain return, no empty list - - endoflines = startofline + 1 # Slice end to omit offset lines - - # Find start of lines to capture (add 1 to move from newline to beginning of following line) - startofline = skip_back_lines(mm, n, startofline) + 1 - - # Passing True to splitlines makes it return the list of lines without - # removing the trailing newline (if any), so list mimics f.readlines() - # return mm[startofline:endoflines].splitlines(True) - # If Windows style \r\n newlines need to be normalized to \n - return mm[startofline:endoflines].replace(os.linesep.encode(sys.getdefaultencoding()), b'\n').splitlines(True) - - -def tail(f_name, n): - """ - Return the last n lines of a given file name, f_name. - Akin to `tail - ` - """ - def decode(b): - return b.decode(encoding) - - encoding = sys.getdefaultencoding() - lines = map(decode, _tail(f_name=f_name, n=n)) - return ''.join(lines) + return super(LogTerminal, self).keypress(size, key) \ No newline at end of file diff --git a/nomadnet/ui/textui/Main.py b/nomadnet/ui/textui/Main.py index 34d88c3..fe60363 100644 --- a/nomadnet/ui/textui/Main.py +++ b/nomadnet/ui/textui/Main.py @@ -1,10 +1,10 @@ import RNS +import time from .Network import * from .Conversations import * from .Directory import * from .Config import * -from .Interfaces import * from .Map import * from .Log import * from .Guide import * @@ -17,7 +17,6 @@ class SubDisplays(): self.conversations_display = ConversationsDisplay(self.app) self.directory_display = DirectoryDisplay(self.app) self.config_display = ConfigDisplay(self.app) - self.interface_display = InterfaceDisplay(self.app) self.map_display = MapDisplay(self.app) self.log_display = LogDisplay(self.app) self.guide_display = GuideDisplay(self.app) @@ -115,14 +114,8 @@ class MainDisplay(): self.sub_displays.active_display = self.sub_displays.config_display self.update_active_sub_display() - def show_interfaces(self, user_data): - self.sub_displays.active_display = self.sub_displays.interface_display - self.update_active_sub_display() - self.sub_displays.interface_display.start() - def show_log(self, user_data): self.sub_displays.active_display = self.sub_displays.log_display - self.sub_displays.log_display.show() self.update_active_sub_display() def show_guide(self, user_data): @@ -132,91 +125,49 @@ class MainDisplay(): def update_active_sub_display(self): self.frame.contents["body"] = (self.sub_displays.active().widget, None) self.update_active_shortcuts() - if self.sub_displays.active_display != self.sub_displays.log_display: - self.sub_displays.log_display.kill() def update_active_shortcuts(self): self.frame.contents["footer"] = (self.sub_displays.active().shortcuts().widget, None) - def request_redraw(self, extra_delay=0.0): - self.app.ui.loop.set_alarm_in(0.25+extra_delay, self.redraw_now) + def request_redraw(self): + self.app.ui.loop.set_alarm_in(0.25, self.redraw_now) def redraw_now(self, sender=None, data=None): - self.app.ui.loop.screen.clear() - #self.app.ui.loop.draw_screen() - - def start(self): - self.menu_display.start() + self.app.ui.loop.draw_screen() def quit(self, sender=None): - logterm_pid = None - if True or RNS.vendor.platformutils.is_android(): - if self.sub_displays.log_display != None and self.sub_displays.log_display.log_term != None: - if self.sub_displays.log_display.log_term.log_term != None: - logterm_pid = self.sub_displays.log_display.log_term.log_term.pid - if logterm_pid != None: - import os, signal - os.kill(logterm_pid, signal.SIGKILL) - raise urwid.ExitMainLoop class MenuColumns(urwid.Columns): def keypress(self, size, key): if key == "tab" or key == "down": - self.handler.frame.focus_position = "body" + self.handler.frame.set_focus("body") return super(MenuColumns, self).keypress(size, key) class MenuDisplay(): - UPDATE_INTERVAL = 2 - def __init__(self, app, handler): self.app = app - self.update_interval = MenuDisplay.UPDATE_INTERVAL - self.g = self.app.ui.glyphs + g = self.app.ui.glyphs - self.menu_indicator = urwid.Text("") - - menu_text = (urwid.PACK, self.menu_indicator) - button_network = (11, MenuButton("Network", on_press=handler.show_network)) - button_conversations = (17, MenuButton("Conversations", on_press=handler.show_conversations)) - button_directory = (13, MenuButton("Directory", on_press=handler.show_directory)) - button_map = (7, MenuButton("Map", on_press=handler.show_map)) - button_log = (7, MenuButton("Log", on_press=handler.show_log)) - button_config = (10, MenuButton("Config", on_press=handler.show_config)) - button_interfaces = (14, MenuButton("Interfaces", on_press=handler.show_interfaces)) - button_guide = (9, MenuButton("Guide", on_press=handler.show_guide)) - button_quit = (8, MenuButton("Quit", on_press=handler.quit)) + menu_text = ("pack", urwid.Text(g["decoration_menu"])) + button_network = (11, MenuButton("Network", on_press=handler.show_network)) + button_conversations = (17, MenuButton("Conversations", on_press=handler.show_conversations)) + button_directory = (13, MenuButton("Directory", on_press=handler.show_directory)) + button_map = (7, MenuButton("Map", on_press=handler.show_map)) + button_log = (7, MenuButton("Log", on_press=handler.show_log)) + button_config = (10, MenuButton("Config", on_press=handler.show_config)) + button_guide = (9, MenuButton("Guide", on_press=handler.show_guide)) + button_quit = (8, MenuButton("Quit", on_press=handler.quit)) # buttons = [menu_text, button_conversations, button_node, button_directory, button_map] if self.app.config["textui"]["hide_guide"]: - buttons = [menu_text, button_conversations, button_network, button_log, button_interfaces, button_config, button_quit] + buttons = [menu_text, button_conversations, button_network, button_log, button_config, button_quit] else: - buttons = [menu_text, button_conversations, button_network, button_log, button_interfaces, button_config, button_guide, button_quit] + buttons = [menu_text, button_conversations, button_network, button_log, button_config, button_guide, button_quit] columns = MenuColumns(buttons, dividechars=1) columns.handler = handler - self.update_display() - self.widget = urwid.AttrMap(columns, "menubar") - - def start(self): - self.update_display_job() - - def update_display_job(self, event = None, sender = None): - self.update_display() - self.app.ui.loop.set_alarm_in(self.update_interval, self.update_display_job) - - def update_display(self): - if self.app.has_unread_conversations(): - self.indicate_unread() - else: - self.indicate_normal() - - def indicate_normal(self): - self.menu_indicator.set_text(self.g["decoration_menu"]) - - def indicate_unread(self): - self.menu_indicator.set_text(self.g["unread_menu"]) diff --git a/nomadnet/ui/textui/Map.py b/nomadnet/ui/textui/Map.py index b2ef4dd..3d4a03d 100644 --- a/nomadnet/ui/textui/Map.py +++ b/nomadnet/ui/textui/Map.py @@ -15,7 +15,7 @@ class MapDisplay(): ]) self.shortcuts_display = MapDisplayShortcuts(self.app) - self.widget = urwid.Filler(pile, urwid.TOP) + self.widget = urwid.Filler(pile, 'top') def shortcuts(self): return self.shortcuts_display \ No newline at end of file diff --git a/nomadnet/ui/textui/MicronParser.py b/nomadnet/ui/textui/MicronParser.py index 70f9f0f..f9c5d59 100644 --- a/nomadnet/ui/textui/MicronParser.py +++ b/nomadnet/ui/textui/MicronParser.py @@ -1,9 +1,9 @@ import nomadnet import urwid -import random import time from urwid.util import is_mouse_press from urwid.text_layout import calc_coords +import re DEFAULT_FG_DARK = "ddd" DEFAULT_FG_LIGHT = "222" @@ -31,14 +31,20 @@ SYNTH_SPECS = {} SECTION_INDENT = 2 INDENT_RIGHT = 1 -def default_state(fg=None, bg=None): - if fg == None: fg = SELECTED_STYLES["plain"]["fg"] - if bg == None: bg = DEFAULT_BG +def markup_to_attrmaps(markup, url_delegate = None): + global SELECTED_STYLES + if nomadnet.NomadNetworkApp.get_shared_instance().config["textui"]["theme"] == nomadnet.ui.TextUI.THEME_DARK: + SELECTED_STYLES = STYLES_DARK + else: + SELECTED_STYLES = STYLES_LIGHT + + attrmaps = [] + state = { "literal": False, "depth": 0, - "fg_color": fg, - "bg_color": bg, + "fg_color": SELECTED_STYLES["plain"]["fg"], + "bg_color": DEFAULT_BG, "formatting": { "bold": False, "underline": False, @@ -48,25 +54,7 @@ def default_state(fg=None, bg=None): }, "default_align": "left", "align": "left", - "default_fg": fg, - "default_bg": bg, } - return state - -def markup_to_attrmaps(markup, url_delegate = None, fg_color=None, bg_color=None): - global SELECTED_STYLES - if nomadnet.NomadNetworkApp.get_shared_instance().config["textui"]["theme"] == nomadnet.ui.TextUI.THEME_DARK: - SELECTED_STYLES = STYLES_DARK - else: - SELECTED_STYLES = STYLES_LIGHT - - attrmaps = [] - - fgc = None; bgc = DEFAULT_BG - if bg_color != None: bgc = bg_color - if fg_color != None: fgc = fg_color - - state = default_state(fgc, bgc) # Split entire document into lines for # processing. @@ -74,19 +62,18 @@ def markup_to_attrmaps(markup, url_delegate = None, fg_color=None, bg_color=None for line in lines: if len(line) > 0: - display_widgets = parse_line(line, state, url_delegate) + display_widget = parse_line(line, state, url_delegate) else: - display_widgets = [urwid.Text("")] + display_widget = urwid.Text("") - if display_widgets != None and len(display_widgets) != 0: - for display_widget in display_widgets: - attrmap = urwid.AttrMap(display_widget, make_style(state)) - attrmaps.append(attrmap) + if display_widget != None: + attrmap = urwid.AttrMap(display_widget, make_style(state)) + attrmaps.append(attrmap) return attrmaps + def parse_line(line, state, url_delegate): - pre_escape = False if len(line) > 0: first_char = line[0] @@ -100,7 +87,6 @@ def parse_line(line, state, url_delegate): # Check if the command is an escape if first_char == "\\": line = line[1:] - pre_escape = True # Check for comments elif first_char == "#": @@ -138,7 +124,7 @@ def parse_line(line, state, url_delegate): heading_style = first_style output.insert(0, " "*left_indent(state)) - return [urwid.AttrMap(urwid.Text(output, align=state["align"]), heading_style)] + return urwid.AttrMap(urwid.Text(output, align=state["align"]), heading_style) else: return None else: @@ -151,85 +137,22 @@ def parse_line(line, state, url_delegate): else: divider_char = "\u2500" if state["depth"] == 0: - return [urwid.Divider(divider_char)] + return urwid.Divider(divider_char) else: - return [urwid.Padding(urwid.Divider(divider_char), left=left_indent(state), right=right_indent(state))] + return urwid.Padding(urwid.Divider(divider_char), left=left_indent(state), right=right_indent(state)) - output = make_output(state, line, url_delegate, pre_escape) + output = make_output(state, line, url_delegate) if output != None: - text_only = True - for o in output: - if not isinstance(o, tuple): - text_only = False - break - - if not text_only: - widgets = [] - for o in output: - if isinstance(o, tuple): - if url_delegate != None: - tw = LinkableText(o, align=state["align"], delegate=url_delegate) - tw.in_columns = True - else: - tw = urwid.Text(o, align=state["align"]) - widgets.append((urwid.PACK, tw)) - else: - if o["type"] == "field": - fw = o["width"] - fd = o["data"] - fn = o["name"] - fs = o["style"] - fmask = "*" if o["masked"] else None - f = urwid.Edit(caption="", edit_text=fd, align=state["align"], multiline=True, mask=fmask) - f.field_name = fn - fa = urwid.AttrMap(f, fs) - widgets.append((fw, fa)) - elif o["type"] == "checkbox": - fn = o["name"] - fv = o["value"] - flabel = o["label"] - fs = o["style"] - fprechecked = o.get("prechecked", False) - f = urwid.CheckBox(flabel, state=fprechecked) - f.field_name = fn - f.field_value = fv - fa = urwid.AttrMap(f, fs) - widgets.append((urwid.PACK, fa)) - elif o["type"] == "radio": - fn = o["name"] - fv = o["value"] - flabel = o["label"] - fs = o["style"] - fprechecked = o.get("prechecked", False) - if "radio_groups" not in state: - state["radio_groups"] = {} - if fn not in state["radio_groups"]: - state["radio_groups"][fn] = [] - group = state["radio_groups"][fn] - f = urwid.RadioButton(group, flabel, state=fprechecked, user_data=fv) - f.field_name = fn - f.field_value = fv - fa = urwid.AttrMap(f, fs) - widgets.append((urwid.PACK, fa)) - - - - - columns_widget = urwid.Columns(widgets, dividechars=0) - text_widget = columns_widget - # text_widget = urwid.Text("<"+output+">", align=state["align"]) - + if url_delegate != None: + text_widget = LinkableText(output, align=state["align"], delegate=url_delegate) else: - if url_delegate != None: - text_widget = LinkableText(output, align=state["align"], delegate=url_delegate) - else: - text_widget = urwid.Text(output, align=state["align"]) + text_widget = urwid.Text(output, align=state["align"]) if state["depth"] == 0: - return [text_widget] + return text_widget else: - return [urwid.Padding(text_widget, left=left_indent(state), right=right_indent(state))] + return urwid.Padding(text_widget, left=left_indent(state), right=right_indent(state)) else: return None else: @@ -262,155 +185,14 @@ def style_to_state(style, state): def make_style(state): def mono_color(fg, bg): return "default" - def low_color(color): - try: - result = "default" - if color == "default": - result = "default" - - elif len(color) == 6: - r = str(color[0]) - g = str(color[2]) - b = str(color[4]) - color = r+g+b - - if len(color) == 3: - t = 7 - - if color[0] == "g": - val = int(color[1:2]) - if val < 25: - result = "black" - elif val < 50: - result = "dark gray" - elif val < 75: - result = "light gray" - else: - result = "white" - else: - r = int(color[0], 16) - g = int(color[1], 16) - b = int(color[2], 16) - - if r == g == b: - val = int(color[0], 16)*6 - if val < 12: - result = "black" - elif val < 50: - result = "dark gray" - elif val < 80: - result = "light gray" - else: - result = "white" - - else: - if r == b: - if r > g: - if r > t: - result = "light magenta" - else: - result = "dark magenta" - else: - if g > t: - result = "light green" - else: - result = "dark green" - if b == g: - if b > r: - if b > t: - result = "light cyan" - else: - result = "dark cyan" - else: - if r > t: - result = "light red" - else: - result = "dark red" - if g == r: - if g > b: - if g > t: - result = "yellow" - else: - result = "brown" - else: - if b > t: - result = "light blue" - else: - result = "dark blue" - - if r > g and r > b: - if r > t: - result = "light red" - else: - result = "dark red" - if g > r and g > b: - if g > t: - result = "light green" - else: - result = "dark green" - if b > g and b > r: - if b > t: - result = "light blue" - else: - result = "dark blue" - - except Exception as e: - result = "default" - - return result - + # TODO: Implement low-color mapper + return "default" def high_color(color): - def parseval_hex(char): - return hex(max(0,min(int(char, 16),16)))[2:] - - def parseval_dec(char): - return str(max(0,min(int(char), 9))) - if color == "default": - return "default" + return color else: - if len(color) == 6: - try: - v1 = parseval_hex(color[0]) - v2 = parseval_hex(color[1]) - v3 = parseval_hex(color[2]) - v4 = parseval_hex(color[3]) - v5 = parseval_hex(color[4]) - v6 = parseval_hex(color[5]) - color = "#"+v1+v2+v3+v4+v5+v6 - - except Exception as e: - return "default" - - return color - - elif len(color) == 3: - if color[0] == "g": - try: - v1 = parseval_dec(color[1]) - v2 = parseval_dec(color[2]) - - except Exception as e: - return "default" - - return "g"+v1+v2 - - else: - try: - v1 = parseval_hex(color[0]) - v2 = parseval_hex(color[1]) - v3 = parseval_hex(color[2]) - color = v1+v2+v3 - - except Exception as e: - return "default" - - r = color[0] - g = color[1] - b = color[2] - return "#"+r+r+g+g+b+b - + return "#"+color bold = state["formatting"]["bold"] underline = state["formatting"]["underline"] @@ -438,7 +220,7 @@ def make_style(state): return name -def make_output(state, line, url_delegate, pre_escape=False): +def make_output(state, line, url_delegate): output = [] if state["literal"]: if line == "\\`=": @@ -447,9 +229,8 @@ def make_output(state, line, url_delegate, pre_escape=False): else: part = "" mode = "text" - escape = pre_escape + escape = False skip = 0 - for i in range(0, len(line)): c = line[i] if skip > 0: @@ -468,20 +249,20 @@ def make_output(state, line, url_delegate, pre_escape=False): state["fg_color"] = color skip = 3 elif c == "f": - state["fg_color"] = state["default_fg"] + state["fg_color"] = SELECTED_STYLES["plain"]["fg"] elif c == "B": if len(line) >= i+4: color = line[i+1:i+4] state["bg_color"] = color skip = 3 elif c == "b": - state["bg_color"] = state["default_bg"] + state["bg_color"] = DEFAULT_BG elif c == "`": state["formatting"]["bold"] = False state["formatting"]["underline"] = False state["formatting"]["italic"] = False - state["fg_color"] = state["default_fg"] - state["bg_color"] = state["default_bg"] + state["fg_color"] = SELECTED_STYLES["plain"]["fg"] + state["bg_color"] = DEFAULT_BG state["align"] = state["default_align"] elif c == "c": if state["align"] != "center": @@ -501,100 +282,6 @@ def make_output(state, line, url_delegate, pre_escape=False): elif c == "a": state["align"] = state["default_align"] - elif c == '<': - if len(part) > 0: - output.append(make_part(state, part)) - part = "" - try: - field_start = i + 1 # position after '<' - backtick_pos = line.find('`', field_start) - if backtick_pos == -1: - pass # No '`', invalid field - else: - field_content = line[field_start:backtick_pos] - field_masked = False - field_width = 24 - field_type = "field" - field_name = field_content - field_value = "" - field_data = "" - field_prechecked = False - - # check if field_content contains '|' - if '|' in field_content: - f_components = field_content.split('|') - field_flags = f_components[0] - field_name = f_components[1] - - # handle field type indicators - if '^' in field_flags: - field_type = "radio" - field_flags = field_flags.replace("^", "") - elif '?' in field_flags: - field_type = "checkbox" - field_flags = field_flags.replace("?", "") - elif '!' in field_flags: - field_flags = field_flags.replace("!", "") - field_masked = True - - # Handle field width - if len(field_flags) > 0: - try: - field_width = min(int(field_flags), 256) - except ValueError: - pass # Ignore invalid width - - # Check for value and pre-checked flag - if len(f_components) > 2: - field_value = f_components[2] - else: - field_value = "" - if len(f_components) > 3: - if f_components[3] == '*': - field_prechecked = True - - else: - # No '|', so field_name is field_content - field_name = field_content - field_type = "field" - field_masked = False - field_width = 24 - field_value = "" - field_prechecked = False - - # Find the closing '>' character - field_end = line.find('>', backtick_pos) - if field_end == -1: - pass # No closing '>', invalid field - else: - field_data = line[backtick_pos+1:field_end] - - # Now, we have all field data - if field_type in ["checkbox", "radio"]: - # for checkboxes and radios, field_data is the label - output.append({ - "type": field_type, - "name": field_name, - "value": field_value if field_value else field_data, - "label": field_data, - "prechecked": field_prechecked, - "style": make_style(state) - }) - else: - # For text fields field_data is the initial text - output.append({ - "type": "field", - "name": field_name, - "width": field_width, - "masked": field_masked, - "data": field_data, - "style": make_style(state) - }) - skip = field_end - i - except Exception as e: - pass - - elif c == "[": endpos = line[i:].find("]") if endpos == -1: @@ -606,20 +293,13 @@ def make_output(state, line, url_delegate, pre_escape=False): link_components = link_data.split("`") if len(link_components) == 1: link_label = "" - link_fields = "" link_url = link_data elif len(link_components) == 2: link_label = link_components[0] link_url = link_components[1] - link_fields = "" - elif len(link_components) == 3: - link_label = link_components[0] - link_url = link_components[1] - link_fields = link_components[2] else: link_url = "" link_label = "" - link_fields = "" if len(link_url) != 0: if link_label == "": @@ -647,11 +327,6 @@ def make_output(state, line, url_delegate, pre_escape=False): if url_delegate != None: linkspec = LinkSpec(link_url, orig_spec) - if link_fields != "": - lf = link_fields.split("|") - if len(lf) > 0: - linkspec.link_fields = lf - output.append((linkspec, link_label)) else: output.append(make_part(state, link_label)) @@ -664,11 +339,7 @@ def make_output(state, line, url_delegate, pre_escape=False): elif mode == "text": if c == "\\": - if escape: - part += c - escape = False - else: - escape = True + escape = True elif c == "`": if escape: part += c @@ -680,7 +351,6 @@ def make_output(state, line, url_delegate, pre_escape=False): part = "" else: part += c - escape = False if i == len(line)-1: if len(part) > 0: @@ -695,9 +365,8 @@ def make_output(state, line, url_delegate, pre_escape=False): class LinkSpec(urwid.AttrSpec): def __init__(self, link_target, orig_spec): self.link_target = link_target - self.link_fields = None - super().__init__(orig_spec.foreground, orig_spec.background) + urwid.AttrSpec.__init__(self, orig_spec.foreground, orig_spec.background) class LinkableText(urwid.Text): @@ -707,17 +376,17 @@ class LinkableText(urwid.Text): signals = ["click", "change"] def __init__(self, text, align=None, cursor_position=0, delegate=None): - super().__init__(text, align=align) + self.__super.__init__(text, align=align) self.delegate = delegate self._cursor_position = 0 self.key_timeout = 3 - self.in_columns = False if self.delegate != None: self.delegate.last_keypress = 0 - def handle_link(self, link_target, link_fields): + def handle_link(self, link_target): if self.delegate != None: - self.delegate.handle_link(link_target, link_fields) + self.delegate.handle_link(link_target) + def find_next_part_pos(self, pos, part_positions): for position in part_positions: @@ -775,7 +444,7 @@ class LinkableText(urwid.Text): item = self.find_item_at_pos(self._cursor_position) if item != None: if isinstance(item, LinkSpec): - self.handle_link(item.link_target, item.link_fields) + self.handle_link(item.link_target) elif key == "up": self._cursor_position = 0 @@ -786,25 +455,13 @@ class LinkableText(urwid.Text): return key elif key == "right": - old = self._cursor_position self._cursor_position = self.find_next_part_pos(self._cursor_position, part_positions) - - if self._cursor_position == old: - if self.in_columns: - return "right" - else: - self._cursor_position = 0 - return "down" - self._invalidate() elif key == "left": if self._cursor_position > 0: - if self.in_columns: - return "left" - else: - self._cursor_position = self.find_prev_part_pos(self._cursor_position, part_positions) - self._invalidate() + self._cursor_position = self.find_prev_part_pos(self._cursor_position, part_positions) + self._invalidate() else: if self.delegate != None: @@ -818,7 +475,7 @@ class LinkableText(urwid.Text): def render(self, size, focus=False): now = time.time() - c = super().render(size, focus) + c = self.__super.render(size, focus) if focus and (self.delegate == None or now < self.delegate.last_keypress+self.key_timeout): c = urwid.CompositeCanvas(c) @@ -840,45 +497,17 @@ class LinkableText(urwid.Text): return x, y def mouse_event(self, size, event, button, x, y, focus): - try: - if button != 1 or not is_mouse_press(event): - return False - else: - (maxcol,) = size - translation = self.get_line_translation(maxcol) - line_offset = 0 + if button != 1 or not is_mouse_press(event): + return False + else: + pos = (y * size[0]) + x + self._cursor_position = pos + item = self.find_item_at_pos(self._cursor_position) + if item != None: + if isinstance(item, LinkSpec): + self.handle_link(item.link_target) - if self.align == "center": - line_offset = translation[y][1][1]-translation[y][0][0] - if x < translation[y][0][0]: - x = translation[y][0][0] - - if x > translation[y][1][0]+translation[y][0][0]: - x = translation[y][1][0]+translation[y][0][0] - - elif self.align == "right": - line_offset = translation[y][1][1]-translation[y][0][0] - if x < translation[y][0][0]: - x = translation[y][0][0] - - else: - line_offset = translation[y][0][1] - if x > translation[y][0][0]: - x = translation[y][0][0] - - pos = line_offset+x - - self._cursor_position = pos - item = self.find_item_at_pos(self._cursor_position) - - if item != None: - if isinstance(item, LinkSpec): - self.handle_link(item.link_target, item.link_fields) - - self._invalidate() - self._emit("change") - - return True + self._invalidate() + self._emit("change") - except Exception as e: - return False \ No newline at end of file + return True \ No newline at end of file diff --git a/nomadnet/ui/textui/Network.py b/nomadnet/ui/textui/Network.py index 63f00ec..af6edf9 100644 --- a/nomadnet/ui/textui/Network.py +++ b/nomadnet/ui/textui/Network.py @@ -2,7 +2,6 @@ import RNS import urwid import nomadnet import time -import threading from datetime import datetime from nomadnet.Directory import DirectoryEntry from nomadnet.vendor.additional_urwid_widgets import IndicativeListBox, MODIFIER_KEY @@ -14,7 +13,9 @@ class NetworkDisplayShortcuts(): self.app = app g = app.ui.glyphs - self.widget = urwid.AttrMap(urwid.Text("[C-l] Nodes/Announces [C-x] Remove [C-w] Disconnect [C-d] Back [C-f] Forward [C-r] Reload [C-u] URL [C-g] Fullscreen [C-s / C-b] Save Node"), "shortcutbar") + self.widget = urwid.AttrMap(urwid.Text("[C-l] Toggle Nodes/Announces view [C-x] Remove entry [C-w] Disconnect [C-d] Back [C-f] Forward [C-r] Reload [C-u] Enter URL"), "shortcutbar") + # "[C-"+g["arrow_u"]+g["arrow_d"]+"] Navigate Lists" + class DialogLineBox(urwid.LineBox): def keypress(self, size, key): @@ -50,13 +51,6 @@ class ListEntry(urwid.Text): class AnnounceInfo(urwid.WidgetWrap): - def keypress(self, size, key): - if key == "esc": - options = self.parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) - self.parent.left_pile.contents[0] = (self.parent.announce_stream_display, options) - else: - return super(AnnounceInfo, self).keypress(size, key) - def __init__(self, announce, parent, app): self.app = nomadnet.NomadNetworkApp.get_shared_instance() self.parent = self.app.ui.main_display.sub_displays.network_display @@ -70,17 +64,11 @@ class AnnounceInfo(urwid.WidgetWrap): trust_str = "" display_str = self.app.directory.simplest_display_str(source_hash) addr_str = "<"+RNS.hexrep(source_hash, delimit=False)+">" - info_type = announce[3] + is_node = announce[3] - is_node = False - is_pn = False - if info_type == "node" or info_type == True: - type_string = "Nomad Network Node " + g["node"] - is_node = True - elif info_type == "pn": - type_string = "LXMF Propagation Node " + g["sent"] - is_pn = True - elif info_type == "peer" or info_type == False: + if is_node: + type_string = "Node " + g["node"] + else: type_string = "Peer " + g["peer"] try: @@ -115,54 +103,18 @@ class AnnounceInfo(urwid.WidgetWrap): style = "list_untrusted" def show_announce_stream(sender): - options = self.parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) + options = self.parent.left_pile.options(height_type="weight", height_amount=1) self.parent.left_pile.contents[0] = (self.parent.announce_stream_display, options) def connect(sender): self.parent.browser.retrieve_url(RNS.hexrep(source_hash, delimit=False)) show_announce_stream(None) - def save_node(sender): - node_entry = DirectoryEntry(source_hash, display_name=data_str, trust_level=trust_level, hosts_node=True) - self.app.directory.remember(node_entry) - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() - show_announce_stream(None) - - if is_node: - node_ident = RNS.Identity.recall(source_hash) - if not node_ident: - raise KeyError("Could not recall identity for selected node") - - op_hash = RNS.Destination.hash_from_name_and_identity("lxmf.delivery", node_ident) - op_str = self.app.directory.simplest_display_str(op_hash) - - def msg_op(sender): - show_announce_stream(None) - if is_node: - try: - existing_conversations = nomadnet.Conversation.conversation_list(self.app) - - source_hash_text = RNS.hexrep(op_hash, delimit=False) - display_name = op_str - - if not source_hash_text in [c[0] for c in existing_conversations]: - entry = DirectoryEntry(source_hash, display_name, trust_level) - self.app.directory.remember(entry) - - new_conversation = nomadnet.Conversation(source_hash_text, nomadnet.NomadNetworkApp.get_shared_instance(), initiator=True) - self.app.ui.main_display.sub_displays.conversations_display.update_conversation_list() - - self.app.ui.main_display.sub_displays.conversations_display.display_conversation(None, source_hash_text) - self.app.ui.main_display.show_conversations(None) - - except Exception as e: - RNS.log("Error while starting conversation from announce. The contained exception was: "+str(e), RNS.LOG_ERROR) - def converse(sender): show_announce_stream(None) try: existing_conversations = nomadnet.Conversation.conversation_list(self.app) - + source_hash_text = RNS.hexrep(source_hash, delimit=False) display_name = data_str @@ -179,89 +131,48 @@ class AnnounceInfo(urwid.WidgetWrap): except Exception as e: RNS.log("Error while starting conversation from announce. The contained exception was: "+str(e), RNS.LOG_ERROR) - def use_pn(sender): - show_announce_stream(None) - try: - self.app.set_user_selected_propagation_node(source_hash) - except Exception as e: - RNS.log("Error while setting active propagation node from announce. The contained exception was: "+str(e), RNS.LOG_ERROR) + if is_node: + type_button = ("weight", 0.45, urwid.Button("Connect", on_press=connect)) + else: + type_button = ("weight", 0.45, urwid.Button("Converse", on_press=converse)) + + pile_widgets = [ + urwid.Text("Time : "+ts_string, align="left"), + urwid.Text("Addr : "+addr_str, align="left"), + urwid.Text("Type : "+type_string, align="left"), + urwid.Text("Name : "+display_str, align="left"), + urwid.Text(["Trust : ", (style, trust_str)], align="left"), + urwid.Divider(g["divider1"]), + urwid.Text(["Announce Data: \n", (data_style, data_str)], align="left"), + urwid.Divider(g["divider1"]), + urwid.Columns([("weight", 0.45, urwid.Button("Back", on_press=show_announce_stream)), ("weight", 0.1, urwid.Text("")), type_button]) + ] if is_node: - type_button = (urwid.WEIGHT, 0.45, urwid.Button("Connect", on_press=connect)) - msg_button = (urwid.WEIGHT, 0.45, urwid.Button("Msg Op", on_press=msg_op)) - save_button = (urwid.WEIGHT, 0.45, urwid.Button("Save", on_press=save_node)) - elif is_pn: - type_button = (urwid.WEIGHT, 0.45, urwid.Button("Use as default", on_press=use_pn)) - save_button = None - else: - type_button = (urwid.WEIGHT, 0.45, urwid.Button("Converse", on_press=converse)) - save_button = None - - if is_node: - button_columns = urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Back", on_press=show_announce_stream)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - type_button, - (urwid.WEIGHT, 0.1, urwid.Text("")), - msg_button, - (urwid.WEIGHT, 0.1, urwid.Text("")), - save_button, - ]) - else: - button_columns = urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Back", on_press=show_announce_stream)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - type_button, - ]) - - pile_widgets = [] - - if is_pn: - pile_widgets = [ - urwid.Text("Time : "+ts_string, align=urwid.LEFT), - urwid.Text("Addr : "+addr_str, align=urwid.LEFT), - urwid.Text("Type : "+type_string, align=urwid.LEFT), - urwid.Divider(g["divider1"]), - button_columns - ] - - else: - pile_widgets = [ - urwid.Text("Time : "+ts_string, align=urwid.LEFT), - urwid.Text("Addr : "+addr_str, align=urwid.LEFT), - urwid.Text("Type : "+type_string, align=urwid.LEFT), - urwid.Text("Name : "+display_str, align=urwid.LEFT), - urwid.Text(["Trust : ", (style, trust_str)], align=urwid.LEFT), - urwid.Divider(g["divider1"]), - urwid.Text(["Announce Data: \n", (data_style, data_str)], align=urwid.LEFT), - urwid.Divider(g["divider1"]), - button_columns - ] - - if is_node: - operator_entry = urwid.Text("Oprtr : "+op_str, align=urwid.LEFT) - pile_widgets.insert(4, operator_entry) + node_ident = RNS.Identity.recall(source_hash) + op_hash = RNS.Destination.hash_from_name_and_identity("lxmf.delivery", node_ident) + op_str = self.app.directory.simplest_display_str(op_hash) + operator_entry = urwid.Text("Oprtr : "+op_str, align="left") + pile_widgets.insert(4, operator_entry) pile = urwid.Pile(pile_widgets) - self.display_widget = urwid.Filler(pile, valign=urwid.TOP, height=urwid.PACK) + self.display_widget = urwid.Filler(pile, valign="top", height="pack") - super().__init__(urwid.LineBox(self.display_widget, title="Announce Info")) + urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Announce Info")) class AnnounceStreamEntry(urwid.WidgetWrap): - def __init__(self, app, announce, delegate): + def __init__(self, app, announce): full_time_format = "%Y-%m-%d %H:%M:%S" date_time_format = "%Y-%m-%d" time_time_format = "%H:%M:%S" short_time_format = "%Y-%m-%d %H:%M" - date_only_format = "%Y-%m-%d" timestamp = announce[0] source_hash = announce[1] - announce_type = announce[3] + is_node = announce[3] self.app = app - self.delegate = delegate self.timestamp = timestamp time_format = app.time_format dt = datetime.fromtimestamp(self.timestamp) @@ -271,7 +182,7 @@ class AnnounceStreamEntry(urwid.WidgetWrap): if dt.strftime(date_time_format) == dtn.strftime(date_time_format): ts_string = dt.strftime(time_time_format) else: - ts_string = dt.strftime(date_only_format) + ts_string = dt.strftime(short_time_format) trust_level = self.app.directory.trust_level(source_hash) display_str = self.app.directory.simplest_display_str(source_hash) @@ -297,81 +208,26 @@ class AnnounceStreamEntry(urwid.WidgetWrap): style = "list_untrusted" focus_style = "list_focus_untrusted" - if announce_type == "node" or announce_type == True: + if is_node: type_symbol = g["node"] - elif announce_type == "peer" or announce_type == False: + else: type_symbol = g["peer"] - elif announce_type == "pn": - type_symbol = g["sent"] widget = ListEntry(ts_string+" "+type_symbol+" "+display_str) urwid.connect_signal(widget, "click", self.display_announce, announce) self.display_widget = urwid.AttrMap(widget, style, focus_style) - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def display_announce(self, event, announce): - try: parent = self.app.ui.main_display.sub_displays.network_display info_widget = AnnounceInfo(announce, parent, self.app) - options = parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) + options = parent.left_pile.options(height_type="weight", height_amount=1) parent.left_pile.contents[0] = (info_widget, options) - except KeyError as e: - def dismiss_dialog(sender): - self.delegate.parent.close_list_dialogs() - - def confirmed(sender): - def close_req(sender): - self.delegate.parent.close_list_dialogs() - - dialog_pile.contents[0] = (urwid.Text("\nKeys requested from network\n", align=urwid.CENTER), options) - RNS.Transport.request_path(announce[1]) - - confirmed_button = urwid.Button("Request keys", on_press=confirmed) - - dialog_pile = urwid.Pile([ - urwid.Text( - "The keys for the announced destination could not be recalled. " - "You can wait for an announce to arrive, or request the keys from the network.\n", - align=urwid.CENTER, - ), - urwid.Columns([ - (urwid.WEIGHT, 0.45, confirmed_button), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Close", on_press=dismiss_dialog)), - ]) - ]) - - dialog = ListDialogLineBox( - dialog_pile, - title="Keys Unknown" - ) - confirmed_button.dialog_pile = dialog_pile - dialog.delegate = self.delegate.parent - bottom = self.delegate - - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) - - options = self.delegate.parent.left_pile.options(urwid.WEIGHT, 1) - self.delegate.parent.left_pile.contents[0] = (overlay, options) - def timestamp(self): return self.timestamp -class TabButton(urwid.Button): - button_left = urwid.Text("[") - button_right = urwid.Text("]") - class AnnounceStream(urwid.WidgetWrap): def __init__(self, app, parent): self.app = app @@ -380,25 +236,12 @@ class AnnounceStream(urwid.WidgetWrap): self.timeout = self.app.config["textui"]["animation_interval"]*2 self.ilb = None self.no_content = True - self.current_tab = "nodes" - + self.added_entries = [] self.widget_list = [] self.update_widget_list() - # Create tab buttons - self.tab_nodes = TabButton("Nodes", on_press=self.show_nodes_tab) - self.tab_peers = TabButton("Peers", on_press=self.show_peers_tab) - self.tab_pn = TabButton("Propagation Nodes", on_press=self.show_pn_tab) - - # Create tab bar with proportional widths - self.tab_bar = urwid.Columns([ - ('weight', 1, self.tab_nodes), - ('weight', 1, self.tab_peers), - ('weight', 3, self.tab_pn), - ], dividechars=1) # Add 1 character spacing between tabs - - self.ilb = ExceptionHandlingListBox( + self.ilb = IndicativeListBox( self.widget_list, on_selection_change=self.list_selection, initialization_is_selection_change=False, @@ -406,21 +249,15 @@ class AnnounceStream(urwid.WidgetWrap): #highlight_offFocus="list_off_focus" ) - # Combine tab bar and list box - self.pile = urwid.Pile([ - ('pack', self.tab_bar), - ('weight', 1, self.ilb), - ]) - - self.display_widget = self.pile - super().__init__(urwid.LineBox(self.display_widget, title="Announce Stream")) + self.display_widget = self.ilb + urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Announce Stream")) def keypress(self, size, key): if key == "up" and (self.no_content or self.ilb.first_item_is_selected()): - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" + nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") elif key == "ctrl x": self.delete_selected_entry() - + return super(AnnounceStream, self).keypress(size, key) def delete_selected_entry(self): @@ -435,45 +272,28 @@ class AnnounceStream(urwid.WidgetWrap): self.update_widget_list() def update_widget_list(self): - self.widget_list = [] new_entries = [] - for e in self.app.directory.announce_stream: - announce_type = e[3] - - # Filter based on current tab - if self.current_tab == "nodes" and (announce_type == "node" or announce_type == True): - new_entries.append(e) - elif self.current_tab == "peers" and (announce_type == "peer" or announce_type == False): - new_entries.append(e) - elif self.current_tab == "pn" and announce_type == "pn": - new_entries.append(e) + if not e[0] in self.added_entries: + self.added_entries.insert(0, e[0]) + new_entries.insert(0, e) for e in new_entries: - nw = AnnounceStreamEntry(self.app, e, self) + nw = AnnounceStreamEntry(self.app, e) nw.timestamp = e[0] - self.widget_list.append(nw) + self.widget_list.insert(0, nw) if len(new_entries) > 0: self.no_content = False + if self.ilb != None: + self.ilb.set_body(self.widget_list) else: - self.no_content = True - self.widget_list = [urwid.Text(f"No {self.current_tab} announces", align='center')] + if len(self.widget_list) == 0: + self.no_content = True + + if self.ilb != None: + self.ilb.set_body(self.widget_list) - if self.ilb: - self.ilb.set_body(self.widget_list) - - def show_nodes_tab(self, button): - self.current_tab = "nodes" - self.update_widget_list() - - def show_peers_tab(self, button): - self.current_tab = "peers" - self.update_widget_list() - - def show_pn_tab(self, button): - self.current_tab = "pn" - self.update_widget_list() def list_selection(self, arg1, arg2): pass @@ -526,246 +346,6 @@ class ListDialogLineBox(urwid.LineBox): else: return super(ListDialogLineBox, self).keypress(size, key) -class KnownNodeInfo(urwid.WidgetWrap): - def keypress(self, size, key): - if key == "esc": - options = self.parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) - self.parent.left_pile.contents[0] = (self.parent.known_nodes_display, options) - else: - return super(KnownNodeInfo, self).keypress(size, key) - - def __init__(self, node_hash): - self.app = nomadnet.NomadNetworkApp.get_shared_instance() - self.parent = self.app.ui.main_display.sub_displays.network_display - self.pn_changed = False - g = self.app.ui.glyphs - - source_hash = node_hash - node_ident = RNS.Identity.recall(node_hash) - time_format = self.app.time_format - trust_level = self.app.directory.trust_level(source_hash) - trust_str = "" - node_entry = self.app.directory.find(source_hash) - sort_str = self.app.directory.sort_rank(source_hash) - if sort_str == None: - sort_str = "None" - else: - sort_str = str(sort_str) - - if node_entry == None: - display_str = self.app.directory.simplest_display_str(source_hash) - else: - display_str = node_entry.display_name - - addr_str = "<"+RNS.hexrep(source_hash, delimit=False)+">" - - if display_str == None: - display_str = addr_str - - pn_hash = RNS.Destination.hash_from_name_and_identity("lxmf.propagation", node_ident) - - if node_ident != None: - lxmf_addr_str = g["sent"]+" LXMF Propagation Node Address is "+RNS.prettyhexrep(pn_hash) - else: - lxmf_addr_str = "No associated Propagation Node known" - - - type_string = "Nomad Network Node " + g["node"] - - if trust_level == DirectoryEntry.UNTRUSTED: - trust_str = "Untrusted" - symbol = g["cross"] - style = "list_untrusted" - elif trust_level == DirectoryEntry.UNKNOWN: - trust_str = "Unknown" - symbol = g["unknown"] - style = "list_unknown" - elif trust_level == DirectoryEntry.TRUSTED: - trust_str = "Trusted" - symbol = g["check"] - style = "list_trusted" - elif trust_level == DirectoryEntry.WARNING: - trust_str = "Warning" - symbol = g["warning"] - style = "list_warning" - else: - trust_str = "Warning" - symbol = g["warning"] - style = "list_untrusted" - - if trust_level == DirectoryEntry.UNTRUSTED: - untrusted_selected = True - unknown_selected = False - trusted_selected = False - elif trust_level == DirectoryEntry.UNKNOWN: - untrusted_selected = False - unknown_selected = True - trusted_selected = False - elif trust_level == DirectoryEntry.TRUSTED: - untrusted_selected = False - unknown_selected = False - trusted_selected = True - - trust_button_group = [] - r_untrusted = urwid.RadioButton(trust_button_group, "Untrusted", state=untrusted_selected) - r_unknown = urwid.RadioButton(trust_button_group, "Unknown", state=unknown_selected) - r_trusted = urwid.RadioButton(trust_button_group, "Trusted", state=trusted_selected) - - e_name = urwid.Edit(caption="Name : ",edit_text=display_str) - e_sort = urwid.Edit(caption="Sort Rank : ",edit_text=sort_str) - - node_ident = RNS.Identity.recall(source_hash) - op_hash = None - op_str = None - if node_ident != None: - op_hash = RNS.Destination.hash_from_name_and_identity("lxmf.delivery", node_ident) - op_str = self.app.directory.simplest_display_str(op_hash) - else: - op_str = "Unknown" - - def show_known_nodes(sender): - options = self.parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) - self.parent.left_pile.contents[0] = (self.parent.known_nodes_display, options) - - def connect(sender): - self.parent.browser.retrieve_url(RNS.hexrep(source_hash, delimit=False)) - show_known_nodes(None) - - def msg_op(sender): - show_known_nodes(None) - if node_ident != None: - try: - existing_conversations = nomadnet.Conversation.conversation_list(self.app) - - source_hash_text = RNS.hexrep(op_hash, delimit=False) - display_name = op_str - - if not source_hash_text in [c[0] for c in existing_conversations]: - entry = DirectoryEntry(source_hash, display_name, trust_level) - self.app.directory.remember(entry) - - new_conversation = nomadnet.Conversation(source_hash_text, nomadnet.NomadNetworkApp.get_shared_instance(), initiator=True) - self.app.ui.main_display.sub_displays.conversations_display.update_conversation_list() - - self.app.ui.main_display.sub_displays.conversations_display.display_conversation(None, source_hash_text) - self.app.ui.main_display.show_conversations(None) - - except Exception as e: - RNS.log("Error while starting conversation from node info. The contained exception was: "+str(e), RNS.LOG_ERROR) - - def pn_change(sender, userdata): - self.pn_changed = True - - def ident_change(sender, userdata): - pass - - propagation_node_checkbox = urwid.CheckBox("Use as default propagation node", state=(self.app.get_user_selected_propagation_node() == pn_hash), on_state_change=pn_change) - connect_identify_checkbox = urwid.CheckBox("Identify when connecting", state=self.app.directory.should_identify_on_connect(source_hash), on_state_change=ident_change) - - def save_node(sender): - if self.pn_changed: - if propagation_node_checkbox.get_state(): - self.app.set_user_selected_propagation_node(pn_hash) - else: - self.app.set_user_selected_propagation_node(None) - - trust_level = DirectoryEntry.UNTRUSTED - if r_unknown.get_state() == True: - trust_level = DirectoryEntry.UNKNOWN - - if r_trusted.get_state() == True: - trust_level = DirectoryEntry.TRUSTED - - display_str = e_name.get_edit_text() - sort_rank = e_sort.get_edit_text() - try: - if int(sort_rank) >= 0: - sort_rank = int(sort_rank) - else: - sort_rank = None - except: - sort_rank = None - - node_entry = DirectoryEntry(source_hash, display_name=display_str, trust_level=trust_level, hosts_node=True, identify_on_connect=connect_identify_checkbox.get_state(), sort_rank=sort_rank) - self.app.directory.remember(node_entry) - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() - - if trust_level == DirectoryEntry.TRUSTED: - self.app.autoselect_propagation_node() - - show_known_nodes(None) - - back_button = (urwid.WEIGHT, 0.2, urwid.Button("Back", on_press=show_known_nodes)) - connect_button = (urwid.WEIGHT, 0.2, urwid.Button("Connect", on_press=connect)) - save_button = (urwid.WEIGHT, 0.2, urwid.Button("Save", on_press=save_node)) - msg_button = (urwid.WEIGHT, 0.2, urwid.Button("Msg Op", on_press=msg_op)) - bdiv = (urwid.WEIGHT, 0.02, urwid.Text("")) - - button_columns = urwid.Columns([back_button, bdiv, connect_button, bdiv, msg_button, bdiv, save_button]) - - pile_widgets = [ - urwid.Text("Type : "+type_string, align=urwid.LEFT), - e_name, - urwid.Text("Node Addr : "+addr_str, align=urwid.LEFT), - e_sort, - urwid.Divider(g["divider1"]), - urwid.Text(lxmf_addr_str, align=urwid.CENTER), - urwid.Divider(g["divider1"]), - propagation_node_checkbox, - connect_identify_checkbox, - urwid.Divider(g["divider1"]), - r_untrusted, - r_unknown, - r_trusted, - urwid.Divider(g["divider1"]), - button_columns - ] - - operator_entry = urwid.Text("Operator : "+op_str, align=urwid.LEFT) - pile_widgets.insert(3, operator_entry) - - hops = RNS.Transport.hops_to(source_hash) - if hops == 1: - str_s = "" - else: - str_s = "s" - - if hops != RNS.Transport.PATHFINDER_M: - hops_str = str(hops)+" hop"+str_s - else: - hops_str = "Unknown" - - operator_entry = urwid.Text("Distance : "+hops_str, align=urwid.LEFT) - pile_widgets.insert(4, operator_entry) - - pile = urwid.Pile(pile_widgets) - - pile.focus_position = len(pile.contents)-1 - button_columns.focus_position = 0 - - - self.display_widget = urwid.Filler(pile, valign=urwid.TOP, height=urwid.PACK) - - super().__init__(urwid.LineBox(self.display_widget, title="Node Info")) - - -# Yes, this is weird. There is a bug in Urwid/ILB that causes -# an indexing exception when the list is very small vertically. -# This mitigates it. -class ExceptionHandlingListBox(IndicativeListBox): - def keypress(self, size, key): - try: - return super(ExceptionHandlingListBox, self).keypress(size, key) - - except Exception as e: - if key == "up": - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" - elif key == "down": - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.sub_displays.network_display.left_pile.focus_position = 1 - else: - RNS.log("An error occurred while processing an interface event. The contained exception was: "+str(e), RNS.LOG_ERROR) - - class KnownNodes(urwid.WidgetWrap): def __init__(self, app): self.app = app @@ -773,8 +353,8 @@ class KnownNodes(urwid.WidgetWrap): g = self.app.ui.glyphs self.widget_list = self.make_node_widgets() - - self.ilb = ExceptionHandlingListBox( + + self.ilb = IndicativeListBox( self.widget_list, on_selection_change=self.node_list_selection, initialization_is_selection_change=False, @@ -788,26 +368,17 @@ class KnownNodes(urwid.WidgetWrap): else: self.no_content = True widget_style = "inactive_text" - self.pile = urwid.Pile([ - urwid.Text(("warning_text", g["info"]+"\n"), align=urwid.CENTER), - SelectText( - ( - "warning_text", - "Currently, no nodes are saved\n\nCtrl+L to view the announce stream\n\n", - ), - align=urwid.CENTER, - ), - ]) - self.display_widget = urwid.Filler(self.pile, valign=urwid.TOP, height=urwid.PACK) + self.pile = urwid.Pile([urwid.Text(("warning_text", g["info"]+"\n"), align="center"), SelectText(("warning_text", "Currently, no nodes are known\n\n"), align="center")]) + self.display_widget = urwid.Filler(self.pile, valign="top", height="pack") - super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title="Saved Nodes"), widget_style)) + urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title="Known Nodes"), widget_style)) def keypress(self, size, key): if key == "up" and (self.no_content or self.ilb.first_item_is_selected()): - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" + nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.set_focus("header") elif key == "ctrl x": self.delete_selected_entry() - + return super(KnownNodes, self).keypress(size, key) @@ -820,8 +391,6 @@ class KnownNodes(urwid.WidgetWrap): trust_level = self.app.directory.trust_level(source_hash) display_str = self.app.directory.simplest_display_str(source_hash) - parent = self.app.ui.main_display.sub_displays.network_display - def dismiss_dialog(sender): self.delegate.close_list_dialogs() @@ -829,71 +398,46 @@ class KnownNodes(urwid.WidgetWrap): self.delegate.browser.retrieve_url(RNS.hexrep(source_hash, delimit=False)) self.delegate.close_list_dialogs() - def show_info(sender): - info_widget = KnownNodeInfo(source_hash) - options = parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) - parent.left_pile.contents[0] = (info_widget, options) - dialog = ListDialogLineBox( urwid.Pile([ - urwid.Text("Connect to node\n"+self.app.directory.simplest_display_str(source_hash)+"\n", align=urwid.CENTER), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Yes", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("No", on_press=dismiss_dialog)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Info", on_press=show_info))]) + urwid.Text("Connect to node\n"+self.app.directory.simplest_display_str(source_hash)+"\n", align="center"), + urwid.Columns([("weight", 0.45, urwid.Button("Yes", on_press=confirmed)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("No", on_press=dismiss_dialog))]) ]), title="?" ) dialog.delegate = self.delegate bottom = self - overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=urwid.RELATIVE_100, valign=urwid.MIDDLE, height=urwid.PACK, left=2, right=2) + overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=2, right=2) - options = self.delegate.left_pile.options(urwid.WEIGHT, 1) + options = self.delegate.left_pile.options("weight", 1) self.delegate.left_pile.contents[0] = (overlay, options) def delete_selected_entry(self): - si = self.ilb.get_selected_item() - if si != None: - source_hash = si.original_widget.source_hash + source_hash = self.ilb.get_selected_item().original_widget.source_hash - def dismiss_dialog(sender): - self.delegate.close_list_dialogs() + def dismiss_dialog(sender): + self.delegate.close_list_dialogs() - def confirmed(sender): - self.app.directory.forget(source_hash) - self.rebuild_widget_list() - self.delegate.close_list_dialogs() + def confirmed(sender): + self.app.directory.forget(source_hash) + self.rebuild_widget_list() + self.delegate.close_list_dialogs() - dialog = ListDialogLineBox( - urwid.Pile([ - urwid.Text("Delete Node\n"+self.app.directory.simplest_display_str(source_hash)+"\n", align=urwid.CENTER), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Yes", on_press=confirmed)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("No", on_press=dismiss_dialog)), - ]) - ]), title="?" - ) - dialog.delegate = self.delegate - bottom = self + dialog = ListDialogLineBox( + urwid.Pile([ + urwid.Text("Delete Node\n"+self.app.directory.simplest_display_str(source_hash)+"\n", align="center"), + urwid.Columns([("weight", 0.45, urwid.Button("Yes", on_press=confirmed)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("No", on_press=dismiss_dialog))]) + ]), title="?" + ) + dialog.delegate = self.delegate + bottom = self - overlay = urwid.Overlay( - dialog, - bottom, - align=urwid.CENTER, - width=urwid.RELATIVE_100, - valign=urwid.MIDDLE, - height=urwid.PACK, - left=2, - right=2, - ) + overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=2, right=2) - options = self.delegate.left_pile.options(urwid.WEIGHT, 1) - self.delegate.left_pile.contents[0] = (overlay, options) + options = self.delegate.left_pile.options("weight", 1) + self.delegate.left_pile.contents[0] = (overlay, options) def rebuild_widget_list(self): @@ -950,13 +494,13 @@ class NodeEntry(urwid.WidgetWrap): focus_style = "list_focus_untrusted" type_symbol = g["node"] - + widget = ListEntry(type_symbol+" "+display_str) urwid.connect_signal(widget, "click", delegate.connect_node, node) self.display_widget = urwid.AttrMap(widget, style, focus_style) self.display_widget.source_hash = source_hash - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) class AnnounceTime(urwid.WidgetWrap): @@ -967,14 +511,14 @@ class AnnounceTime(urwid.WidgetWrap): self.display_widget = urwid.Text("") self.update_time() - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def update_time(self): self.last_announce_string = "Never" if self.app.peer_settings["last_announce"] != None: self.last_announce_string = pretty_date(int(self.app.peer_settings["last_announce"])) - self.display_widget.set_text("Announced : "+self.last_announce_string) + self.display_widget.set_text("Last Announce : "+self.last_announce_string) def update_time_callback(self, loop=None, user_data=None): self.update_time() @@ -999,14 +543,14 @@ class NodeAnnounceTime(urwid.WidgetWrap): self.display_widget = urwid.Text("") self.update_time() - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def update_time(self): self.last_announce_string = "Never" if self.app.peer_settings["node_last_announce"] != None: self.last_announce_string = pretty_date(int(self.app.peer_settings["node_last_announce"])) - self.display_widget.set_text("Last Announce : "+self.last_announce_string) + self.display_widget.set_text("Last Announce : "+self.last_announce_string) def update_time_callback(self, loop=None, user_data=None): self.update_time() @@ -1030,152 +574,14 @@ class NodeActiveConnections(urwid.WidgetWrap): self.display_widget = urwid.Text("") self.update_stat() - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def update_stat(self): self.stat_string = "None" if self.app.node != None: self.stat_string = str(len(self.app.node.destination.links)) - self.display_widget.set_text("Connected Now : "+self.stat_string) - - def update_stat_callback(self, loop=None, user_data=None): - self.update_stat() - if self.started: - self.app.ui.loop.set_alarm_in(self.timeout, self.update_stat_callback) - - def start(self): - was_started = self.started - self.started = True - if not was_started: - self.update_stat_callback() - - def stop(self): - self.started = False - -class NodeStorageStats(urwid.WidgetWrap): - def __init__(self, app): - self.started = False - self.app = app - self.timeout = self.app.config["textui"]["animation_interval"] - self.display_widget = urwid.Text("") - self.update_stat() - - super().__init__(self.display_widget) - - def update_stat(self): - self.stat_string = "None" - if self.app.node != None and not self.app.disable_propagation: - - limit = self.app.message_router.message_storage_limit - used = self.app.message_router.message_storage_size() - - if limit != None and used != None: - pct = round((used/limit)*100, 1) - pct_str = str(pct)+"%, " - limit_str = " of "+RNS.prettysize(limit) - else: - limit_str = "" - pct_str = "" - - self.stat_string = pct_str+RNS.prettysize(used)+limit_str - - self.display_widget.set_text("LXMF Storage : "+self.stat_string) - - def update_stat_callback(self, loop=None, user_data=None): - self.update_stat() - if self.started: - self.app.ui.loop.set_alarm_in(self.timeout, self.update_stat_callback) - - def start(self): - was_started = self.started - self.started = True - if not was_started: - self.update_stat_callback() - - def stop(self): - self.started = False - -class NodeTotalConnections(urwid.WidgetWrap): - def __init__(self, app): - self.started = False - self.app = app - self.timeout = self.app.config["textui"]["animation_interval"] - self.display_widget = urwid.Text("") - self.update_stat() - - super().__init__(self.display_widget) - - def update_stat(self): - self.stat_string = "None" - if self.app.node != None: - self.stat_string = str(self.app.peer_settings["node_connects"]) - - self.display_widget.set_text("Total Connects : "+self.stat_string) - - def update_stat_callback(self, loop=None, user_data=None): - self.update_stat() - if self.started: - self.app.ui.loop.set_alarm_in(self.timeout, self.update_stat_callback) - - def start(self): - was_started = self.started - self.started = True - if not was_started: - self.update_stat_callback() - - def stop(self): - self.started = False - - -class NodeTotalPages(urwid.WidgetWrap): - def __init__(self, app): - self.started = False - self.app = app - self.timeout = self.app.config["textui"]["animation_interval"] - self.display_widget = urwid.Text("") - self.update_stat() - - super().__init__(self.display_widget) - - def update_stat(self): - self.stat_string = "None" - if self.app.node != None: - self.stat_string = str(self.app.peer_settings["served_page_requests"]) - - self.display_widget.set_text("Served Pages : "+self.stat_string) - - def update_stat_callback(self, loop=None, user_data=None): - self.update_stat() - if self.started: - self.app.ui.loop.set_alarm_in(self.timeout, self.update_stat_callback) - - def start(self): - was_started = self.started - self.started = True - if not was_started: - self.update_stat_callback() - - def stop(self): - self.started = False - - -class NodeTotalFiles(urwid.WidgetWrap): - def __init__(self, app): - self.started = False - self.app = app - self.timeout = self.app.config["textui"]["animation_interval"] - self.display_widget = urwid.Text("") - self.update_stat() - - super().__init__(self.display_widget) - - def update_stat(self): - self.stat_string = "None" - if self.app.node != None: - self.stat_string = str(self.app.peer_settings["served_file_requests"]) - - self.display_widget.set_text("Served Files : "+self.stat_string) + self.display_widget.set_text("Connected Peers : "+self.stat_string) def update_stat_callback(self, loop=None, user_data=None): self.update_stat() @@ -1204,59 +610,58 @@ class LocalPeer(urwid.WidgetWrap): if display_name == None: display_name = "" - t_id = urwid.Text("LXMF Addr : "+RNS.prettyhexrep(self.app.lxmf_destination.hash)) - i_id = urwid.Text("Identity : "+RNS.prettyhexrep(self.app.identity.hash)) - e_name = urwid.Edit(caption="Name : ", edit_text=display_name) + t_id = urwid.Text("Addr : "+RNS.hexrep(self.app.lxmf_destination.hash, delimit=False)) + e_name = urwid.Edit(caption="Name : ", edit_text=display_name) def save_query(sender): def dismiss_dialog(sender): self.dialog_open = False - self.parent.left_pile.contents[1] = (LocalPeer(self.app, self.parent), options) + self.parent.left_pile.contents[2] = (LocalPeer(self.app, self.parent), options) self.app.set_display_name(e_name.get_edit_text()) dialog = DialogLineBox( urwid.Pile([ - urwid.Text("\n\n\nSaved\n\n", align=urwid.CENTER), + urwid.Text("\n\n\nSaved\n\n", align="center"), urwid.Button("OK", on_press=dismiss_dialog) ]), title=g["info"] ) dialog.delegate = self bottom = self - #overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=urwid.RELATIVE_100, valign=urwid.MIDDLE, height=urwid.PACK, left=4, right=4) + #overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=4, right=4) overlay = dialog - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) + options = self.parent.left_pile.options(height_type="pack", height_amount=None) self.dialog_open = True - self.parent.left_pile.contents[1] = (overlay, options) + self.parent.left_pile.contents[2] = (overlay, options) def announce_query(sender): def dismiss_dialog(sender): self.dialog_open = False - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) - self.parent.left_pile.contents[1] = (LocalPeer(self.app, self.parent), options) + options = self.parent.left_pile.options(height_type="pack", height_amount=None) + self.parent.left_pile.contents[2] = (LocalPeer(self.app, self.parent), options) self.app.announce_now() dialog = DialogLineBox( urwid.Pile([ - urwid.Text("\n\n\nAnnounce Sent\n\n\n", align=urwid.CENTER), + urwid.Text("\n\n\nAnnounce Sent\n\n", align="center"), urwid.Button("OK", on_press=dismiss_dialog) ]), title=g["info"] ) dialog.delegate = self bottom = self - #overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=urwid.RELATIVE_100, valign=urwid.MIDDLE, height=urwid.PACK, left=4, right=4) + #overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=4, right=4) overlay = dialog - + self.dialog_open = True - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) - self.parent.left_pile.contents[1] = (overlay, options) + options = self.parent.left_pile.options(height_type="pack", height_amount=None) + self.parent.left_pile.contents[2] = (overlay, options) def node_info_query(sender): - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) - self.parent.left_pile.contents[1] = (self.parent.node_info_display, options) + options = self.parent.left_pile.options(height_type="pack", height_amount=None) + self.parent.left_pile.contents[2] = (self.parent.node_info_display, options) if LocalPeer.announce_timer == None: self.t_last_announce = AnnounceTime(self.app) @@ -1266,25 +671,20 @@ class LocalPeer(urwid.WidgetWrap): self.t_last_announce.update_time() announce_button = urwid.Button("Announce Now", on_press=announce_query) - + self.display_widget = urwid.Pile( [ t_id, - i_id, e_name, urwid.Divider(g["divider1"]), self.t_last_announce, announce_button, urwid.Divider(g["divider1"]), - urwid.Columns([ - (urwid.WEIGHT, 0.45, urwid.Button("Save", on_press=save_query)), - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("Node Info", on_press=node_info_query)), - ]) + urwid.Columns([("weight", 0.45, urwid.Button("Save", on_press=save_query)), ("weight", 0.1, urwid.Text("")), ("weight", 0.45, urwid.Button("Node Info", on_press=node_info_query))]) ] ) - super().__init__(urwid.LineBox(self.display_widget, title="Local Peer Info")) + urwid.WidgetWrap.__init__(self, urwid.LineBox(self.display_widget, title="Local Peer Info")) def start(self): self.t_last_announce.start() @@ -1293,10 +693,6 @@ class LocalPeer(urwid.WidgetWrap): class NodeInfo(urwid.WidgetWrap): announce_timer = None links_timer = None - conns_timer = None - pages_timer = None - files_timer = None - storage_timer = None def __init__(self, app, parent): self.app = app @@ -1308,50 +704,44 @@ class NodeInfo(urwid.WidgetWrap): widget_style = "" def show_peer_info(sender): - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) - self.parent.left_pile.contents[1] = (LocalPeer(self.app, self.parent), options) - + options = self.parent.left_pile.options(height_type="pack", height_amount=None) + self.parent.left_pile.contents[2] = (LocalPeer(self.app, self.parent), options) + if self.app.enable_node: if self.app.node != None: display_name = self.app.node.name else: display_name = None - + if display_name == None: display_name = "" t_id = urwid.Text("Addr : "+RNS.hexrep(self.app.node.destination.hash, delimit=False)) e_name = urwid.Text("Name : "+display_name) - def stats_query(sender): - self.app.peer_settings["node_connects"] = 0 - self.app.peer_settings["served_page_requests"] = 0 - self.app.peer_settings["served_file_requests"] = 0 - self.app.save_peer_settings() - def announce_query(sender): def dismiss_dialog(sender): self.dialog_open = False - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) - self.parent.left_pile.contents[1] = (NodeInfo(self.app, self.parent), options) + options = self.parent.left_pile.options(height_type="pack", height_amount=None) + self.parent.left_pile.contents[2] = (NodeInfo(self.app, self.parent), options) self.app.node.announce() dialog = DialogLineBox( urwid.Pile([ - urwid.Text("\n\n\nAnnounce Sent\n\n", align=urwid.CENTER), + urwid.Text("\n\n\nAnnounce Sent\n\n", align="center"), urwid.Button("OK", on_press=dismiss_dialog) ]), title=g["info"] ) dialog.delegate = self bottom = self - #overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=urwid.RELATIVE_100, valign=urwid.MIDDLE, height=urwid.PACK, left=4, right=4) + #overlay = urwid.Overlay(dialog, bottom, align="center", width=("relative", 100), valign="middle", height="pack", left=4, right=4) overlay = dialog - + self.dialog_open = True - options = self.parent.left_pile.options(height_type=urwid.PACK, height_amount=None) - self.parent.left_pile.contents[1] = (overlay, options) + options = self.parent.left_pile.options(height_type="pack", height_amount=None) + self.parent.left_pile.contents[2] = (overlay, options) def connect_query(sender): self.parent.browser.retrieve_url(RNS.hexrep(self.app.node.destination.hash, delimit=False)) @@ -1370,105 +760,40 @@ class NodeInfo(urwid.WidgetWrap): self.t_active_links = NodeInfo.links_timer self.t_active_links.update_stat() - if NodeInfo.storage_timer == None: - self.t_storage_stats = NodeStorageStats(self.app) - NodeInfo.storage_timer = self.t_storage_stats - else: - self.t_storage_stats = NodeInfo.storage_timer - self.t_storage_stats.update_stat() - - if NodeInfo.conns_timer == None: - self.t_total_connections = NodeTotalConnections(self.app) - NodeInfo.conns_timer = self.t_total_connections - else: - self.t_total_connections = NodeInfo.conns_timer - self.t_total_connections.update_stat() - - if NodeInfo.pages_timer == None: - self.t_total_pages = NodeTotalPages(self.app) - NodeInfo.pages_timer = self.t_total_pages - else: - self.t_total_pages = NodeInfo.pages_timer - self.t_total_pages.update_stat() - - if NodeInfo.files_timer == None: - self.t_total_files = NodeTotalFiles(self.app) - NodeInfo.files_timer = self.t_total_files - else: - self.t_total_files = NodeInfo.files_timer - self.t_total_files.update_stat() - - lxmf_addr_str = g["sent"]+" LXMF Propagation Node Address is "+RNS.prettyhexrep(RNS.Destination.hash_from_name_and_identity("lxmf.propagation", self.app.node.destination.identity)) - e_lxmf = urwid.Text(lxmf_addr_str, align=urwid.CENTER) - - announce_button = urwid.Button("Announce", on_press=announce_query) + announce_button = urwid.Button("Announce Now", on_press=announce_query) connect_button = urwid.Button("Browse", on_press=connect_query) - reset_button = urwid.Button("Rst Stats", on_press=stats_query) - if not self.app.disable_propagation: - pile = urwid.Pile([ - t_id, - e_name, - urwid.Divider(g["divider1"]), - e_lxmf, - urwid.Divider(g["divider1"]), - self.t_last_announce, - self.t_storage_stats, - self.t_active_links, - self.t_total_connections, - self.t_total_pages, - self.t_total_files, - urwid.Divider(g["divider1"]), - urwid.Columns([ - (urwid.WEIGHT, 5, urwid.Button("Back", on_press=show_peer_info)), - (urwid.WEIGHT, 0.5, urwid.Text("")), - (urwid.WEIGHT, 6, connect_button), - (urwid.WEIGHT, 0.5, urwid.Text("")), - (urwid.WEIGHT, 8, reset_button), - (urwid.WEIGHT, 0.5, urwid.Text("")), - (urwid.WEIGHT, 7, announce_button), - ]) - ]) - else: - pile = urwid.Pile([ + pile = urwid.Pile([ t_id, e_name, urwid.Divider(g["divider1"]), self.t_last_announce, - self.t_storage_stats, self.t_active_links, - self.t_total_connections, - self.t_total_pages, - self.t_total_files, urwid.Divider(g["divider1"]), urwid.Columns([ - (urwid.WEIGHT, 5, urwid.Button("Back", on_press=show_peer_info)), - (urwid.WEIGHT, 0.5, urwid.Text("")), - (urwid.WEIGHT, 6, connect_button), - (urwid.WEIGHT, 0.5, urwid.Text("")), - (urwid.WEIGHT, 8, reset_button), - (urwid.WEIGHT, 0.5, urwid.Text("")), - (urwid.WEIGHT, 7, announce_button), + ("weight", 0.3, urwid.Button("Back", on_press=show_peer_info)), + ("weight", 0.1, urwid.Text("")), + ("weight", 0.3, connect_button), + ("weight", 0.1, urwid.Text("")), + ("weight", 0.3, announce_button) ]) ]) else: pile = urwid.Pile([ - urwid.Text("\n"+g["info"], align=urwid.CENTER), - urwid.Text("\nThis instance is not hosting a node\n\n", align=urwid.CENTER), - urwid.Padding(urwid.Button("Back", on_press=show_peer_info), urwid.CENTER, urwid.PACK) + urwid.Text("\n"+g["info"], align="center"), + urwid.Text("\nThis instance is not hosting a node\n\n", align="center"), + urwid.Padding(urwid.Button("Back", on_press=show_peer_info), "center", "pack") ]) self.display_widget = pile - super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title="Local Node Info"), widget_style)) + urwid.WidgetWrap.__init__(self, urwid.AttrMap(urwid.LineBox(self.display_widget, title="Local Node Info"), widget_style)) def start(self): if self.app.node != None: self.t_last_announce.start() self.t_active_links.start() - self.t_total_connections.start() - self.t_total_pages.start() - self.t_total_files.start() + class UpdatingText(urwid.WidgetWrap): @@ -1483,7 +808,7 @@ class UpdatingText(urwid.WidgetWrap): self.append_text = append_text self.update() - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def update(self): self.value = self.value_method() @@ -1515,7 +840,7 @@ class NetworkStats(urwid.WidgetWrap): def get_num_nodes(): return self.app.directory.number_of_known_nodes() - self.w_heard_peers = UpdatingText(self.app, "Heard Peers: ", get_num_peers, append_text=" (30m)") + self.w_heard_peers = UpdatingText(self.app, "Heard Peers: ", get_num_peers, append_text=" (last 30m)") self.w_known_nodes = UpdatingText(self.app, "Known Nodes: ", get_num_nodes) pile = urwid.Pile([ @@ -1525,7 +850,7 @@ class NetworkStats(urwid.WidgetWrap): self.display_widget = urwid.LineBox(pile, title="Network Stats") - super().__init__(self.display_widget) + urwid.WidgetWrap.__init__(self, self.display_widget) def start(self): self.w_heard_peers.start() @@ -1535,27 +860,16 @@ class NetworkLeftPile(urwid.Pile): def keypress(self, size, key): if key == "ctrl l": self.parent.toggle_list() - elif key == "ctrl g": - self.parent.toggle_fullscreen() - elif key == "ctrl e": - self.parent.selected_node_info() - elif key == "ctrl p": - self.parent.reinit_lxmf_peers() - self.parent.show_peers() elif key == "ctrl w": self.parent.browser.disconnect() elif key == "ctrl u": self.parent.browser.url_dialog() - elif key == "ctrl s": - self.parent.browser.save_node_dialog() - else: return super(NetworkLeftPile, self).keypress(size, key) class NetworkDisplay(): list_width = 0.33 - given_list_width = 52 def __init__(self, app): self.app = app @@ -1567,7 +881,6 @@ class NetworkDisplay(): self.browser.loopback = self.app.node.destination.hash self.known_nodes_display = KnownNodes(self.app) - self.lxmf_peers_display = LXMFPeers(self.app) self.network_stats_display = NetworkStats(self.app, self) self.announce_stream_display = AnnounceStream(self.app, self) self.local_peer_display = LocalPeer(self.app, self) @@ -1577,9 +890,9 @@ class NetworkDisplay(): self.list_display = 1 self.left_pile = NetworkLeftPile([ - (urwid.WEIGHT, 1, self.known_nodes_display), - # (urwid.PACK, self.network_stats_display), - (urwid.PACK, self.local_peer_display), + ("weight", 1, self.known_nodes_display), + ("pack", self.network_stats_display), + ("pack", self.local_peer_display), ]) self.left_pile.parent = self @@ -1590,10 +903,8 @@ class NetworkDisplay(): self.columns = urwid.Columns( [ - # (urwid.WEIGHT, NetworkDisplay.list_width, self.left_area), - # (urwid.WEIGHT, self.right_area_width, self.right_area) - (NetworkDisplay.given_list_width, self.left_area), - (urwid.WEIGHT, 1, self.right_area) + ("weight", NetworkDisplay.list_width, self.left_area), + ("weight", self.right_area_width, self.right_area) ], dividechars=0, focus_column=0 ) @@ -1603,45 +914,14 @@ class NetworkDisplay(): def toggle_list(self): if self.list_display != 0: - options = self.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) + options = self.left_pile.options(height_type="weight", height_amount=1) self.left_pile.contents[0] = (self.announce_stream_display, options) self.list_display = 0 else: - options = self.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) + options = self.left_pile.options(height_type="weight", height_amount=1) self.left_pile.contents[0] = (self.known_nodes_display, options) self.list_display = 1 - def toggle_fullscreen(self): - if NetworkDisplay.given_list_width != 0: - self.saved_list_width = NetworkDisplay.given_list_width - NetworkDisplay.given_list_width = 0 - else: - NetworkDisplay.given_list_width = self.saved_list_width - - options = self.widget.options("given", NetworkDisplay.given_list_width) - self.widget.contents[0] = (self.left_area, options) - - def show_peers(self): - options = self.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) - self.left_pile.contents[0] = (self.lxmf_peers_display, options) - - if self.list_display != 0: - self.list_display = 0 - else: - self.list_display = 1 - - def selected_node_info(self): - if self.list_display == 1: - parent = self.app.ui.main_display.sub_displays.network_display - selected_node_entry = parent.known_nodes_display.ilb.get_selected_item() - if selected_node_entry is not None: - selected_node_hash = selected_node_entry.base_widget.display_widget.source_hash - - if selected_node_hash is not None: - info_widget = KnownNodeInfo(selected_node_hash) - options = parent.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) - parent.left_pile.contents[0] = (info_widget, options) - def focus_lists(self): self.columns.focus_position = 0 @@ -1651,29 +931,22 @@ class NetworkDisplay(): self.close_list_dialogs() self.announce_stream_display.rebuild_widget_list() - def reinit_lxmf_peers(self): - if self.lxmf_peers_display: - si = self.lxmf_peers_display.ilb.get_selected_position() - else: - si = None - self.lxmf_peers_display = LXMFPeers(self.app) - self.lxmf_peers_display.delegate = self - self.close_list_dialogs() - if si != None: - self.lxmf_peers_display.ilb.select_item(si) - def close_list_dialogs(self): if self.list_display == 0: - options = self.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) + options = self.left_pile.options(height_type="weight", height_amount=1) self.left_pile.contents[0] = (self.announce_stream_display, options) else: - options = self.left_pile.options(height_type=urwid.WEIGHT, height_amount=1) + options = self.left_pile.options(height_type="weight", height_amount=1) self.left_pile.contents[0] = (self.known_nodes_display, options) def start(self): self.local_peer_display.start() self.node_info_display.start() self.network_stats_display.start() + # There seems to be an intermittent memory leak somewhere + # in the periodic updating here. The periodic updater should + # not be needed anymore, so dis + #self.announce_stream_display.start() def shortcuts(self): return self.shortcuts_display @@ -1686,177 +959,6 @@ class NetworkDisplay(): self.known_nodes_display.rebuild_widget_list() -class LXMFPeers(urwid.WidgetWrap): - def __init__(self, app): - self.app = app - self.peer_list = app.message_router.peers - # self.peer_list = {} - - g = self.app.ui.glyphs - - self.widget_list = self.make_peer_widgets() - - self.ilb = IndicativeListBox( - self.widget_list, - on_selection_change=self.node_list_selection, - initialization_is_selection_change=False, - highlight_offFocus="list_off_focus" - ) - - if len(self.peer_list) > 0: - self.display_widget = self.ilb - widget_style = None - self.no_content = False - else: - self.no_content = True - widget_style = "inactive_text" - self.pile = urwid.Pile([ - urwid.Text(("warning_text", g["info"]+"\n"), align=urwid.CENTER), - SelectText(("warning_text", "Currently, no LXMF nodes are peered\n\n"), align=urwid.CENTER), - ]) - self.display_widget = urwid.Filler(self.pile, valign=urwid.TOP, height=urwid.PACK) - - if hasattr(self, "peer_list") and self.peer_list: - pl = len(self.peer_list) - else: - pl = 0 - super().__init__(urwid.AttrMap(urwid.LineBox(self.display_widget, title=f"LXMF Propagation Peers ({pl})"), widget_style)) - - def keypress(self, size, key): - if key == "up" and (self.no_content or self.ilb.first_item_is_selected()): - nomadnet.NomadNetworkApp.get_shared_instance().ui.main_display.frame.focus_position = "header" - elif key == "ctrl x": - self.delete_selected_entry() - elif key == "ctrl r": - self.sync_selected_entry() - - return super(LXMFPeers, self).keypress(size, key) - - - def node_list_selection(self, arg1, arg2): - pass - - def delete_selected_entry(self): - si = self.ilb.get_selected_item() - if si != None: - destination_hash = si.original_widget.destination_hash - self.app.message_router.unpeer(destination_hash) - self.delegate.reinit_lxmf_peers() - self.delegate.show_peers() - - def sync_selected_entry(self): - sync_grace = 10 - si = self.ilb.get_selected_item() - if si != None: - destination_hash = si.original_widget.destination_hash - if destination_hash in self.app.message_router.peers: - peer = self.app.message_router.peers[destination_hash] - if time.time() > peer.last_sync_attempt+sync_grace: - peer.next_sync_attempt = time.time()-1 - - def job(): - peer.sync() - threading.Thread(target=job, daemon=True).start() - - time.sleep(0.25) - - def dismiss_dialog(sender): - self.close_list_dialogs() - - dialog = ListDialogLineBox( - urwid.Pile([ - urwid.Text("A delivery sync of all unhandled LXMs was manually requested for the selected node\n", align=urwid.CENTER), - urwid.Columns([ - (urwid.WEIGHT, 0.1, urwid.Text("")), - (urwid.WEIGHT, 0.45, urwid.Button("OK", on_press=dismiss_dialog)), - ]) - ]), - title="!", - - ) - dialog.delegate = self.delegate - bottom = self - - overlay = urwid.Overlay(dialog, bottom, align=urwid.CENTER, width=urwid.RELATIVE_100, valign=urwid.MIDDLE, height=urwid.PACK, left=2, right=2) - - options = self.delegate.left_pile.options(urwid.WEIGHT, 1) - self.delegate.left_pile.contents[0] = (overlay, options) - - - def close_list_dialogs(self): - self.delegate.reinit_lxmf_peers() - self.delegate.show_peers() - - def rebuild_widget_list(self): - self.peer_list = self.app.message_router.peers - self.widget_list = self.make_peer_widgets() - self.ilb.set_body(self.widget_list) - if len(self.widget_list) > 0: - self.no_content = False - else: - self.no_content = True - self.delegate.reinit_lxmf_peers() - - def make_peer_widgets(self): - widget_list = [] - sorted_peers = sorted(self.peer_list, key=lambda pid: (self.app.directory.pn_trust_level(pid), self.peer_list[pid].sync_transfer_rate), reverse=True) - for peer_id in sorted_peers: - peer = self.peer_list[peer_id] - trust_level = self.app.directory.pn_trust_level(peer_id) - pe = LXMFPeerEntry(self.app, peer, self, trust_level) - pe.destination_hash = peer.destination_hash - widget_list.append(pe) - - return widget_list - -class LXMFPeerEntry(urwid.WidgetWrap): - def __init__(self, app, peer, delegate, trust_level): - destination_hash = peer.destination_hash - - self.app = app - g = self.app.ui.glyphs - - node_identity = RNS.Identity.recall(destination_hash) - display_str = RNS.prettyhexrep(destination_hash) - if node_identity != None: - node_hash = RNS.Destination.hash_from_name_and_identity("nomadnetwork.node", node_identity) - display_name = self.app.directory.alleged_display_str(node_hash) - if display_name != None: - display_str = str(display_name)+"\n "+display_str - - sym = g["sent"] - style = "list_unknown" - focus_style = "list_focus" - - alive_string = "Unknown" - if hasattr(peer, "alive"): - if peer.alive: - alive_string = "Available" - if trust_level == DirectoryEntry.TRUSTED: - style = "list_trusted" - focus_style = "list_focus_trusted" - else: - style = "list_normal" - focus_style = "list_focus" - else: - alive_string = "Unresponsive" - style = "list_unresponsive" - focus_style = "list_focus_unresponsive" - - if peer.propagation_transfer_limit: - txfer_limit = RNS.prettysize(peer.propagation_transfer_limit*1000) - else: - txfer_limit = "No" - ar = round(peer.acceptance_rate*100, 2) - peer_info_str = sym+" "+display_str+"\n "+alive_string+", last heard "+pretty_date(int(peer.last_heard)) - peer_info_str += "\n "+str(peer.unhandled_message_count)+f" unhandled LXMs, {txfer_limit} sync limit\n" - peer_info_str += f" {RNS.prettyspeed(peer.sync_transfer_rate)} STR, " - peer_info_str += f"{RNS.prettyspeed(peer.link_establishment_rate)} LER, {ar}% AR\n" - widget = ListEntry(peer_info_str) - self.display_widget = urwid.AttrMap(widget, style, focus_style) - self.display_widget.destination_hash = destination_hash - super().__init__(self.display_widget) - def pretty_date(time=False): """ diff --git a/nomadnet/vendor/AsciiChart.py b/nomadnet/vendor/AsciiChart.py deleted file mode 100644 index cd24d56..0000000 --- a/nomadnet/vendor/AsciiChart.py +++ /dev/null @@ -1,91 +0,0 @@ -from __future__ import division -from math import ceil, floor, isnan -# Derived from asciichartpy | https://github.com/kroitor/asciichart/blob/master/asciichartpy/__init__.py -class AsciiChart: - def __init__(self, glyphset="unicode"): - self.symbols = ['┼', '┤', '╶', '╴', '─', '╰', '╭', '╮', '╯', '│'] - if glyphset == "plain": - self.symbols = ['+', '|', '-', '-', '-', '\'', ',', '.', '`', '|'] - def plot(self, series, cfg=None): - if len(series) == 0: - return '' - if not isinstance(series[0], list): - if all(isnan(n) for n in series): - return '' - else: - series = [series] - cfg = cfg or {} - minimum = cfg.get('min', min(filter(lambda n: not isnan(n), [j for i in series for j in i]))) - maximum = cfg.get('max', max(filter(lambda n: not isnan(n), [j for i in series for j in i]))) - symbols = cfg.get('symbols', self.symbols) - if minimum > maximum: - raise ValueError('The min value cannot exceed the max value.') - interval = maximum - minimum - offset = cfg.get('offset', 3) - height = cfg.get('height', interval) - ratio = height / interval if interval > 0 else 1 - - min2 = int(floor(minimum * ratio)) - max2 = int(ceil(maximum * ratio)) - - def clamp(n): - return min(max(n, minimum), maximum) - - def scaled(y): - return int(round(clamp(y) * ratio) - min2) - - rows = max2 - min2 - - width = 0 - for i in range(0, len(series)): - width = max(width, len(series[i])) - width += offset - - placeholder = cfg.get('format', '{:8.2f} ') - - result = [[' '] * width for i in range(rows + 1)] - - for y in range(min2, max2 + 1): - if callable(placeholder): - label = placeholder(maximum - ((y - min2) * interval / (rows if rows else 1))).rjust(12) - else: - label = placeholder.format(maximum - ((y - min2) * interval / (rows if rows else 1))) - - result[y - min2][max(offset - len(label), 0)] = label - result[y - min2][offset - 1] = symbols[0] if y == 0 else symbols[1] - - d0 = series[0][0] - if not isnan(d0): - result[rows - scaled(d0)][offset - 1] = symbols[0] - - for i in range(0, len(series)): - for x in range(0, len(series[i]) - 1): - d0 = series[i][x + 0] - d1 = series[i][x + 1] - - if isnan(d0) and isnan(d1): - continue - - if isnan(d0) and not isnan(d1): - result[rows - scaled(d1)][x + offset] = symbols[2] - continue - - if not isnan(d0) and isnan(d1): - result[rows - scaled(d0)][x + offset] = symbols[3] - continue - - y0 = scaled(d0) - y1 = scaled(d1) - if y0 == y1: - result[rows - y0][x + offset] = symbols[4] - continue - - result[rows - y1][x + offset] = symbols[5] if y0 > y1 else symbols[6] - result[rows - y0][x + offset] = symbols[7] if y0 > y1 else symbols[8] - - start = min(y0, y1) + 1 - end = max(y0, y1) - for y in range(start, end): - result[rows - y][x + offset] = symbols[9] - - return '\n'.join([''.join(row).rstrip() for row in result]) \ No newline at end of file diff --git a/nomadnet/vendor/Scrollable.py b/nomadnet/vendor/Scrollable.py index e54e1b0..ee28a46 100644 --- a/nomadnet/vendor/Scrollable.py +++ b/nomadnet/vendor/Scrollable.py @@ -50,7 +50,7 @@ class Scrollable(urwid.WidgetDecoration): self._old_cursor_coords = None self._rows_max_cached = 0 self.force_forward_keypress = force_forward_keypress - super().__init__(widget) + self.__super.__init__(widget) def render(self, size, focus=False): maxcol, maxrow = size @@ -107,51 +107,6 @@ class Scrollable(urwid.WidgetDecoration): if canv_full.cursor is not None: # Full canvas contains the cursor, but scrolled out of view self._forward_keypress = False - - # Reset cursor position on page/up down scrolling - try: - if hasattr(ow, "automove_cursor_on_scroll") and ow.automove_cursor_on_scroll: - pwi = 0 - ch = 0 - last_hidden = False - first_visible = False - for w,o in ow.contents: - wcanv = w.render((maxcol,)) - wh = wcanv.rows() - if wh: - ch += wh - - if not last_hidden and ch >= self._trim_top: - last_hidden = True - - elif last_hidden: - if not first_visible: - first_visible = True - - if w.selectable(): - ow.focus_item = pwi - - st = None - nf = ow.get_focus() - if hasattr(nf, "key_timeout"): - st = nf - elif hasattr(nf, "original_widget"): - no = nf.original_widget - if hasattr(no, "original_widget"): - st = no.original_widget - else: - if hasattr(no, "key_timeout"): - st = no - - if st and hasattr(st, "key_timeout") and hasattr(st, "keypress") and callable(st.keypress): - st.keypress(None, None) - - break - - pwi += 1 - except Exception as e: - pass - else: # Original widget does not have a cursor, but may be selectable @@ -268,10 +223,10 @@ class Scrollable(urwid.WidgetDecoration): def _get_original_widget_size(self, size): ow = self._original_widget sizing = ow.sizing() - if FLOW in sizing: - return (size[0],) - elif FIXED in sizing: + if FIXED in sizing: return () + elif FLOW in sizing: + return (size[0],) def get_scrollpos(self, size=None, focus=False): """Current scrolling position @@ -340,7 +295,7 @@ class ScrollBar(urwid.WidgetDecoration): """ if BOX not in widget.sizing(): raise ValueError('Not a box widget: %r' % widget) - super().__init__(widget) + self.__super.__init__(widget) self._thumb_char = thumb_char self._trough_char = trough_char self.scrollbar_side = side diff --git a/nomadnet/vendor/additional_urwid_widgets/FormWidgets.py b/nomadnet/vendor/additional_urwid_widgets/FormWidgets.py deleted file mode 100644 index 55f9a03..0000000 --- a/nomadnet/vendor/additional_urwid_widgets/FormWidgets.py +++ /dev/null @@ -1,537 +0,0 @@ -import urwid - -class DialogLineBox(urwid.LineBox): - def __init__(self, body, parent=None, title="?"): - super().__init__(body, title=title) - self.parent = parent - - def keypress(self, size, key): - if key == "esc": - if self.parent and hasattr(self.parent, "dismiss_dialog"): - self.parent.dismiss_dialog() - return None - return super().keypress(size, key) - -class Placeholder(urwid.Edit): - def __init__(self, caption="", edit_text="", placeholder="", **kwargs): - super().__init__(caption, edit_text, **kwargs) - self.placeholder = placeholder - - def render(self, size, focus=False): - if not self.edit_text and not focus: - placeholder_widget = urwid.Text(("placeholder", self.placeholder)) - return placeholder_widget.render(size, focus) - else: - return super().render(size, focus) - -class Dropdown(urwid.WidgetWrap): - signals = ['change'] # emit for urwid.connect_signal fn - - def __init__(self, label, options, default=None): - self.label = label - self.options = options - self.selected = default if default is not None else options[0] - - self.main_text = f"{self.selected}" - self.main_button = urwid.SelectableIcon(self.main_text, 0) - self.main_button = urwid.AttrMap(self.main_button, "button_normal", "button_focus") - - self.option_widgets = [] - for opt in options: - icon = urwid.SelectableIcon(opt, 0) - icon = urwid.AttrMap(icon, "list_normal", "list_focus") - self.option_widgets.append(icon) - - self.options_walker = urwid.SimpleFocusListWalker(self.option_widgets) - self.options_listbox = urwid.ListBox(self.options_walker) - self.dropdown_box = None # will be created on open_dropdown - - self.pile = urwid.Pile([self.main_button]) - self.dropdown_visible = False - - super().__init__(self.pile) - - def open_dropdown(self): - if not self.dropdown_visible: - height = len(self.options) - self.dropdown_box = urwid.BoxAdapter(self.options_listbox, height) - self.pile.contents.append((self.dropdown_box, self.pile.options())) - self.dropdown_visible = True - self.pile.focus_position = 1 - self.options_walker.set_focus(0) - - def close_dropdown(self): - if self.dropdown_visible: - self.pile.contents.pop() # remove the dropdown_box - self.dropdown_visible = False - self.pile.focus_position = 0 - self.dropdown_box = None - - def keypress(self, size, key): - if not self.dropdown_visible: - if key == "enter": - self.open_dropdown() - return None - return self.main_button.keypress(size, key) - else: - if key == "enter": - focus_result = self.options_walker.get_focus() - if focus_result is not None: - focus_widget = focus_result[0] - new_val = focus_widget.base_widget.text - old_val = self.selected - self.selected = new_val - self.main_button.base_widget.set_text(f"{self.selected}") - - if old_val != new_val: - self._emit('change', new_val) - - self.close_dropdown() - return None - return self.dropdown_box.keypress(size, key) - - def get_value(self): - return self.selected - -class ValidationError(urwid.Text): - def __init__(self, message=""): - super().__init__(("error", message)) - -class FormField: - def __init__(self, config_key, transform=None): - self.config_key = config_key - self.transform = transform or (lambda x: x) - -class FormEdit(Placeholder, FormField): - def __init__(self, config_key, caption="", edit_text="", placeholder="", validation_types=None, transform=None, **kwargs): - Placeholder.__init__(self, caption, edit_text, placeholder, **kwargs) - FormField.__init__(self, config_key, transform) - self.validation_types = validation_types or [] - self.error_widget = urwid.Text("") - self.error = None - - def get_value(self): - return self.transform(self.edit_text.strip()) - - def validate(self): - value = self.edit_text.strip() - self.error = None - - for validation in self.validation_types: - if validation == "required": - if not value: - self.error = "This field is required" - break - elif validation == "number": - if value and not value.replace('-', '').replace('.', '').isdigit(): - self.error = "This field must be a number" - break - elif validation == "float": - try: - if value: - float(value) - except ValueError: - self.error = "This field must be decimal number" - break - - self.error_widget.set_text(("error", self.error or "")) - return self.error is None - -class FormCheckbox(urwid.CheckBox, FormField): - def __init__(self, config_key, label="", state=False, validation_types=None, transform=None, **kwargs): - urwid.CheckBox.__init__(self, label, state, **kwargs) - FormField.__init__(self, config_key, transform) - self.validation_types = validation_types or [] - self.error_widget = urwid.Text("") - self.error = None - - def get_value(self): - return self.transform(self.get_state()) - - def validate(self): - - value = self.get_state() - self.error = None - - for validation in self.validation_types: - if validation == "required": - if not value: - self.error = "This field is required" - break - - self.error_widget.set_text(("error", self.error or "")) - return self.error is None - -class FormDropdown(Dropdown, FormField): - signals = ['change'] - - def __init__(self, config_key, label, options, default=None, validation_types=None, transform=None): - self.options = [str(opt) for opt in options] - - if default is not None: - default_str = str(default) - if default_str in self.options: - default = default_str - elif transform: - try: - default_transformed = transform(default_str) - for opt in self.options: - if transform(opt) == default_transformed: - default = opt - break - except: - default = self.options[0] - else: - default = self.options[0] - else: - default = self.options[0] - - Dropdown.__init__(self, label, self.options, default) - FormField.__init__(self, config_key, transform) - - self.validation_types = validation_types or [] - self.error_widget = urwid.Text("") - self.error = None - - if hasattr(self, 'main_button'): - self.main_button.base_widget.set_text(str(default)) - - def get_value(self): - return self.transform(self.selected) - - def validate(self): - value = self.get_value() - self.error = None - - for validation in self.validation_types: - if validation == "required": - if not value: - self.error = "This field is required" - break - - self.error_widget.set_text(("error", self.error or "")) - return self.error is None - - def open_dropdown(self): - if not self.dropdown_visible: - super().open_dropdown() - try: - current_index = self.options.index(self.selected) - self.options_walker.set_focus(current_index) - except ValueError: - pass - -class FormMultiList(urwid.Pile, FormField): - def __init__(self, config_key, placeholder="", validation_types=None, transform=None, **kwargs): - self.entries = [] - self.error_widget = urwid.Text("") - self.error = None - self.placeholder = placeholder - self.validation_types = validation_types or [] - - first_entry = self.create_entry_row() - self.entries.append(first_entry) - - self.add_button = urwid.Button("+ Add Another", on_press=self.add_entry) - add_button_padded = urwid.Padding(self.add_button, left=2, right=2) - - pile_widgets = [first_entry, add_button_padded] - urwid.Pile.__init__(self, pile_widgets) - FormField.__init__(self, config_key, transform) - - def create_entry_row(self): - edit = urwid.Edit("", "") - entry_row = urwid.Columns([ - ('weight', 1, edit), - (3, urwid.Button("×", on_press=lambda button: self.remove_entry(button, entry_row))), - ]) - return entry_row - - def remove_entry(self, button, entry_row): - if len(self.entries) > 1: - self.entries.remove(entry_row) - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def add_entry(self, button): - new_entry = self.create_entry_row() - self.entries.append(new_entry) - - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def get_pile_widgets(self): - return self.entries + [urwid.Padding(self.add_button, left=2, right=2)] - - def get_value(self): - values = [] - for entry in self.entries: - edit_widget = entry.contents[0][0] - value = edit_widget.edit_text.strip() - if value: - values.append(value) - return self.transform(values) - - def validate(self): - values = self.get_value() - self.error = None - - for validation in self.validation_types: - if validation == "required" and not values: - self.error = "At least one entry is required" - break - - self.error_widget.set_text(("error", self.error or "")) - return self.error is None - - -class FormMultiTable(urwid.Pile, FormField): - def __init__(self, config_key, fields, validation_types=None, transform=None, **kwargs): - self.entries = [] - self.fields = fields - self.error_widget = urwid.Text("") - self.error = None - self.validation_types = validation_types or [] - - header_columns = [('weight', 3, urwid.Text(("list_focus", "Name")))] - for field_key, field_config in self.fields.items(): - header_columns.append(('weight', 2, urwid.Text(("list_focus", field_config.get("label", field_key))))) - header_columns.append((4, urwid.Text(("list_focus", "")))) - - self.header_row = urwid.Columns(header_columns) - - first_entry = self.create_entry_row() - self.entries.append(first_entry) - - self.add_button = urwid.Button("+ Add ", on_press=self.add_entry) - add_button_padded = urwid.Padding(self.add_button, left=2, right=2) - - pile_widgets = [ - self.header_row, - urwid.Divider("-"), - first_entry, - add_button_padded - ] - - urwid.Pile.__init__(self, pile_widgets) - FormField.__init__(self, config_key, transform) - - def create_entry_row(self, name="", values=None): - if values is None: - values = {} - - name_edit = urwid.Edit("", name) - - columns = [('weight', 3, name_edit)] - - field_widgets = {} - for field_key, field_config in self.fields.items(): - field_value = values.get(field_key, "") - - if field_config.get("type") == "checkbox": - widget = urwid.CheckBox("", state=bool(field_value)) - elif field_config.get("type") == "dropdown": - # TODO: dropdown in MultiTable - widget = urwid.Edit("", str(field_value)) - else: - widget = urwid.Edit("", str(field_value)) - - field_widgets[field_key] = widget - columns.append(('weight', 2, widget)) - - remove_button = urwid.Button("×", on_press=lambda button: self.remove_entry(button, entry_row)) - columns.append((4, remove_button)) - - entry_row = urwid.Columns(columns) - entry_row.name_edit = name_edit - entry_row.field_widgets = field_widgets - - return entry_row - - def remove_entry(self, button, entry_row): - if len(self.entries) > 1: - self.entries.remove(entry_row) - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def add_entry(self, button): - new_entry = self.create_entry_row() - self.entries.append(new_entry) - - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def get_pile_widgets(self): - return [ - self.header_row, - urwid.Divider("-") - ] + self.entries + [ - urwid.Padding(self.add_button, left=2, right=2) - ] - - def get_value(self): - values = {} - for entry in self.entries: - name = entry.name_edit.edit_text.strip() - if name: - subinterface = {} - subinterface["interface_enabled"] = True - - for field_key, widget in entry.field_widgets.items(): - field_config = self.fields.get(field_key, {}) - - if hasattr(widget, "get_state"): - value = widget.get_state() - elif hasattr(widget, "edit_text"): - value = widget.edit_text.strip() - - transform = field_config.get("transform") - if transform and value: - try: - value = transform(value) - except (ValueError, TypeError): - value = "" - - if value: - subinterface[field_key] = value - - values[name] = subinterface - - return self.transform(values) if self.transform else values - - def set_value(self, value): - self.entries = [] - - if not value: - self.entries.append(self.create_entry_row()) - else: - for name, config in value.items(): - self.entries.append(self.create_entry_row(name=name, values=config)) - - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def validate(self): - values = self.get_value() - self.error = None - - for validation in self.validation_types: - if validation == "required" and not values: - self.error = "At least one subinterface is required" - break - - self.error_widget.set_text(("error", self.error or "")) - return self.error is None - - -class FormKeyValuePairs(urwid.Pile, FormField): - def __init__(self, config_key, validation_types=None, transform=None, **kwargs): - self.entries = [] - self.error_widget = urwid.Text("") - self.error = None - self.validation_types = validation_types or [] - - header_columns = [ - ('weight', 1, urwid.AttrMap(urwid.Text("Parameter Key"), "multitable_header")), - ('weight', 1, urwid.AttrMap(urwid.Text("Parameter Value"), "multitable_header")), - (4, urwid.AttrMap(urwid.Text("Action"), "multitable_header")) - ] - - self.header_row = urwid.AttrMap(urwid.Columns(header_columns), "multitable_header") - - first_entry = self.create_entry_row() - self.entries.append(first_entry) - - self.add_button = urwid.Button("+ Add Parameter", on_press=self.add_entry) - add_button_padded = urwid.Padding(self.add_button, left=2, right=2) - - pile_widgets = [ - self.header_row, - urwid.Divider("-"), - first_entry, - add_button_padded - ] - - urwid.Pile.__init__(self, pile_widgets) - FormField.__init__(self, config_key, transform) - - def create_entry_row(self, key="", value=""): - key_edit = urwid.Edit("", key) - value_edit = urwid.Edit("", value) - - remove_button = urwid.Button("×", on_press=lambda button: self.remove_entry(button, entry_row)) - - entry_row = urwid.Columns([ - ('weight', 1, key_edit), - ('weight', 1, value_edit), - (4, remove_button) - ]) - - entry_row.key_edit = key_edit - entry_row.value_edit = value_edit - - return entry_row - - def remove_entry(self, button, entry_row): - if len(self.entries) > 1: - self.entries.remove(entry_row) - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def add_entry(self, button): - new_entry = self.create_entry_row() - self.entries.append(new_entry) - - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def get_pile_widgets(self): - return [ - self.header_row, - urwid.Divider("-") - ] + self.entries + [ - urwid.Padding(self.add_button, left=2, right=2) - ] - - def get_value(self): - values = {} - for entry in self.entries: - key = entry.key_edit.edit_text.strip() - value = entry.value_edit.edit_text.strip() - - if key: - if value.isdigit(): - values[key] = int(value) - elif value.replace('.', '', 1).isdigit() and value.count('.') <= 1: - values[key] = float(value) - elif value.lower() == 'true': - values[key] = True - elif value.lower() == 'false': - values[key] = False - else: - values[key] = value - - return self.transform(values) if self.transform else values - - def set_value(self, value): - self.entries = [] - - if not value or not isinstance(value, dict): - self.entries.append(self.create_entry_row()) - else: - for key, val in value.items(): - self.entries.append(self.create_entry_row(key=key, value=str(val))) - - self.contents = [(w, self.options()) for w in self.get_pile_widgets()] - - def validate(self): - values = self.get_value() - self.error = None - - keys = [entry.key_edit.edit_text.strip() for entry in self.entries - if entry.key_edit.edit_text.strip()] - if len(keys) != len(set(keys)): - self.error = "Duplicate keys are not allowed" - self.error_widget.set_text(("error", self.error)) - return False - - for validation in self.validation_types: - if validation == "required" and not values: - self.error = "Atleast one parameter is required" - break - - self.error_widget.set_text(("error", self.error or "")) - return self.error is None \ No newline at end of file diff --git a/nomadnet/vendor/additional_urwid_widgets/widgets/indicative_listbox.py b/nomadnet/vendor/additional_urwid_widgets/widgets/indicative_listbox.py index 9797319..d4f18dc 100644 --- a/nomadnet/vendor/additional_urwid_widgets/widgets/indicative_listbox.py +++ b/nomadnet/vendor/additional_urwid_widgets/widgets/indicative_listbox.py @@ -269,13 +269,11 @@ class IndicativeListBox(urwid.WidgetWrap): # mousewheel up elif button == 4.0: - # was_handeled = self._pass_key_to_contained_listbox(modified_size, "page up") - was_handeled = self._pass_key_to_contained_listbox(modified_size, "up") + was_handeled = self._pass_key_to_contained_listbox(modified_size, "page up") # mousewheel down elif button == 5.0: - # was_handeled = self._pass_key_to_contained_listbox(modified_size, "page down") - was_handeled = self._pass_key_to_contained_listbox(modified_size, "down") + was_handeled = self._pass_key_to_contained_listbox(modified_size, "page down") focus_position_after_input = self.get_selected_position() diff --git a/nomadnet/vendor/configobj.py b/nomadnet/vendor/configobj.py new file mode 100644 index 0000000..58eb7d0 --- /dev/null +++ b/nomadnet/vendor/configobj.py @@ -0,0 +1,2483 @@ +# configobj.py +# A config file reader/writer that supports nested sections in config files. +# Copyright (C) 2005-2014: +# (name) : (email) +# Michael Foord: fuzzyman AT voidspace DOT org DOT uk +# Nicola Larosa: nico AT tekNico DOT net +# Rob Dennis: rdennis AT gmail DOT com +# Eli Courtwright: eli AT courtwright DOT org + +# This software is licensed under the terms of the BSD license. +# http://opensource.org/licenses/BSD-3-Clause + +# ConfigObj 5 - main repository for documentation and issue tracking: +# https://github.com/DiffSK/configobj + +import os +import re +import sys + +from codecs import BOM_UTF8, BOM_UTF16, BOM_UTF16_BE, BOM_UTF16_LE + +import six +__version__ = '5.0.6' + +# imported lazily to avoid startup performance hit if it isn't used +compiler = None + +# A dictionary mapping BOM to +# the encoding to decode with, and what to set the +# encoding attribute to. +BOMS = { + BOM_UTF8: ('utf_8', None), + BOM_UTF16_BE: ('utf16_be', 'utf_16'), + BOM_UTF16_LE: ('utf16_le', 'utf_16'), + BOM_UTF16: ('utf_16', 'utf_16'), + } +# All legal variants of the BOM codecs. +# TODO: the list of aliases is not meant to be exhaustive, is there a +# better way ? +BOM_LIST = { + 'utf_16': 'utf_16', + 'u16': 'utf_16', + 'utf16': 'utf_16', + 'utf-16': 'utf_16', + 'utf16_be': 'utf16_be', + 'utf_16_be': 'utf16_be', + 'utf-16be': 'utf16_be', + 'utf16_le': 'utf16_le', + 'utf_16_le': 'utf16_le', + 'utf-16le': 'utf16_le', + 'utf_8': 'utf_8', + 'u8': 'utf_8', + 'utf': 'utf_8', + 'utf8': 'utf_8', + 'utf-8': 'utf_8', + } + +# Map of encodings to the BOM to write. +BOM_SET = { + 'utf_8': BOM_UTF8, + 'utf_16': BOM_UTF16, + 'utf16_be': BOM_UTF16_BE, + 'utf16_le': BOM_UTF16_LE, + None: BOM_UTF8 + } + + +def match_utf8(encoding): + return BOM_LIST.get(encoding.lower()) == 'utf_8' + + +# Quote strings used for writing values +squot = "'%s'" +dquot = '"%s"' +noquot = "%s" +wspace_plus = ' \r\n\v\t\'"' +tsquot = '"""%s"""' +tdquot = "'''%s'''" + +# Sentinel for use in getattr calls to replace hasattr +MISSING = object() + +__all__ = ( + 'DEFAULT_INDENT_TYPE', + 'DEFAULT_INTERPOLATION', + 'ConfigObjError', + 'NestingError', + 'ParseError', + 'DuplicateError', + 'ConfigspecError', + 'ConfigObj', + 'SimpleVal', + 'InterpolationError', + 'InterpolationLoopError', + 'MissingInterpolationOption', + 'RepeatSectionError', + 'ReloadError', + 'UnreprError', + 'UnknownType', + 'flatten_errors', + 'get_extra_values' +) + +DEFAULT_INTERPOLATION = 'configparser' +DEFAULT_INDENT_TYPE = ' ' +MAX_INTERPOL_DEPTH = 10 + +OPTION_DEFAULTS = { + 'interpolation': True, + 'raise_errors': False, + 'list_values': True, + 'create_empty': False, + 'file_error': False, + 'configspec': None, + 'stringify': True, + # option may be set to one of ('', ' ', '\t') + 'indent_type': None, + 'encoding': None, + 'default_encoding': None, + 'unrepr': False, + 'write_empty_values': False, +} + +# this could be replaced if six is used for compatibility, or there are no +# more assertions about items being a string + + +def getObj(s): + global compiler + if compiler is None: + import compiler + s = "a=" + s + p = compiler.parse(s) + return p.getChildren()[1].getChildren()[0].getChildren()[1] + + +class UnknownType(Exception): + pass + + +class Builder(object): + + def build(self, o): + if m is None: + raise UnknownType(o.__class__.__name__) + return m(o) + + def build_List(self, o): + return list(map(self.build, o.getChildren())) + + def build_Const(self, o): + return o.value + + def build_Dict(self, o): + d = {} + i = iter(map(self.build, o.getChildren())) + for el in i: + d[el] = next(i) + return d + + def build_Tuple(self, o): + return tuple(self.build_List(o)) + + def build_Name(self, o): + if o.name == 'None': + return None + if o.name == 'True': + return True + if o.name == 'False': + return False + + # An undefined Name + raise UnknownType('Undefined Name') + + def build_Add(self, o): + real, imag = list(map(self.build_Const, o.getChildren())) + try: + real = float(real) + except TypeError: + raise UnknownType('Add') + if not isinstance(imag, complex) or imag.real != 0.0: + raise UnknownType('Add') + return real+imag + + def build_Getattr(self, o): + parent = self.build(o.expr) + return getattr(parent, o.attrname) + + def build_UnarySub(self, o): + return -self.build_Const(o.getChildren()[0]) + + def build_UnaryAdd(self, o): + return self.build_Const(o.getChildren()[0]) + + +_builder = Builder() + + +def unrepr(s): + if not s: + return s + + # this is supposed to be safe + import ast + return ast.literal_eval(s) + + +class ConfigObjError(SyntaxError): + """ + This is the base class for all errors that ConfigObj raises. + It is a subclass of SyntaxError. + """ + def __init__(self, message='', line_number=None, line=''): + self.line = line + self.line_number = line_number + SyntaxError.__init__(self, message) + + +class NestingError(ConfigObjError): + """ + This error indicates a level of nesting that doesn't match. + """ + + +class ParseError(ConfigObjError): + """ + This error indicates that a line is badly written. + It is neither a valid ``key = value`` line, + nor a valid section marker line. + """ + + +class ReloadError(IOError): + """ + A 'reload' operation failed. + This exception is a subclass of ``IOError``. + """ + def __init__(self): + IOError.__init__(self, 'reload failed, filename is not set.') + + +class DuplicateError(ConfigObjError): + """ + The keyword or section specified already exists. + """ + + +class ConfigspecError(ConfigObjError): + """ + An error occured whilst parsing a configspec. + """ + + +class InterpolationError(ConfigObjError): + """Base class for the two interpolation errors.""" + + +class InterpolationLoopError(InterpolationError): + """Maximum interpolation depth exceeded in string interpolation.""" + + def __init__(self, option): + InterpolationError.__init__( + self, + 'interpolation loop detected in value "%s".' % option) + + +class RepeatSectionError(ConfigObjError): + """ + This error indicates additional sections in a section with a + ``__many__`` (repeated) section. + """ + + +class MissingInterpolationOption(InterpolationError): + """A value specified for interpolation was missing.""" + def __init__(self, option): + msg = 'missing option "%s" in interpolation.' % option + InterpolationError.__init__(self, msg) + + +class UnreprError(ConfigObjError): + """An error parsing in unrepr mode.""" + + + +class InterpolationEngine(object): + """ + A helper class to help perform string interpolation. + + This class is an abstract base class; its descendants perform + the actual work. + """ + + # compiled regexp to use in self.interpolate() + _KEYCRE = re.compile(r"%\(([^)]*)\)s") + _cookie = '%' + + def __init__(self, section): + # the Section instance that "owns" this engine + self.section = section + + + def interpolate(self, key, value): + # short-cut + if not self._cookie in value: + return value + + def recursive_interpolate(key, value, section, backtrail): + """The function that does the actual work. + + ``value``: the string we're trying to interpolate. + ``section``: the section in which that string was found + ``backtrail``: a dict to keep track of where we've been, + to detect and prevent infinite recursion loops + + This is similar to a depth-first-search algorithm. + """ + # Have we been here already? + if (key, section.name) in backtrail: + # Yes - infinite loop detected + raise InterpolationLoopError(key) + # Place a marker on our backtrail so we won't come back here again + backtrail[(key, section.name)] = 1 + + # Now start the actual work + match = self._KEYCRE.search(value) + while match: + # The actual parsing of the match is implementation-dependent, + # so delegate to our helper function + k, v, s = self._parse_match(match) + if k is None: + # That's the signal that no further interpolation is needed + replacement = v + else: + # Further interpolation may be needed to obtain final value + replacement = recursive_interpolate(k, v, s, backtrail) + # Replace the matched string with its final value + start, end = match.span() + value = ''.join((value[:start], replacement, value[end:])) + new_search_start = start + len(replacement) + # Pick up the next interpolation key, if any, for next time + # through the while loop + match = self._KEYCRE.search(value, new_search_start) + + # Now safe to come back here again; remove marker from backtrail + del backtrail[(key, section.name)] + + return value + + # Back in interpolate(), all we have to do is kick off the recursive + # function with appropriate starting values + value = recursive_interpolate(key, value, self.section, {}) + return value + + + def _fetch(self, key): + """Helper function to fetch values from owning section. + + Returns a 2-tuple: the value, and the section where it was found. + """ + # switch off interpolation before we try and fetch anything ! + save_interp = self.section.main.interpolation + self.section.main.interpolation = False + + # Start at section that "owns" this InterpolationEngine + current_section = self.section + while True: + # try the current section first + val = current_section.get(key) + if val is not None and not isinstance(val, Section): + break + # try "DEFAULT" next + val = current_section.get('DEFAULT', {}).get(key) + if val is not None and not isinstance(val, Section): + break + # move up to parent and try again + # top-level's parent is itself + if current_section.parent is current_section: + # reached top level, time to give up + break + current_section = current_section.parent + + # restore interpolation to previous value before returning + self.section.main.interpolation = save_interp + if val is None: + raise MissingInterpolationOption(key) + return val, current_section + + + def _parse_match(self, match): + """Implementation-dependent helper function. + + Will be passed a match object corresponding to the interpolation + key we just found (e.g., "%(foo)s" or "$foo"). Should look up that + key in the appropriate config file section (using the ``_fetch()`` + helper function) and return a 3-tuple: (key, value, section) + + ``key`` is the name of the key we're looking for + ``value`` is the value found for that key + ``section`` is a reference to the section where it was found + + ``key`` and ``section`` should be None if no further + interpolation should be performed on the resulting value + (e.g., if we interpolated "$$" and returned "$"). + """ + raise NotImplementedError() + + + +class ConfigParserInterpolation(InterpolationEngine): + """Behaves like ConfigParser.""" + _cookie = '%' + _KEYCRE = re.compile(r"%\(([^)]*)\)s") + + def _parse_match(self, match): + key = match.group(1) + value, section = self._fetch(key) + return key, value, section + + + +class TemplateInterpolation(InterpolationEngine): + """Behaves like string.Template.""" + _cookie = '$' + _delimiter = '$' + _KEYCRE = re.compile(r""" + \$(?: + (?P\$) | # Two $ signs + (?P[_a-z][_a-z0-9]*) | # $name format + {(?P[^}]*)} # ${name} format + ) + """, re.IGNORECASE | re.VERBOSE) + + def _parse_match(self, match): + # Valid name (in or out of braces): fetch value from section + key = match.group('named') or match.group('braced') + if key is not None: + value, section = self._fetch(key) + return key, value, section + # Escaped delimiter (e.g., $$): return single delimiter + if match.group('escaped') is not None: + # Return None for key and section to indicate it's time to stop + return None, self._delimiter, None + # Anything else: ignore completely, just return it unchanged + return None, match.group(), None + + +interpolation_engines = { + 'configparser': ConfigParserInterpolation, + 'template': TemplateInterpolation, +} + + +def __newobj__(cls, *args): + # Hack for pickle + return cls.__new__(cls, *args) + +class Section(dict): + """ + A dictionary-like object that represents a section in a config file. + + It does string interpolation if the 'interpolation' attribute + of the 'main' object is set to True. + + Interpolation is tried first from this object, then from the 'DEFAULT' + section of this object, next from the parent and its 'DEFAULT' section, + and so on until the main object is reached. + + A Section will behave like an ordered dictionary - following the + order of the ``scalars`` and ``sections`` attributes. + You can use this to change the order of members. + + Iteration follows the order: scalars, then sections. + """ + + + def __setstate__(self, state): + dict.update(self, state[0]) + self.__dict__.update(state[1]) + + def __reduce__(self): + state = (dict(self), self.__dict__) + return (__newobj__, (self.__class__,), state) + + + def __init__(self, parent, depth, main, indict=None, name=None): + """ + * parent is the section above + * depth is the depth level of this section + * main is the main ConfigObj + * indict is a dictionary to initialise the section with + """ + if indict is None: + indict = {} + dict.__init__(self) + # used for nesting level *and* interpolation + self.parent = parent + # used for the interpolation attribute + self.main = main + # level of nesting depth of this Section + self.depth = depth + # purely for information + self.name = name + # + self._initialise() + # we do this explicitly so that __setitem__ is used properly + # (rather than just passing to ``dict.__init__``) + for entry, value in indict.items(): + self[entry] = value + + + def _initialise(self): + # the sequence of scalar values in this Section + self.scalars = [] + # the sequence of sections in this Section + self.sections = [] + # for comments :-) + self.comments = {} + self.inline_comments = {} + # the configspec + self.configspec = None + # for defaults + self.defaults = [] + self.default_values = {} + self.extra_values = [] + self._created = False + + + def _interpolate(self, key, value): + try: + # do we already have an interpolation engine? + engine = self._interpolation_engine + except AttributeError: + # not yet: first time running _interpolate(), so pick the engine + name = self.main.interpolation + if name == True: # note that "if name:" would be incorrect here + # backwards-compatibility: interpolation=True means use default + name = DEFAULT_INTERPOLATION + name = name.lower() # so that "Template", "template", etc. all work + class_ = interpolation_engines.get(name, None) + if class_ is None: + # invalid value for self.main.interpolation + self.main.interpolation = False + return value + else: + # save reference to engine so we don't have to do this again + engine = self._interpolation_engine = class_(self) + # let the engine do the actual work + return engine.interpolate(key, value) + + + def __getitem__(self, key): + """Fetch the item and do string interpolation.""" + val = dict.__getitem__(self, key) + if self.main.interpolation: + if isinstance(val, six.string_types): + return self._interpolate(key, val) + if isinstance(val, list): + def _check(entry): + if isinstance(entry, six.string_types): + return self._interpolate(key, entry) + return entry + new = [_check(entry) for entry in val] + if new != val: + return new + return val + + + def __setitem__(self, key, value, unrepr=False): + """ + Correctly set a value. + + Making dictionary values Section instances. + (We have to special case 'Section' instances - which are also dicts) + + Keys must be strings. + Values need only be strings (or lists of strings) if + ``main.stringify`` is set. + + ``unrepr`` must be set when setting a value to a dictionary, without + creating a new sub-section. + """ + if not isinstance(key, six.string_types): + raise ValueError('The key "%s" is not a string.' % key) + + # add the comment + if key not in self.comments: + self.comments[key] = [] + self.inline_comments[key] = '' + # remove the entry from defaults + if key in self.defaults: + self.defaults.remove(key) + # + if isinstance(value, Section): + if key not in self: + self.sections.append(key) + dict.__setitem__(self, key, value) + elif isinstance(value, dict) and not unrepr: + # First create the new depth level, + # then create the section + if key not in self: + self.sections.append(key) + new_depth = self.depth + 1 + dict.__setitem__( + self, + key, + Section( + self, + new_depth, + self.main, + indict=value, + name=key)) + else: + if key not in self: + self.scalars.append(key) + if not self.main.stringify: + if isinstance(value, six.string_types): + pass + elif isinstance(value, (list, tuple)): + for entry in value: + if not isinstance(entry, six.string_types): + raise TypeError('Value is not a string "%s".' % entry) + else: + raise TypeError('Value is not a string "%s".' % value) + dict.__setitem__(self, key, value) + + + def __delitem__(self, key): + """Remove items from the sequence when deleting.""" + dict. __delitem__(self, key) + if key in self.scalars: + self.scalars.remove(key) + else: + self.sections.remove(key) + del self.comments[key] + del self.inline_comments[key] + + + def get(self, key, default=None): + """A version of ``get`` that doesn't bypass string interpolation.""" + try: + return self[key] + except KeyError: + return default + + + def update(self, indict): + """ + A version of update that uses our ``__setitem__``. + """ + for entry in indict: + self[entry] = indict[entry] + + + def pop(self, key, default=MISSING): + """ + 'D.pop(k[,d]) -> v, remove specified key and return the corresponding value. + If key is not found, d is returned if given, otherwise KeyError is raised' + """ + try: + val = self[key] + except KeyError: + if default is MISSING: + raise + val = default + else: + del self[key] + return val + + + def popitem(self): + """Pops the first (key,val)""" + sequence = (self.scalars + self.sections) + if not sequence: + raise KeyError(": 'popitem(): dictionary is empty'") + key = sequence[0] + val = self[key] + del self[key] + return key, val + + + def clear(self): + """ + A version of clear that also affects scalars/sections + Also clears comments and configspec. + + Leaves other attributes alone : + depth/main/parent are not affected + """ + dict.clear(self) + self.scalars = [] + self.sections = [] + self.comments = {} + self.inline_comments = {} + self.configspec = None + self.defaults = [] + self.extra_values = [] + + + def setdefault(self, key, default=None): + """A version of setdefault that sets sequence if appropriate.""" + try: + return self[key] + except KeyError: + self[key] = default + return self[key] + + + def items(self): + """D.items() -> list of D's (key, value) pairs, as 2-tuples""" + return list(zip((self.scalars + self.sections), list(self.values()))) + + + def keys(self): + """D.keys() -> list of D's keys""" + return (self.scalars + self.sections) + + + def values(self): + """D.values() -> list of D's values""" + return [self[key] for key in (self.scalars + self.sections)] + + + def iteritems(self): + """D.iteritems() -> an iterator over the (key, value) items of D""" + return iter(list(self.items())) + + + def iterkeys(self): + """D.iterkeys() -> an iterator over the keys of D""" + return iter((self.scalars + self.sections)) + + __iter__ = iterkeys + + + def itervalues(self): + """D.itervalues() -> an iterator over the values of D""" + return iter(list(self.values())) + + + def __repr__(self): + """x.__repr__() <==> repr(x)""" + def _getval(key): + try: + return self[key] + except MissingInterpolationOption: + return dict.__getitem__(self, key) + return '{%s}' % ', '.join([('%s: %s' % (repr(key), repr(_getval(key)))) + for key in (self.scalars + self.sections)]) + + __str__ = __repr__ + __str__.__doc__ = "x.__str__() <==> str(x)" + + + # Extra methods - not in a normal dictionary + + def dict(self): + """ + Return a deepcopy of self as a dictionary. + + All members that are ``Section`` instances are recursively turned to + ordinary dictionaries - by calling their ``dict`` method. + + >>> n = a.dict() + >>> n == a + 1 + >>> n is a + 0 + """ + newdict = {} + for entry in self: + this_entry = self[entry] + if isinstance(this_entry, Section): + this_entry = this_entry.dict() + elif isinstance(this_entry, list): + # create a copy rather than a reference + this_entry = list(this_entry) + elif isinstance(this_entry, tuple): + # create a copy rather than a reference + this_entry = tuple(this_entry) + newdict[entry] = this_entry + return newdict + + + def merge(self, indict): + """ + A recursive update - useful for merging config files. + + >>> a = '''[section1] + ... option1 = True + ... [[subsection]] + ... more_options = False + ... # end of file'''.splitlines() + >>> b = '''# File is user.ini + ... [section1] + ... option1 = False + ... # end of file'''.splitlines() + >>> c1 = ConfigObj(b) + >>> c2 = ConfigObj(a) + >>> c2.merge(c1) + >>> c2 + ConfigObj({'section1': {'option1': 'False', 'subsection': {'more_options': 'False'}}}) + """ + for key, val in list(indict.items()): + if (key in self and isinstance(self[key], dict) and + isinstance(val, dict)): + self[key].merge(val) + else: + self[key] = val + + + def rename(self, oldkey, newkey): + """ + Change a keyname to another, without changing position in sequence. + + Implemented so that transformations can be made on keys, + as well as on values. (used by encode and decode) + + Also renames comments. + """ + if oldkey in self.scalars: + the_list = self.scalars + elif oldkey in self.sections: + the_list = self.sections + else: + raise KeyError('Key "%s" not found.' % oldkey) + pos = the_list.index(oldkey) + # + val = self[oldkey] + dict.__delitem__(self, oldkey) + dict.__setitem__(self, newkey, val) + the_list.remove(oldkey) + the_list.insert(pos, newkey) + comm = self.comments[oldkey] + inline_comment = self.inline_comments[oldkey] + del self.comments[oldkey] + del self.inline_comments[oldkey] + self.comments[newkey] = comm + self.inline_comments[newkey] = inline_comment + + + def walk(self, function, raise_errors=True, + call_on_sections=False, **keywargs): + """ + Walk every member and call a function on the keyword and value. + + Return a dictionary of the return values + + If the function raises an exception, raise the errror + unless ``raise_errors=False``, in which case set the return value to + ``False``. + + Any unrecognised keyword arguments you pass to walk, will be pased on + to the function you pass in. + + Note: if ``call_on_sections`` is ``True`` then - on encountering a + subsection, *first* the function is called for the *whole* subsection, + and then recurses into it's members. This means your function must be + able to handle strings, dictionaries and lists. This allows you + to change the key of subsections as well as for ordinary members. The + return value when called on the whole subsection has to be discarded. + + See the encode and decode methods for examples, including functions. + + .. admonition:: caution + + You can use ``walk`` to transform the names of members of a section + but you mustn't add or delete members. + + >>> config = '''[XXXXsection] + ... XXXXkey = XXXXvalue'''.splitlines() + >>> cfg = ConfigObj(config) + >>> cfg + ConfigObj({'XXXXsection': {'XXXXkey': 'XXXXvalue'}}) + >>> def transform(section, key): + ... val = section[key] + ... newkey = key.replace('XXXX', 'CLIENT1') + ... section.rename(key, newkey) + ... if isinstance(val, (tuple, list, dict)): + ... pass + ... else: + ... val = val.replace('XXXX', 'CLIENT1') + ... section[newkey] = val + >>> cfg.walk(transform, call_on_sections=True) + {'CLIENT1section': {'CLIENT1key': None}} + >>> cfg + ConfigObj({'CLIENT1section': {'CLIENT1key': 'CLIENT1value'}}) + """ + out = {} + # scalars first + for i in range(len(self.scalars)): + entry = self.scalars[i] + try: + val = function(self, entry, **keywargs) + # bound again in case name has changed + entry = self.scalars[i] + out[entry] = val + except Exception: + if raise_errors: + raise + else: + entry = self.scalars[i] + out[entry] = False + # then sections + for i in range(len(self.sections)): + entry = self.sections[i] + if call_on_sections: + try: + function(self, entry, **keywargs) + except Exception: + if raise_errors: + raise + else: + entry = self.sections[i] + out[entry] = False + # bound again in case name has changed + entry = self.sections[i] + # previous result is discarded + out[entry] = self[entry].walk( + function, + raise_errors=raise_errors, + call_on_sections=call_on_sections, + **keywargs) + return out + + + def as_bool(self, key): + """ + Accepts a key as input. The corresponding value must be a string or + the objects (``True`` or 1) or (``False`` or 0). We allow 0 and 1 to + retain compatibility with Python 2.2. + + If the string is one of ``True``, ``On``, ``Yes``, or ``1`` it returns + ``True``. + + If the string is one of ``False``, ``Off``, ``No``, or ``0`` it returns + ``False``. + + ``as_bool`` is not case sensitive. + + Any other input will raise a ``ValueError``. + + >>> a = ConfigObj() + >>> a['a'] = 'fish' + >>> a.as_bool('a') + Traceback (most recent call last): + ValueError: Value "fish" is neither True nor False + >>> a['b'] = 'True' + >>> a.as_bool('b') + 1 + >>> a['b'] = 'off' + >>> a.as_bool('b') + 0 + """ + val = self[key] + if val == True: + return True + elif val == False: + return False + else: + try: + if not isinstance(val, six.string_types): + # TODO: Why do we raise a KeyError here? + raise KeyError() + else: + return self.main._bools[val.lower()] + except KeyError: + raise ValueError('Value "%s" is neither True nor False' % val) + + + def as_int(self, key): + """ + A convenience method which coerces the specified value to an integer. + + If the value is an invalid literal for ``int``, a ``ValueError`` will + be raised. + + >>> a = ConfigObj() + >>> a['a'] = 'fish' + >>> a.as_int('a') + Traceback (most recent call last): + ValueError: invalid literal for int() with base 10: 'fish' + >>> a['b'] = '1' + >>> a.as_int('b') + 1 + >>> a['b'] = '3.2' + >>> a.as_int('b') + Traceback (most recent call last): + ValueError: invalid literal for int() with base 10: '3.2' + """ + return int(self[key]) + + + def as_float(self, key): + """ + A convenience method which coerces the specified value to a float. + + If the value is an invalid literal for ``float``, a ``ValueError`` will + be raised. + + >>> a = ConfigObj() + >>> a['a'] = 'fish' + >>> a.as_float('a') #doctest: +IGNORE_EXCEPTION_DETAIL + Traceback (most recent call last): + ValueError: invalid literal for float(): fish + >>> a['b'] = '1' + >>> a.as_float('b') + 1.0 + >>> a['b'] = '3.2' + >>> a.as_float('b') #doctest: +ELLIPSIS + 3.2... + """ + return float(self[key]) + + + def as_list(self, key): + """ + A convenience method which fetches the specified value, guaranteeing + that it is a list. + + >>> a = ConfigObj() + >>> a['a'] = 1 + >>> a.as_list('a') + [1] + >>> a['a'] = (1,) + >>> a.as_list('a') + [1] + >>> a['a'] = [1] + >>> a.as_list('a') + [1] + """ + result = self[key] + if isinstance(result, (tuple, list)): + return list(result) + return [result] + + + def restore_default(self, key): + """ + Restore (and return) default value for the specified key. + + This method will only work for a ConfigObj that was created + with a configspec and has been validated. + + If there is no default value for this key, ``KeyError`` is raised. + """ + default = self.default_values[key] + dict.__setitem__(self, key, default) + if key not in self.defaults: + self.defaults.append(key) + return default + + + def restore_defaults(self): + """ + Recursively restore default values to all members + that have them. + + This method will only work for a ConfigObj that was created + with a configspec and has been validated. + + It doesn't delete or modify entries without default values. + """ + for key in self.default_values: + self.restore_default(key) + + for section in self.sections: + self[section].restore_defaults() + + +class ConfigObj(Section): + """An object to read, create, and write config files.""" + + _keyword = re.compile(r'''^ # line start + (\s*) # indentation + ( # keyword + (?:".*?")| # double quotes + (?:'.*?')| # single quotes + (?:[^'"=].*?) # no quotes + ) + \s*=\s* # divider + (.*) # value (including list values and comments) + $ # line end + ''', + re.VERBOSE) + + _sectionmarker = re.compile(r'''^ + (\s*) # 1: indentation + ((?:\[\s*)+) # 2: section marker open + ( # 3: section name open + (?:"\s*\S.*?\s*")| # at least one non-space with double quotes + (?:'\s*\S.*?\s*')| # at least one non-space with single quotes + (?:[^'"\s].*?) # at least one non-space unquoted + ) # section name close + ((?:\s*\])+) # 4: section marker close + \s*(\#.*)? # 5: optional comment + $''', + re.VERBOSE) + + # this regexp pulls list values out as a single string + # or single values and comments + # FIXME: this regex adds a '' to the end of comma terminated lists + # workaround in ``_handle_value`` + _valueexp = re.compile(r'''^ + (?: + (?: + ( + (?: + (?: + (?:".*?")| # double quotes + (?:'.*?')| # single quotes + (?:[^'",\#][^,\#]*?) # unquoted + ) + \s*,\s* # comma + )* # match all list items ending in a comma (if any) + ) + ( + (?:".*?")| # double quotes + (?:'.*?')| # single quotes + (?:[^'",\#\s][^,]*?)| # unquoted + (?:(? 1: + msg = "Parsing failed with several errors.\nFirst error %s" % info + error = ConfigObjError(msg) + else: + error = self._errors[0] + # set the errors attribute; it's a list of tuples: + # (error_type, message, line_number) + error.errors = self._errors + # set the config attribute + error.config = self + raise error + # delete private attributes + del self._errors + + if configspec is None: + self.configspec = None + else: + self._handle_configspec(configspec) + + + def _initialise(self, options=None): + if options is None: + options = OPTION_DEFAULTS + + # initialise a few variables + self.filename = None + self._errors = [] + self.raise_errors = options['raise_errors'] + self.interpolation = options['interpolation'] + self.list_values = options['list_values'] + self.create_empty = options['create_empty'] + self.file_error = options['file_error'] + self.stringify = options['stringify'] + self.indent_type = options['indent_type'] + self.encoding = options['encoding'] + self.default_encoding = options['default_encoding'] + self.BOM = False + self.newlines = None + self.write_empty_values = options['write_empty_values'] + self.unrepr = options['unrepr'] + + self.initial_comment = [] + self.final_comment = [] + self.configspec = None + + if self._inspec: + self.list_values = False + + # Clear section attributes as well + Section._initialise(self) + + + def __repr__(self): + def _getval(key): + try: + return self[key] + except MissingInterpolationOption: + return dict.__getitem__(self, key) + return ('ConfigObj({%s})' % + ', '.join([('%s: %s' % (repr(key), repr(_getval(key)))) + for key in (self.scalars + self.sections)])) + + + def _handle_bom(self, infile): + """ + Handle any BOM, and decode if necessary. + + If an encoding is specified, that *must* be used - but the BOM should + still be removed (and the BOM attribute set). + + (If the encoding is wrongly specified, then a BOM for an alternative + encoding won't be discovered or removed.) + + If an encoding is not specified, UTF8 or UTF16 BOM will be detected and + removed. The BOM attribute will be set. UTF16 will be decoded to + unicode. + + NOTE: This method must not be called with an empty ``infile``. + + Specifying the *wrong* encoding is likely to cause a + ``UnicodeDecodeError``. + + ``infile`` must always be returned as a list of lines, but may be + passed in as a single string. + """ + + if ((self.encoding is not None) and + (self.encoding.lower() not in BOM_LIST)): + # No need to check for a BOM + # the encoding specified doesn't have one + # just decode + return self._decode(infile, self.encoding) + + if isinstance(infile, (list, tuple)): + line = infile[0] + else: + line = infile + + if isinstance(line, six.text_type): + # it's already decoded and there's no need to do anything + # else, just use the _decode utility method to handle + # listifying appropriately + return self._decode(infile, self.encoding) + + if self.encoding is not None: + # encoding explicitly supplied + # And it could have an associated BOM + # TODO: if encoding is just UTF16 - we ought to check for both + # TODO: big endian and little endian versions. + enc = BOM_LIST[self.encoding.lower()] + if enc == 'utf_16': + # For UTF16 we try big endian and little endian + for BOM, (encoding, final_encoding) in list(BOMS.items()): + if not final_encoding: + # skip UTF8 + continue + if infile.startswith(BOM): + ### BOM discovered + ##self.BOM = True + # Don't need to remove BOM + return self._decode(infile, encoding) + + # If we get this far, will *probably* raise a DecodeError + # As it doesn't appear to start with a BOM + return self._decode(infile, self.encoding) + + # Must be UTF8 + BOM = BOM_SET[enc] + if not line.startswith(BOM): + return self._decode(infile, self.encoding) + + newline = line[len(BOM):] + + # BOM removed + if isinstance(infile, (list, tuple)): + infile[0] = newline + else: + infile = newline + self.BOM = True + return self._decode(infile, self.encoding) + + # No encoding specified - so we need to check for UTF8/UTF16 + for BOM, (encoding, final_encoding) in list(BOMS.items()): + if not isinstance(line, six.binary_type) or not line.startswith(BOM): + # didn't specify a BOM, or it's not a bytestring + continue + else: + # BOM discovered + self.encoding = final_encoding + if not final_encoding: + self.BOM = True + # UTF8 + # remove BOM + newline = line[len(BOM):] + if isinstance(infile, (list, tuple)): + infile[0] = newline + else: + infile = newline + # UTF-8 + if isinstance(infile, six.text_type): + return infile.splitlines(True) + elif isinstance(infile, six.binary_type): + return infile.decode('utf-8').splitlines(True) + else: + return self._decode(infile, 'utf-8') + # UTF16 - have to decode + return self._decode(infile, encoding) + + + if six.PY2 and isinstance(line, str): + # don't actually do any decoding, since we're on python 2 and + # returning a bytestring is fine + return self._decode(infile, None) + # No BOM discovered and no encoding specified, default to UTF-8 + if isinstance(infile, six.binary_type): + return infile.decode('utf-8').splitlines(True) + else: + return self._decode(infile, 'utf-8') + + + def _a_to_u(self, aString): + """Decode ASCII strings to unicode if a self.encoding is specified.""" + if isinstance(aString, six.binary_type) and self.encoding: + return aString.decode(self.encoding) + else: + return aString + + + def _decode(self, infile, encoding): + """ + Decode infile to unicode. Using the specified encoding. + + if is a string, it also needs converting to a list. + """ + if isinstance(infile, six.string_types): + return infile.splitlines(True) + if isinstance(infile, six.binary_type): + # NOTE: Could raise a ``UnicodeDecodeError`` + if encoding: + return infile.decode(encoding).splitlines(True) + else: + return infile.splitlines(True) + + if encoding: + for i, line in enumerate(infile): + if isinstance(line, six.binary_type): + # NOTE: The isinstance test here handles mixed lists of unicode/string + # NOTE: But the decode will break on any non-string values + # NOTE: Or could raise a ``UnicodeDecodeError`` + infile[i] = line.decode(encoding) + return infile + + + def _decode_element(self, line): + """Decode element to unicode if necessary.""" + if isinstance(line, six.binary_type) and self.default_encoding: + return line.decode(self.default_encoding) + else: + return line + + + # TODO: this may need to be modified + def _str(self, value): + """ + Used by ``stringify`` within validate, to turn non-string values + into strings. + """ + if not isinstance(value, six.string_types): + # intentially 'str' because it's just whatever the "normal" + # string type is for the python version we're dealing with + return str(value) + else: + return value + + + def _parse(self, infile): + """Actually parse the config file.""" + temp_list_values = self.list_values + if self.unrepr: + self.list_values = False + + comment_list = [] + done_start = False + this_section = self + maxline = len(infile) - 1 + cur_index = -1 + reset_comment = False + + while cur_index < maxline: + if reset_comment: + comment_list = [] + cur_index += 1 + line = infile[cur_index] + sline = line.strip() + # do we have anything on the line ? + if not sline or sline.startswith('#'): + reset_comment = False + comment_list.append(line) + continue + + if not done_start: + # preserve initial comment + self.initial_comment = comment_list + comment_list = [] + done_start = True + + reset_comment = True + # first we check if it's a section marker + mat = self._sectionmarker.match(line) + if mat is not None: + # is a section line + (indent, sect_open, sect_name, sect_close, comment) = mat.groups() + if indent and (self.indent_type is None): + self.indent_type = indent + cur_depth = sect_open.count('[') + if cur_depth != sect_close.count(']'): + self._handle_error("Cannot compute the section depth", + NestingError, infile, cur_index) + continue + + if cur_depth < this_section.depth: + # the new section is dropping back to a previous level + try: + parent = self._match_depth(this_section, + cur_depth).parent + except SyntaxError: + self._handle_error("Cannot compute nesting level", + NestingError, infile, cur_index) + continue + elif cur_depth == this_section.depth: + # the new section is a sibling of the current section + parent = this_section.parent + elif cur_depth == this_section.depth + 1: + # the new section is a child the current section + parent = this_section + else: + self._handle_error("Section too nested", + NestingError, infile, cur_index) + continue + + sect_name = self._unquote(sect_name) + if sect_name in parent: + self._handle_error('Duplicate section name', + DuplicateError, infile, cur_index) + continue + + # create the new section + this_section = Section( + parent, + cur_depth, + self, + name=sect_name) + parent[sect_name] = this_section + parent.inline_comments[sect_name] = comment + parent.comments[sect_name] = comment_list + continue + # + # it's not a section marker, + # so it should be a valid ``key = value`` line + mat = self._keyword.match(line) + if mat is None: + self._handle_error( + 'Invalid line ({0!r}) (matched as neither section nor keyword)'.format(line), + ParseError, infile, cur_index) + else: + # is a keyword value + # value will include any inline comment + (indent, key, value) = mat.groups() + if indent and (self.indent_type is None): + self.indent_type = indent + # check for a multiline value + if value[:3] in ['"""', "'''"]: + try: + value, comment, cur_index = self._multiline( + value, infile, cur_index, maxline) + except SyntaxError: + self._handle_error( + 'Parse error in multiline value', + ParseError, infile, cur_index) + continue + else: + if self.unrepr: + comment = '' + try: + value = unrepr(value) + except Exception as e: + if type(e) == UnknownType: + msg = 'Unknown name or type in value' + else: + msg = 'Parse error from unrepr-ing multiline value' + self._handle_error(msg, UnreprError, infile, + cur_index) + continue + else: + if self.unrepr: + comment = '' + try: + value = unrepr(value) + except Exception as e: + if isinstance(e, UnknownType): + msg = 'Unknown name or type in value' + else: + msg = 'Parse error from unrepr-ing value' + self._handle_error(msg, UnreprError, infile, + cur_index) + continue + else: + # extract comment and lists + try: + (value, comment) = self._handle_value(value) + except SyntaxError: + self._handle_error( + 'Parse error in value', + ParseError, infile, cur_index) + continue + # + key = self._unquote(key) + if key in this_section: + self._handle_error( + 'Duplicate keyword name', + DuplicateError, infile, cur_index) + continue + # add the key. + # we set unrepr because if we have got this far we will never + # be creating a new section + this_section.__setitem__(key, value, unrepr=True) + this_section.inline_comments[key] = comment + this_section.comments[key] = comment_list + continue + # + if self.indent_type is None: + # no indentation used, set the type accordingly + self.indent_type = '' + + # preserve the final comment + if not self and not self.initial_comment: + self.initial_comment = comment_list + elif not reset_comment: + self.final_comment = comment_list + self.list_values = temp_list_values + + + def _match_depth(self, sect, depth): + """ + Given a section and a depth level, walk back through the sections + parents to see if the depth level matches a previous section. + + Return a reference to the right section, + or raise a SyntaxError. + """ + while depth < sect.depth: + if sect is sect.parent: + # we've reached the top level already + raise SyntaxError() + sect = sect.parent + if sect.depth == depth: + return sect + # shouldn't get here + raise SyntaxError() + + + def _handle_error(self, text, ErrorClass, infile, cur_index): + """ + Handle an error according to the error settings. + + Either raise the error or store it. + The error will have occured at ``cur_index`` + """ + line = infile[cur_index] + cur_index += 1 + message = '{0} at line {1}.'.format(text, cur_index) + error = ErrorClass(message, cur_index, line) + if self.raise_errors: + # raise the error - parsing stops here + raise error + # store the error + # reraise when parsing has finished + self._errors.append(error) + + + def _unquote(self, value): + """Return an unquoted version of a value""" + if not value: + # should only happen during parsing of lists + raise SyntaxError + if (value[0] == value[-1]) and (value[0] in ('"', "'")): + value = value[1:-1] + return value + + + def _quote(self, value, multiline=True): + """ + Return a safely quoted version of a value. + + Raise a ConfigObjError if the value cannot be safely quoted. + If multiline is ``True`` (default) then use triple quotes + if necessary. + + * Don't quote values that don't need it. + * Recursively quote members of a list and return a comma joined list. + * Multiline is ``False`` for lists. + * Obey list syntax for empty and single member lists. + + If ``list_values=False`` then the value is only quoted if it contains + a ``\\n`` (is multiline) or '#'. + + If ``write_empty_values`` is set, and the value is an empty string, it + won't be quoted. + """ + if multiline and self.write_empty_values and value == '': + # Only if multiline is set, so that it is used for values not + # keys, and not values that are part of a list + return '' + + if multiline and isinstance(value, (list, tuple)): + if not value: + return ',' + elif len(value) == 1: + return self._quote(value[0], multiline=False) + ',' + return ', '.join([self._quote(val, multiline=False) + for val in value]) + if not isinstance(value, six.string_types): + if self.stringify: + # intentially 'str' because it's just whatever the "normal" + # string type is for the python version we're dealing with + value = str(value) + else: + raise TypeError('Value "%s" is not a string.' % value) + + if not value: + return '""' + + no_lists_no_quotes = not self.list_values and '\n' not in value and '#' not in value + need_triple = multiline and ((("'" in value) and ('"' in value)) or ('\n' in value )) + hash_triple_quote = multiline and not need_triple and ("'" in value) and ('"' in value) and ('#' in value) + check_for_single = (no_lists_no_quotes or not need_triple) and not hash_triple_quote + + if check_for_single: + if not self.list_values: + # we don't quote if ``list_values=False`` + quot = noquot + # for normal values either single or double quotes will do + elif '\n' in value: + # will only happen if multiline is off - e.g. '\n' in key + raise ConfigObjError('Value "%s" cannot be safely quoted.' % value) + elif ((value[0] not in wspace_plus) and + (value[-1] not in wspace_plus) and + (',' not in value)): + quot = noquot + else: + quot = self._get_single_quote(value) + else: + # if value has '\n' or "'" *and* '"', it will need triple quotes + quot = self._get_triple_quote(value) + + if quot == noquot and '#' in value and self.list_values: + quot = self._get_single_quote(value) + + return quot % value + + + def _get_single_quote(self, value): + if ("'" in value) and ('"' in value): + raise ConfigObjError('Value "%s" cannot be safely quoted.' % value) + elif '"' in value: + quot = squot + else: + quot = dquot + return quot + + + def _get_triple_quote(self, value): + if (value.find('"""') != -1) and (value.find("'''") != -1): + raise ConfigObjError('Value "%s" cannot be safely quoted.' % value) + if value.find('"""') == -1: + quot = tdquot + else: + quot = tsquot + return quot + + + def _handle_value(self, value): + """ + Given a value string, unquote, remove comment, + handle lists. (including empty and single member lists) + """ + if self._inspec: + # Parsing a configspec so don't handle comments + return (value, '') + # do we look for lists in values ? + if not self.list_values: + mat = self._nolistvalue.match(value) + if mat is None: + raise SyntaxError() + # NOTE: we don't unquote here + return mat.groups() + # + mat = self._valueexp.match(value) + if mat is None: + # the value is badly constructed, probably badly quoted, + # or an invalid list + raise SyntaxError() + (list_values, single, empty_list, comment) = mat.groups() + if (list_values == '') and (single is None): + # change this if you want to accept empty values + raise SyntaxError() + # NOTE: note there is no error handling from here if the regex + # is wrong: then incorrect values will slip through + if empty_list is not None: + # the single comma - meaning an empty list + return ([], comment) + if single is not None: + # handle empty values + if list_values and not single: + # FIXME: the '' is a workaround because our regex now matches + # '' at the end of a list if it has a trailing comma + single = None + else: + single = single or '""' + single = self._unquote(single) + if list_values == '': + # not a list value + return (single, comment) + the_list = self._listvalueexp.findall(list_values) + the_list = [self._unquote(val) for val in the_list] + if single is not None: + the_list += [single] + return (the_list, comment) + + + def _multiline(self, value, infile, cur_index, maxline): + """Extract the value, where we are in a multiline situation.""" + quot = value[:3] + newvalue = value[3:] + single_line = self._triple_quote[quot][0] + multi_line = self._triple_quote[quot][1] + mat = single_line.match(value) + if mat is not None: + retval = list(mat.groups()) + retval.append(cur_index) + return retval + elif newvalue.find(quot) != -1: + # somehow the triple quote is missing + raise SyntaxError() + # + while cur_index < maxline: + cur_index += 1 + newvalue += '\n' + line = infile[cur_index] + if line.find(quot) == -1: + newvalue += line + else: + # end of multiline, process it + break + else: + # we've got to the end of the config, oops... + raise SyntaxError() + mat = multi_line.match(line) + if mat is None: + # a badly formed line + raise SyntaxError() + (value, comment) = mat.groups() + return (newvalue + value, comment, cur_index) + + + def _handle_configspec(self, configspec): + """Parse the configspec.""" + # FIXME: Should we check that the configspec was created with the + # correct settings ? (i.e. ``list_values=False``) + if not isinstance(configspec, ConfigObj): + try: + configspec = ConfigObj(configspec, + raise_errors=True, + file_error=True, + _inspec=True) + except ConfigObjError as e: + # FIXME: Should these errors have a reference + # to the already parsed ConfigObj ? + raise ConfigspecError('Parsing configspec failed: %s' % e) + except IOError as e: + raise IOError('Reading configspec failed: %s' % e) + + self.configspec = configspec + + + + def _set_configspec(self, section, copy): + """ + Called by validate. Handles setting the configspec on subsections + including sections to be validated by __many__ + """ + configspec = section.configspec + many = configspec.get('__many__') + if isinstance(many, dict): + for entry in section.sections: + if entry not in configspec: + section[entry].configspec = many + + for entry in configspec.sections: + if entry == '__many__': + continue + if entry not in section: + section[entry] = {} + section[entry]._created = True + if copy: + # copy comments + section.comments[entry] = configspec.comments.get(entry, []) + section.inline_comments[entry] = configspec.inline_comments.get(entry, '') + + # Could be a scalar when we expect a section + if isinstance(section[entry], Section): + section[entry].configspec = configspec[entry] + + + def _write_line(self, indent_string, entry, this_entry, comment): + """Write an individual line, for the write method""" + # NOTE: the calls to self._quote here handles non-StringType values. + if not self.unrepr: + val = self._decode_element(self._quote(this_entry)) + else: + val = repr(this_entry) + return '%s%s%s%s%s' % (indent_string, + self._decode_element(self._quote(entry, multiline=False)), + self._a_to_u(' = '), + val, + self._decode_element(comment)) + + + def _write_marker(self, indent_string, depth, entry, comment): + """Write a section marker line""" + return '%s%s%s%s%s' % (indent_string, + self._a_to_u('[' * depth), + self._quote(self._decode_element(entry), multiline=False), + self._a_to_u(']' * depth), + self._decode_element(comment)) + + + def _handle_comment(self, comment): + """Deal with a comment.""" + if not comment: + return '' + start = self.indent_type + if not comment.startswith('#'): + start += self._a_to_u(' # ') + return (start + comment) + + + # Public methods + + def write(self, outfile=None, section=None): + """ + Write the current ConfigObj as a file + + tekNico: FIXME: use StringIO instead of real files + + >>> filename = a.filename + >>> a.filename = 'test.ini' + >>> a.write() + >>> a.filename = filename + >>> a == ConfigObj('test.ini', raise_errors=True) + 1 + >>> import os + >>> os.remove('test.ini') + """ + if self.indent_type is None: + # this can be true if initialised from a dictionary + self.indent_type = DEFAULT_INDENT_TYPE + + out = [] + cs = self._a_to_u('#') + csp = self._a_to_u('# ') + if section is None: + int_val = self.interpolation + self.interpolation = False + section = self + for line in self.initial_comment: + line = self._decode_element(line) + stripped_line = line.strip() + if stripped_line and not stripped_line.startswith(cs): + line = csp + line + out.append(line) + + indent_string = self.indent_type * section.depth + for entry in (section.scalars + section.sections): + if entry in section.defaults: + # don't write out default values + continue + for comment_line in section.comments[entry]: + comment_line = self._decode_element(comment_line.lstrip()) + if comment_line and not comment_line.startswith(cs): + comment_line = csp + comment_line + out.append(indent_string + comment_line) + this_entry = section[entry] + comment = self._handle_comment(section.inline_comments[entry]) + + if isinstance(this_entry, Section): + # a section + out.append(self._write_marker( + indent_string, + this_entry.depth, + entry, + comment)) + out.extend(self.write(section=this_entry)) + else: + out.append(self._write_line( + indent_string, + entry, + this_entry, + comment)) + + if section is self: + for line in self.final_comment: + line = self._decode_element(line) + stripped_line = line.strip() + if stripped_line and not stripped_line.startswith(cs): + line = csp + line + out.append(line) + self.interpolation = int_val + + if section is not self: + return out + + if (self.filename is None) and (outfile is None): + # output a list of lines + # might need to encode + # NOTE: This will *screw* UTF16, each line will start with the BOM + if self.encoding: + out = [l.encode(self.encoding) for l in out] + if (self.BOM and ((self.encoding is None) or + (BOM_LIST.get(self.encoding.lower()) == 'utf_8'))): + # Add the UTF8 BOM + if not out: + out.append('') + out[0] = BOM_UTF8 + out[0] + return out + + # Turn the list to a string, joined with correct newlines + newline = self.newlines or os.linesep + if (getattr(outfile, 'mode', None) is not None and outfile.mode == 'w' + and sys.platform == 'win32' and newline == '\r\n'): + # Windows specific hack to avoid writing '\r\r\n' + newline = '\n' + output = self._a_to_u(newline).join(out) + if not output.endswith(newline): + output += newline + + if isinstance(output, six.binary_type): + output_bytes = output + else: + output_bytes = output.encode(self.encoding or + self.default_encoding or + 'ascii') + + if self.BOM and ((self.encoding is None) or match_utf8(self.encoding)): + # Add the UTF8 BOM + output_bytes = BOM_UTF8 + output_bytes + + if outfile is not None: + outfile.write(output_bytes) + else: + with open(self.filename, 'wb') as h: + h.write(output_bytes) + + def validate(self, validator, preserve_errors=False, copy=False, + section=None): + """ + Test the ConfigObj against a configspec. + + It uses the ``validator`` object from *validate.py*. + + To run ``validate`` on the current ConfigObj, call: :: + + test = config.validate(validator) + + (Normally having previously passed in the configspec when the ConfigObj + was created - you can dynamically assign a dictionary of checks to the + ``configspec`` attribute of a section though). + + It returns ``True`` if everything passes, or a dictionary of + pass/fails (True/False). If every member of a subsection passes, it + will just have the value ``True``. (It also returns ``False`` if all + members fail). + + In addition, it converts the values from strings to their native + types if their checks pass (and ``stringify`` is set). + + If ``preserve_errors`` is ``True`` (``False`` is default) then instead + of a marking a fail with a ``False``, it will preserve the actual + exception object. This can contain info about the reason for failure. + For example the ``VdtValueTooSmallError`` indicates that the value + supplied was too small. If a value (or section) is missing it will + still be marked as ``False``. + + You must have the validate module to use ``preserve_errors=True``. + + You can then use the ``flatten_errors`` function to turn your nested + results dictionary into a flattened list of failures - useful for + displaying meaningful error messages. + """ + if section is None: + if self.configspec is None: + raise ValueError('No configspec supplied.') + if preserve_errors: + # We do this once to remove a top level dependency on the validate module + # Which makes importing configobj faster + from validate import VdtMissingValue + self._vdtMissingValue = VdtMissingValue + + section = self + + if copy: + section.initial_comment = section.configspec.initial_comment + section.final_comment = section.configspec.final_comment + section.encoding = section.configspec.encoding + section.BOM = section.configspec.BOM + section.newlines = section.configspec.newlines + section.indent_type = section.configspec.indent_type + + # + # section.default_values.clear() #?? + configspec = section.configspec + self._set_configspec(section, copy) + + + def validate_entry(entry, spec, val, missing, ret_true, ret_false): + section.default_values.pop(entry, None) + + try: + section.default_values[entry] = validator.get_default_value(configspec[entry]) + except (KeyError, AttributeError, validator.baseErrorClass): + # No default, bad default or validator has no 'get_default_value' + # (e.g. SimpleVal) + pass + + try: + check = validator.check(spec, + val, + missing=missing + ) + except validator.baseErrorClass as e: + if not preserve_errors or isinstance(e, self._vdtMissingValue): + out[entry] = False + else: + # preserve the error + out[entry] = e + ret_false = False + ret_true = False + else: + ret_false = False + out[entry] = True + if self.stringify or missing: + # if we are doing type conversion + # or the value is a supplied default + if not self.stringify: + if isinstance(check, (list, tuple)): + # preserve lists + check = [self._str(item) for item in check] + elif missing and check is None: + # convert the None from a default to a '' + check = '' + else: + check = self._str(check) + if (check != val) or missing: + section[entry] = check + if not copy and missing and entry not in section.defaults: + section.defaults.append(entry) + return ret_true, ret_false + + # + out = {} + ret_true = True + ret_false = True + + unvalidated = [k for k in section.scalars if k not in configspec] + incorrect_sections = [k for k in configspec.sections if k in section.scalars] + incorrect_scalars = [k for k in configspec.scalars if k in section.sections] + + for entry in configspec.scalars: + if entry in ('__many__', '___many___'): + # reserved names + continue + if (not entry in section.scalars) or (entry in section.defaults): + # missing entries + # or entries from defaults + missing = True + val = None + if copy and entry not in section.scalars: + # copy comments + section.comments[entry] = ( + configspec.comments.get(entry, [])) + section.inline_comments[entry] = ( + configspec.inline_comments.get(entry, '')) + # + else: + missing = False + val = section[entry] + + ret_true, ret_false = validate_entry(entry, configspec[entry], val, + missing, ret_true, ret_false) + + many = None + if '__many__' in configspec.scalars: + many = configspec['__many__'] + elif '___many___' in configspec.scalars: + many = configspec['___many___'] + + if many is not None: + for entry in unvalidated: + val = section[entry] + ret_true, ret_false = validate_entry(entry, many, val, False, + ret_true, ret_false) + unvalidated = [] + + for entry in incorrect_scalars: + ret_true = False + if not preserve_errors: + out[entry] = False + else: + ret_false = False + msg = 'Value %r was provided as a section' % entry + out[entry] = validator.baseErrorClass(msg) + for entry in incorrect_sections: + ret_true = False + if not preserve_errors: + out[entry] = False + else: + ret_false = False + msg = 'Section %r was provided as a single value' % entry + out[entry] = validator.baseErrorClass(msg) + + # Missing sections will have been created as empty ones when the + # configspec was read. + for entry in section.sections: + # FIXME: this means DEFAULT is not copied in copy mode + if section is self and entry == 'DEFAULT': + continue + if section[entry].configspec is None: + unvalidated.append(entry) + continue + if copy: + section.comments[entry] = configspec.comments.get(entry, []) + section.inline_comments[entry] = configspec.inline_comments.get(entry, '') + check = self.validate(validator, preserve_errors=preserve_errors, copy=copy, section=section[entry]) + out[entry] = check + if check == False: + ret_true = False + elif check == True: + ret_false = False + else: + ret_true = False + + section.extra_values = unvalidated + if preserve_errors and not section._created: + # If the section wasn't created (i.e. it wasn't missing) + # then we can't return False, we need to preserve errors + ret_false = False + # + if ret_false and preserve_errors and out: + # If we are preserving errors, but all + # the failures are from missing sections / values + # then we can return False. Otherwise there is a + # real failure that we need to preserve. + ret_false = not any(out.values()) + if ret_true: + return True + elif ret_false: + return False + return out + + + def reset(self): + """Clear ConfigObj instance and restore to 'freshly created' state.""" + self.clear() + self._initialise() + # FIXME: Should be done by '_initialise', but ConfigObj constructor (and reload) + # requires an empty dictionary + self.configspec = None + # Just to be sure ;-) + self._original_configspec = None + + + def reload(self): + """ + Reload a ConfigObj from file. + + This method raises a ``ReloadError`` if the ConfigObj doesn't have + a filename attribute pointing to a file. + """ + if not isinstance(self.filename, six.string_types): + raise ReloadError() + + filename = self.filename + current_options = {} + for entry in OPTION_DEFAULTS: + if entry == 'configspec': + continue + current_options[entry] = getattr(self, entry) + + configspec = self._original_configspec + current_options['configspec'] = configspec + + self.clear() + self._initialise(current_options) + self._load(filename, configspec) + + + +class SimpleVal(object): + """ + A simple validator. + Can be used to check that all members expected are present. + + To use it, provide a configspec with all your members in (the value given + will be ignored). Pass an instance of ``SimpleVal`` to the ``validate`` + method of your ``ConfigObj``. ``validate`` will return ``True`` if all + members are present, or a dictionary with True/False meaning + present/missing. (Whole missing sections will be replaced with ``False``) + """ + + def __init__(self): + self.baseErrorClass = ConfigObjError + + def check(self, check, member, missing=False): + """A dummy check method, always returns the value unchanged.""" + if missing: + raise self.baseErrorClass() + return member + + +def flatten_errors(cfg, res, levels=None, results=None): + """ + An example function that will turn a nested dictionary of results + (as returned by ``ConfigObj.validate``) into a flat list. + + ``cfg`` is the ConfigObj instance being checked, ``res`` is the results + dictionary returned by ``validate``. + + (This is a recursive function, so you shouldn't use the ``levels`` or + ``results`` arguments - they are used by the function.) + + Returns a list of keys that failed. Each member of the list is a tuple:: + + ([list of sections...], key, result) + + If ``validate`` was called with ``preserve_errors=False`` (the default) + then ``result`` will always be ``False``. + + *list of sections* is a flattened list of sections that the key was found + in. + + If the section was missing (or a section was expected and a scalar provided + - or vice-versa) then key will be ``None``. + + If the value (or section) was missing then ``result`` will be ``False``. + + If ``validate`` was called with ``preserve_errors=True`` and a value + was present, but failed the check, then ``result`` will be the exception + object returned. You can use this as a string that describes the failure. + + For example *The value "3" is of the wrong type*. + """ + if levels is None: + # first time called + levels = [] + results = [] + if res == True: + return sorted(results) + if res == False or isinstance(res, Exception): + results.append((levels[:], None, res)) + if levels: + levels.pop() + return sorted(results) + for (key, val) in list(res.items()): + if val == True: + continue + if isinstance(cfg.get(key), dict): + # Go down one level + levels.append(key) + flatten_errors(cfg[key], val, levels, results) + continue + results.append((levels[:], key, val)) + # + # Go up one level + if levels: + levels.pop() + # + return sorted(results) + + +def get_extra_values(conf, _prepend=()): + """ + Find all the values and sections not in the configspec from a validated + ConfigObj. + + ``get_extra_values`` returns a list of tuples where each tuple represents + either an extra section, or an extra value. + + The tuples contain two values, a tuple representing the section the value + is in and the name of the extra values. For extra values in the top level + section the first member will be an empty tuple. For values in the 'foo' + section the first member will be ``('foo',)``. For members in the 'bar' + subsection of the 'foo' section the first member will be ``('foo', 'bar')``. + + NOTE: If you call ``get_extra_values`` on a ConfigObj instance that hasn't + been validated it will return an empty list. + """ + out = [] + + out.extend([(_prepend, name) for name in conf.extra_values]) + for name in conf.sections: + if name not in conf.extra_values: + out.extend(get_extra_values(conf[name], _prepend + (name,))) + return out + + +"""*A programming language is a medium of expression.* - Paul Graham""" diff --git a/nomadnet/vendor/quotes.py b/nomadnet/vendor/quotes.py index 4c87571..90dbecd 100644 --- a/nomadnet/vendor/quotes.py +++ b/nomadnet/vendor/quotes.py @@ -1,7 +1,5 @@ quotes = [ ("I want the wisdom that wise men revere. I want more.", "Faithless"), ("That's enough entropy for you my friend", "Unknown"), - ("Any time two people connect online, it's financed by a third person who believes they can manipulate the first two", "Jaron Lanier"), - ("The landscape of the future is set, but how one will march across it is not determined", "Terence McKenna") - ("Freedom originates in the division of power, despotism in its concentration.", "John Acton") + ("Any time two people connect online, it's financed by a third person who believes they can manipulate the first two", "Jaron Lanier") ] \ No newline at end of file diff --git a/setup.py b/setup.py index e5560a6..b0f3bb4 100644 --- a/setup.py +++ b/setup.py @@ -5,12 +5,6 @@ exec(open("nomadnet/_version.py", "r").read()) with open("README.md", "r") as fh: long_description = fh.read() -package_data = { -"": [ - "examples/messageboard/*", - ] -} - setuptools.setup( name="nomadnet", version=__version__, @@ -21,7 +15,6 @@ setuptools.setup( long_description_content_type="text/markdown", url="https://github.com/markqvist/nomadnet", packages=setuptools.find_packages(), - package_data=package_data, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", @@ -30,6 +23,6 @@ setuptools.setup( entry_points= { 'console_scripts': ['nomadnet=nomadnet.nomadnet:main'] }, - install_requires=["rns>=0.9.6", "lxmf>=0.7.1", "urwid>=2.6.16", "qrcode"], - python_requires=">=3.7", -) + install_requires=['rns>=0.2.5', 'lxmf>=0.0.9', 'urwid>=2.1.2'], + python_requires='>=3.6', +) \ No newline at end of file