Created
May 30, 2025 02:46
-
-
Save trungly1/4d9621c172c9224b8bd19e41eb54856e to your computer and use it in GitHub Desktop.
local listener in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import time | |
import socket | |
import psutil | |
import httplib | |
import webbrowser | |
from time import sleep | |
from subprocess import Popen, PIPE | |
from subprocess import check_output | |
from urlparse import urlparse | |
from ulauncher.api.client.Extension import Extension | |
from ulauncher.api.client.EventListener import EventListener | |
from ulauncher.api.shared.event import KeywordQueryEvent, ItemEnterEvent | |
from ulauncher.api.shared.item.ExtensionResultItem import ExtensionResultItem | |
from ulauncher.api.shared.action.RenderResultListAction import RenderResultListAction | |
from ulauncher.api.shared.action.ExtensionCustomAction import ExtensionCustomAction | |
from ulauncher.api.shared.action.OpenUrlAction import OpenUrlAction | |
ACTION_GOTO_ADDR = 'goto_local_addr' | |
ICON_PATH = "images/icon.png" | |
OPTION_BROWSER_SELECTOR = "browser_selector" | |
OPTIONVAL_BRS_DEFAULT = "default" | |
OPTIONVAL_BRS_CUSTOM = "custom" | |
OPTION_BROWSER_EXECUTABLE = "browser_executable" | |
class LocalListenersExtension(Extension): | |
def __init__(self): | |
super(LocalListenersExtension, self).__init__() | |
self.subscribe(KeywordQueryEvent, KeywordQueryEventListener()) | |
self.subscribe(ItemEnterEvent, ItemEnterEventListener()) | |
class KeywordQueryEventListener(EventListener): | |
def on_event(self, event, extension): | |
items = [] | |
lc = psutil.net_connections("inet") | |
def get_pid_name(name): | |
try: | |
return check_output(["ps", "-p", name, "-o", "comm="]) | |
except Exception: | |
return None | |
listeners = [] | |
for c in lc: | |
(ip, port) = c.laddr | |
if c.type == socket.SOCK_STREAM and c.status == psutil.CONN_LISTEN: | |
pid_name = "(unknown)" | |
if c.pid: | |
name = get_pid_name(str(c.pid)) | |
if name: | |
pid_name = name.strip() | |
listeners.append([pid_name, str(ip) , str(port)]) | |
col_width = max(len(listener[0]) for listener in listeners) + 2 | |
for listener in listeners: | |
address = listener[1] + ":" + listener[2] | |
data = {"action": ACTION_GOTO_ADDR, "address": address} | |
items.append(ExtensionResultItem(icon=ICON_PATH, | |
name=listener[0].ljust( | |
col_width) + address, | |
description="Browse to " + address, | |
on_enter=ExtensionCustomAction(data, keep_app_open=False))) | |
return RenderResultListAction(items) | |
class ItemEnterEventListener(EventListener): | |
def check_url(self, url): | |
url = urlparse(url) | |
conn = httplib.HTTPConnection(url.netloc) | |
conn.request("HEAD", url.path) | |
if conn.getresponse(): | |
return True | |
else: | |
return False | |
def add_scheme(self, address): | |
url_http = "http://" + address | |
url_https = "https://" + address | |
if self.check_url(url_https): | |
return url_https | |
elif self.check_url(url_http): | |
return url_http | |
return None | |
def on_event(self, event, extension): | |
data = event.get_data() | |
items = [] | |
if data["action"] == ACTION_GOTO_ADDR: | |
url = self.add_scheme(data["address"]) | |
if url == None: | |
return | |
else: | |
if extension.preferences[OPTION_BROWSER_SELECTOR] == OPTIONVAL_BRS_DEFAULT: | |
webbrowser.open_new_tab(url) | |
elif extension.preferences[OPTION_BROWSER_SELECTOR] == OPTIONVAL_BRS_CUSTOM: | |
command = [extension.preferences[OPTION_BROWSER_EXECUTABLE]] | |
command.append(data["address"]) | |
Popen(command) | |
return | |
return RenderResultListAction(items) | |
if __name__ == "__main__": | |
LocalListenersExtension().run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment