コード例 #1
0
def get_as_item(color):
    """Return an item - ready to be appended to the items list and be rendered by Albert."""
    img_path = str(get_color_thumbnail(color))

    rgb = [int(i * 255) for i in color.get_rgb()]
    hl = color.get_hex_l()
    if hl in h_to_color_name:
        name = f"| {h_to_color_name[hl]}"
    else:
        name = ""

    actions = [
        v0.ClipAction("Copy Hex (Long)", hl),
        v0.ClipAction("Copy RGB", f"{rgb}"),
        v0.ClipAction("Copy RGB [0, 1]", f"{color.get_rgb()}"),
    ]

    h = color.get_hex()
    if h != hl:
        actions.insert(0, v0.ClipAction("Copy Hex (Short)", h))

    return v0.Item(
        id=__prettyname__,
        icon=img_path,
        text=f'<p style="color:{hl}";>{hl}{name}</p>',
        subtext=f"{rgb}",
        completion=" ".join([__trigger__, h]),
        actions=actions,
    )
コード例 #2
0
def get_as_item(result: BingImage):
    """Return an item.

    Will return None if the link to the image is not reachable (e.g., on 404)
    """
    try:
        img = str(result.image.absolute())
    except RequestException:
        return None

    actions = [
        v0.ClipAction("Copy url", result.url),
        v0.ClipAction("Copy local path to image", img),
        v0.UrlAction("Open in browser", result.url),
    ]

    if result.type != "gif":
        actions.insert(
            0,
            v0.FuncAction("Copy image",
                          lambda result=result: copy_image(result)))

    item = v0.Item(
        id=__prettyname__,
        icon=str(result.image),
        text=result.url[-20:],
        subtext=result.type,
        completion=f"{__trigger__}",
        actions=actions,
    )

    return item
コード例 #3
0
def get_as_item(p: Process, *extra_actions):
    """Return an item - ready to be appended to the items list and be rendered by Albert.

    if Process is not a valid object (.name or .cmdline raise an exception) then return None
    """
    name_field = cmdline(p)

    if not name_field:
        return None

    try:

        actions = [
            v0.FuncAction("Terminate", lambda: p.terminate()),
            v0.FuncAction("Kill", lambda: p.kill()),
            v0.ClipAction("Get PID", f"{p.pid}"),
            v0.FuncAction(
                "Terminate matching names",
                lambda name=p.name(): kill_by_name(name, signal=signal.SIGTERM
                                                   ),
            ),
            v0.FuncAction("Kill matching names",
                          lambda name=p.name(): kill_by_name(name)),
        ]
        actions = [*extra_actions, *actions]
        return v0.Item(
            id=__prettyname__,
            icon=icon_path,
            text=name_field,
            subtext="",
            completion=p.name(),
            actions=actions,
        )
    except psutil.NoSuchProcess:
        return None
コード例 #4
0
def handleQuery(query) -> list:
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            # modify this...
            results.append(get_as_item())

        except Exception:  # user to report error
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #5
0
def handleQuery(query):
    results = []

    if query.isTriggered:
        try:
            if len(query.string) >= 3:
                query_dict = format_query(query)
                search = zoopla.property_listings(query_dict)

                for s in search["listing"]:
                    results.append(get_as_item(s))

        except Exception:  # user to report error
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=iconPath,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{sys.exc_info()}",
                        )
                    ],
                ),
            )

    return results
コード例 #6
0
def get_cmd_items(pair: Tuple[str, Path]):
    """Return a list of Albert items - one per example."""

    with open(pair[-1], "r") as f:
        lines = [li.strip() for li in f.readlines()]

    items = []
    for i, li in enumerate(lines):
        if not li.startswith("- "):
            continue

        desc = li.lstrip("- ")[:-1]
        example_cmd = sanitize_string(lines[i + 2].strip("`").replace(
            "{{", "").replace("}}", ""))

        items.append(
            v0.Item(
                id=__prettyname__,
                icon=icon_path,
                text=example_cmd,
                subtext=desc,
                actions=[
                    v0.ClipAction("Copy command", example_cmd),
                    v0.UrlAction(
                        "Do a google search",
                        f'https://www.google.com/search?q="{pair[0]}" command',
                    ),
                ],
            ))

    return items
コード例 #7
0
def handleQuery(query) -> list:
    """Hook that is called by albert with *every new keypress*."""  # noqa
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            query_str = query.string.strip()
            results.append(get_as_item(query_str if query_str else randstr()))

        except Exception:  # user to report error
            if dev_mode:  # let exceptions fly!
                print(traceback.format_exc())
                raise

            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #8
0
def get_as_item(issue: resources.Issue, jira):
    field = get_as_subtext_field

    # first action is default action
    actions = [
        v0.UrlAction("Open in jira", f"{issue.permalink()}"),
        v0.ClipAction("Copy jira URL", f"{issue.permalink()}"),
    ]

    # add an action for each one of the available transitions
    curr_status = issue.fields.status.name
    for a_transition in jira.transitions(issue):
        if a_transition["name"] != curr_status:
            actions.append(
                v0.FuncAction(
                    f'Mark as "{a_transition["name"]}"',
                    lambda a_transition_id=a_transition["id"]: make_transition(
                        jira, issue, a_transition_id),
                ))

    subtext = "{}{}{}{}".format(
        field(issue.fields.assignee),
        field(issue.fields.status.name),
        field(issue.fields.issuetype.name),
        field(issue.fields.project.key, "proj"),
    )
    subtext += prio_to_text[issue.fields.priority.name]

    return v0.Item(
        id=__prettyname__,
        icon=prio_to_icon[issue.fields.priority.name],
        text=f"{issue.fields.summary}",
        subtext=subtext,
        actions=actions,
    )
コード例 #9
0
def handleQuery(query) -> list:
    """Hook that is called by albert with *every new keypress*."""  # noqa
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str = query.string.strip()

            matched = [
                elem[0]
                for elem in process.extract(query_str, [*cities, *countries],
                                            limit=8)
            ]

            matched2 = []
            # replace country names with its cities
            for m in matched:
                if m in countries:
                    matched2.extend(*country_to_cities[m])
                else:
                    matched2.append(m)
            matched2 = get_uniq_elements(matched2)

            # add own timezone:
            if local_tz_str in matched2:
                matched2.remove(local_tz_str)

            matched2.insert(0, local_tz_str)
            results.extend([get_as_item(m) for m in matched2])

        except Exception:  # user to report error
            if dev_mode:  # let exceptions fly!
                print(traceback.format_exc())
                raise

            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #10
0
def handleQuery(query) -> list:
    """Hook that is called by albert with *every new keypress*."""  # noqa
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str = query.string

            if len(query_str) < 2:
                keys_monitor.reset()
                return results

            keys_monitor.report()
            if keys_monitor.triggered():
                bing_images = list(
                    bing_search_save_to_cache(query=query_str, limit=10))
                if not bing_images:
                    results.insert(
                        0,
                        v0.Item(
                            id=__prettyname__,
                            icon=icon_path,
                            text="No images found",
                            subtext=f"Query: {query_str}",
                        ),
                    )
                    return results

                results.extend(get_bing_results_as_items(bing_images))

        except Exception:  # user to report error
            if dev_mode:  # let exceptions fly!
                print(traceback.format_exc())
                raise

            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #11
0
def get_as_item(s):
    actions = []
    if s.details_url:
        actions.append(v0.UrlAction("Open on Zoopla", s.details_url))
    if s.floor_plan:
        actions.append(v0.UrlAction("Floorplan", s.floor_plan[0]))
    if s.price:
        actions.append(v0.ClipAction("Copy price", str(s.price)))

    if s.price:
        if s.listing_status == "rent":
            price_str = f"Weekly: £{s.price} | "
        else:
            price_str = f"Total: £{s.price} | "
    else:
        price_str = ""

    return v0.Item(
        id=__prettyname__,
        icon=iconPath,
        text=f"{s.description}",
        subtext="{}{}{}".format(
            f"Type: {s.property_type} | " if s.property_type else "",
            f"Code: {s.outcode} | " if s.outcode else "",
            price_str,
            f"# Bedrooms: {s.num_bedrooms} | " if s.num_bedrooms else "",
        )[:-2],
        actions=actions,
    )
コード例 #12
0
def get_tw_item(task: taskw.task.Task) -> v0.Item:
    """Get a single TW task as an Albert Item."""
    return get_as_item(
        text=f'{task["description"]}',
        subtext="{}{}{}".format(
            "UID: {}...".format(tw_side.get_task_id(task)[:8]),
            " | status: {}".format(task["status"]),
            " | tags: {}".format(task["tags"])
            if "tags" in task.keys() else "",
        ),
        completion="",
        actions=[
            v0.ProcAction(f"Add to Reminders (+{reminder_tag})", [
                "task", "modify",
                tw_side.get_task_id(task), f"+{reminder_tag}"
            ]),
            v0.ProcAction(
                "Complete task",
                ["task", "done", tw_side.get_task_id(task)]),
            v0.ProcAction(
                "Delete task",
                ["task", "delete", tw_side.get_task_id(task)]),
            v0.ProcAction(
                "Start task",
                ["task", "start", tw_side.get_task_id(task)]),
            v0.ProcAction(
                "Stop task",
                ["task", "stop", tw_side.get_task_id(task)]),
            v0.ProcAction(
                "Edit task interactively",
                ["task", "edit", tw_side.get_task_id(task)]),
            v0.ClipAction("Copy task UUID", f"{tw_side.get_task_id(task)}"),
        ],
    )
コード例 #13
0
def handleQuery(query) -> list:
    results = []

    if not query.isTriggered:
        if not query.string:
            results.append(
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=f'Search {"_".join("search_stackoverflow".split("_")[1:])}',
                    completion=__trigger__,
                )
            )
    else:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            # setup stage ---------------------------------------------------------------------
            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str = query.string.strip()

            # too small request - don't even send it.
            if len(query_str) < 2:
                keys_monitor.reset()
                return results

            # determine if we can make the request --------------------------------------------
            keys_monitor.report()
            if keys_monitor.triggered():
                json_results = query_googler(query_str)
                googler_results = [
                    get_googler_result_as_item(googler_result)
                    for googler_result in json_results
                ]

                results.extend(googler_results)

        except Exception:  # user to report error
            raise
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text="Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #14
0
def get_googler_result_as_item(googler_item: dict):
    actions = [
        v0.UrlAction("Open in browser", googler_item["url"]),
        v0.ClipAction("Copy URL", googler_item["url"]),
    ]

    # incognito search
    if inco_cmd:
        actions.insert(
            1,
            v0.FuncAction(
                "Open in browser [incognito mode]",
                lambda url=googler_item["url"]: inco_cmd(url),
            ),
        )

    # special url handler
    if url_handler:
        # check that the handler is actually there
        actions.insert(
            0,
            v0.FuncAction(
                url_handler_desc,
                lambda url_handler=url_handler: subprocess.Popen(
                    f'{url_handler} {googler_item["url"]}', shell=True),
            ),
        )

    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=googler_item["title"],
        subtext=googler_item["abstract"],
        actions=actions,
    )
コード例 #15
0
def get_cmd_as_item(pair: Tuple[str, Path]):
    with open(pair[-1], "r") as f:
        all_lines = f.readlines()
        description_lines = [
            li.lstrip("> ").rstrip().rstrip(".") for li in all_lines
            if li.startswith("> ")
        ]

        # see if there's a line with more information and a URL
        more_info_url = None
        try:
            more_info = [li for li in all_lines if "More information" in li][0]
            more_info_url = re.search("<(.*)>", more_info)
            if more_info_url.groups():
                more_info_url = more_info_url.groups()[0]
        except IndexError:
            pass

    actions = [
        v0.ClipAction("Copy command", pair[0]),
        v0.UrlAction("Do a google search",
                     f'https://www.google.com/search?q="{pair[0]}" command'),
    ]
    if more_info_url:
        actions.append(v0.UrlAction("More information", more_info_url))

    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=pair[0],
        completion=" ".join([__trigger__, pair[0]]),
        subtext=" ".join(description_lines),
        actions=actions,
    )
コード例 #16
0
def get_abbr_as_item(abbr: Tuple[str, str]):
    """Return the abbreviation pair as an item - ready to be appended to the items list and be rendered by Albert."""
    text = abbr[0].strip()
    subtext = abbr[1].strip()

    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=f"{text}",
        subtext=f"{subtext}",
        completion=f"{__trigger__}{text.strip()}",
        actions=[
            v0.UrlAction("Open in Google",
                         f"https://www.google.com/search?&q={text}"),
            v0.ClipAction("Copy abbreviation", text),
            v0.ClipAction("Copy description", subtext),
        ],
    )
コード例 #17
0
def handleQuery(query):
    results = []

    # check whether I have downlaoded the latest metadata
    with open(last_update_path, "r") as f:
        date_str = float(f.readline().strip())

    last_date = datetime.fromtimestamp(date_str)
    if datetime.now() - last_date > timedelta(days=1):  # run an update daily
        update_date_file()
        update_xkcd_db()

    if query.isTriggered:
        # be backwards compatible with v0.2
        if "disableSort" in dir(query):
            query.disableSort()

        try:
            with open(xkcd_dict, "r", encoding="utf-8") as f:
                d = json.load(f)

            if len(query.string) in [0, 1]:  # Display all items
                for k, v in d.items():
                    results.append(get_as_item(k, v))
            else:  # fuzzy search
                desc_to_item = {
                    item[1]["description"]: item
                    for item in d.items()
                }
                matched = process.extract(query.string.strip(),
                                          list(desc_to_item.keys()),
                                          limit=20)
                for m in [elem[0] for elem in matched]:
                    # bypass a unicode issue - use .get
                    item = desc_to_item.get(m)
                    if item:
                        results.append(get_as_item(*item))

        except Exception as e:  # user to report error
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=iconPath,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{sys.exc_info()}",
                        )
                    ],
                ),
            )

    return results
コード例 #18
0
def handleQuery(query):
    results = []

    if query.isTriggered:
        try:
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup
            tasks = tw_side.get_all_items(include_completed=False)

            # TODO Handle a potential subcommand - add?
            query_text = query.string

            if len(query.string) < 2:
                tw_side.reload_items = True
                results.extend(
                    [
                        get_as_item(text=val, completion=f"{__trigger__} {key} ")
                        for key, val in zip(
                            get_prop_for_subcommands("name"), get_prop_for_subcommands("desc")
                        )
                    ]
                )

                tasks.sort(key=lambda t: t["urgency"], reverse=True)
                results.extend([get_tw_item(task) for task in tasks])

            else:
                # find relevant results
                desc_to_task = {task["description"]: task for task in tasks}
                matched = process.extract(query_text, list(desc_to_task.keys()), limit=30)
                for m in [elem[0] for elem in matched]:
                    task = desc_to_task[m]
                    results.append(get_tw_item(task))

        except Exception:  # user to report error
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text="Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{sys.exc_info()}",
                        )
                    ],
                ),
            )

    return results
コード例 #19
0
def get_tw_item(task: taskw.task.Task) -> v0.Item:
    """Get a single TW task as an Albert Item."""
    field = get_as_subtext_field

    actions = [
        v0.FuncAction(
            "Complete task",
            lambda args_list=["done", tw_side.get_task_id(task)]: run_tw_action(args_list),
        ),
        v0.FuncAction(
            "Delete task",
            lambda args_list=["delete", tw_side.get_task_id(task)]: run_tw_action(args_list),
        ),
        v0.FuncAction(
            "Start task",
            lambda args_list=["start", tw_side.get_task_id(task)]: run_tw_action(args_list),
        ),
        v0.FuncAction(
            "Stop task",
            lambda args_list=["stop", tw_side.get_task_id(task)]: run_tw_action(args_list),
        ),
        v0.FuncAction(
            "Edit task interactively",
            lambda args_list=["edit", tw_side.get_task_id(task)]: run_tw_action(args_list),
        ),
        v0.ClipAction("Copy task UUID", f"{tw_side.get_task_id(task)}"),
    ]

    if reminders_tag_path.is_file():
        reminders_tag = load_data(reminders_tag_path)
        actions.append(
            v0.FuncAction(
                f"Add to Reminders (+{reminders_tag})",
                lambda args_list=[
                    "modify",
                    tw_side.get_task_id(task),
                    f"+{reminders_tag}",
                ]: run_tw_action(args_list),
            )
        )

    urgency_str, icon = urgency_to_visuals(task.get("urgency"))
    return get_as_item(
        text=f'{task["description"]}',
        subtext="{}{}{}{}{}".format(
            field(urgency_str),
            "ID: {}... | ".format(tw_side.get_task_id(task)[:8]),
            field(task["status"]),
            field(task.get("tags"), "tags"),
            field(task.get("due"), "due"),
        )[:-2],
        icon=icon,
        completion="",
        actions=actions,
    )
コード例 #20
0
ファイル: __init__.py プロジェクト: hamonikr/hamonikr-albert
def get_as_item(k: str, v: dict):
    return v0.Item(
        id=__prettyname__,
        icon=iconPath,
        text=v["description"],
        subtext=v["date-published"],
        completion="",
        actions=[
            v0.UrlAction("Open in xkcd.com", f"https://www.xkcd.com/{k}"),
            v0.ClipAction("Copy URL", f"https://www.xkcd.com/{k}"),
        ],
    )
コード例 #21
0
def get_as_item():
    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=f"{sys.version}",
        subtext="Python version",
        completion="",
        actions=[
            v0.UrlAction("Open in xkcd.com", "https://www.xkcd.com/"),
            v0.ClipAction("Copy URL", f"https://www.xkcd.com/"),
        ],
    )
コード例 #22
0
def get_googler_result_as_item(googler_item: dict):
    actions = [
        v0.UrlAction("Open in browser", googler_item["url"]),
        v0.ClipAction("Copy URL", googler_item["url"]),
    ]

    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=googler_item["title"],
        subtext=googler_item["abstract"],
        actions=actions,
    )
コード例 #23
0
def get_as_item():
    """Return an item - ready to be appended to the items list and be rendered by Albert."""
    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=f"{sys.version}",
        subtext="Python version",
        completion="",
        actions=[
            v0.UrlAction("Open in xkcd.com", "https://www.xkcd.com/"),
            v0.ClipAction("Copy URL", f"https://www.xkcd.com/"),
        ],
    )
コード例 #24
0
def handleQuery(query) -> list:
    """Hook that is called by albert with *every new keypress*."""  # noqa
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str = query.string.strip()

            if not query_str:
                return results

            # see if the name matches a color exactly
            color = get_as_color(query_str)
            if color:
                results.append(get_as_item(color))
                return results

            # no exact match
            matched = process.extract(query_str, list(color_names_and_hex), limit=10)
            for m in [elem[0] for elem in matched]:
                results.append(get_as_item(Color(m)))

        except Exception:  # user to report error
            if dev_mode:  # let exceptions fly!
                print(traceback.format_exc())
                raise

            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text="Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #25
0
def handleQuery(query):
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str = query.string
            src, dst = extract_src_dst(query_str)
            if src and dst:
                actions = []
                for m in available_means:
                    actions.append(
                        v0.FuncAction(
                            m.capitalize(),
                            lambda src=src, dst=dst, m=m:
                            spawn_and_launch_route(src, dst, means=m)))

                results.append(
                    v0.Item(
                        id=__prettyname__,
                        icon=icon_path,
                        text=f"Open route (takes ~5s)",
                        subtext=f"{src} -> {dst}",
                        actions=actions,
                    ))

        except Exception:  # user to report error
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{sys.exc_info()}",
                        )
                    ],
                ),
            )

    return results
コード例 #26
0
def handleQuery(query):
    results = []

    if query.isTriggered:
        print("[__init__.py:102] DEBUGGING STRING ==> ", 0)
        if "disableSort" in dir(query):
            query.disableSort()

        try:
            tasks = tw_side.get_all_items(include_completed=False)

            if len(query.string) == 0:
                results.extend([
                    get_as_item(text=val, completion=f"{__trigger__} {key} ")
                    for key, val in zip(get_prop_for_subcommands("name"),
                                        get_prop_for_subcommands("desc"))
                ])

            is_subcommand, query_text = get_subcommand_query(query.string)
            if not is_subcommand:
                query_text = query.string

            # find relevant results
            desc_to_task = {task["description"]: task for task in tasks}
            matched = process.extract(query_text,
                                      list(desc_to_task.keys()),
                                      limit=30)
            for m in [elem[0] for elem in matched]:
                task = desc_to_task[m]
                results.append(get_tw_item(task))

        except Exception:  # user to report error
            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{sys.exc_info()}",
                        )
                    ],
                ),
            )

    return results
コード例 #27
0
def handleQuery(query) -> list:
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str: str = query.string
            for item in codes_d.items():
                if query_str in item[0]:
                    results.append(get_as_item(item))
                else:
                    for v in item[1]:
                        if query_str.lower() in v.lower():
                            results.append(get_as_item(item))
                            break

        except Exception:  # user to report error
            if dev_mode:
                print(traceback.format_exc())
                raise

            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results
コード例 #28
0
def get_as_item(password_path: Path):
    full_path_no_suffix = Path(f"{password_path.parent}/{password_path.stem}")
    full_path_rel_root = full_path_no_suffix.relative_to(pass_dir)

    full_path_no_suffix_str = str(full_path_no_suffix)
    full_path_rel_root_str = str(full_path_rel_root)

    return v0.Item(
        id=__prettyname__,
        icon=icon_path,
        text=f"{password_path.stem}",
        subtext=full_path_no_suffix_str,
        completion=f"{__trigger__} {full_path_no_suffix_str}",
        actions=[
            v0.ProcAction("Copy", ["pass", "--clip", full_path_rel_root_str]),
            v0.ProcAction("Edit", ["pass", "edit", full_path_rel_root_str]),
            v0.ProcAction("Remove",
                          ["pass", "rm", "--force", full_path_rel_root_str]),
            # v0.ProcAction("Decrypt and open document", )
            v0.ClipAction("Copy Full Path", str(password_path)),
        ],
    )
コード例 #29
0
def setup(query):
    results = []

    try:
        if not server_path.is_file():
            results.append(
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=f"Please specify the JIRA server to connect to",
                    subtext="Fill and press [ENTER]",
                    actions=[
                        v0.FuncAction(
                            "Save JIRA server",
                            lambda: save_data(query.string, "server"))
                    ],
                ))
    except Exception:
        remove_server()
        results.insert(
            0,
            v0.Item(
                id=__prettyname__,
                icon=icon_path,
                text="Something went wrong! Please try again!",
                actions=[
                    v0.ClipAction(
                        f"Copy error - report this problem",
                        f"{traceback.format_exc()}",
                    ),
                    v0.UrlAction(
                        f"Report error!",
                        "https://github.com/gabrielczar/albert-jira-extension/issues/new"
                    )
                ],
            ),
        )
    return results
コード例 #30
0
def handleQuery(query) -> list:
    """Hook that is called by albert with *every new keypress*."""  # noqa
    results = []

    if query.isTriggered:
        try:
            # be backwards compatible with v0.2
            if "disableSort" in dir(query):
                query.disableSort()

            results_setup = setup(query)
            if results_setup:
                return results_setup

            query_str = query.string

            # new behavior
            tokens = query_str.split()
            if len(tokens) >= 1 and tokens[0] == "new":
                if len(tokens) > 1:
                    name = tokens[1]
                else:
                    name = ""
                if len(tokens) > 2:
                    desc = " ".join(tokens[2:])
                else:
                    desc = ""

                results.append(
                    v0.Item(
                        id=__prettyname__,
                        icon=icon_path,
                        text=f"New abbreviation: {name}",
                        subtext=f"Description: {desc}",
                        actions=[
                            v0.FuncAction(
                                f"Save abbreviation to file",
                                lambda name=name, desc=desc: save_abbr(
                                    name, desc),
                            )
                        ],
                    ))

                return results

            curr_hash = hash_file(abbreviations_path)
            global abbr_latest_hash, abbr_latest_d, abbr_latest_d_bi
            if abbr_latest_hash != curr_hash:
                abbr_latest_hash = curr_hash
                with open(abbreviations_path) as f:
                    conts = f.readlines()
                    abbr_latest_d = make_latest_dict(conts)
                    abbr_latest_d_bi = abbr_latest_d.copy()
                    abbr_latest_d_bi.update(
                        {v: k
                         for k, v in abbr_latest_d.items()})

            if not abbr_latest_d:
                results.append(
                    v0.Item(
                        id=__prettyname__,
                        icon=icon_path,
                        text=
                        f'No lines split by "{split_at}" in the file provided',
                        actions=[
                            v0.ClipAction(
                                f"Copy provided filename",
                                str(abbreviations_path),
                            )
                        ],
                    ))

                return results

            # do fuzzy search on both the abbreviations and their description
            matched = process.extract(query_str,
                                      abbr_latest_d_bi.keys(),
                                      limit=10)
            for m in [elem[0] for elem in matched]:
                if m in abbr_latest_d.keys():
                    results.append(get_abbr_as_item((m, abbr_latest_d[m])))
                else:
                    results.append(get_abbr_as_item((abbr_latest_d_bi[m], m)))

        except Exception:  # user to report error
            if dev_mode:  # let exceptions fly!
                print(traceback.format_exc())
                raise

            results.insert(
                0,
                v0.Item(
                    id=__prettyname__,
                    icon=icon_path,
                    text=
                    "Something went wrong! Press [ENTER] to copy error and report it",
                    actions=[
                        v0.ClipAction(
                            f"Copy error - report it to {__homepage__[8:]}",
                            f"{traceback.format_exc()}",
                        )
                    ],
                ),
            )

    return results