Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MacOs support working #20

Open
mr-suw opened this issue Nov 10, 2018 · 6 comments
Open

MacOs support working #20

mr-suw opened this issue Nov 10, 2018 · 6 comments
Assignees
Labels

Comments

@mr-suw
Copy link

mr-suw commented Nov 10, 2018

Hi,

With the following steps you will get the monkey working on MacOs Mojave (10.14):

  1. download linux release
  2. tar xvzf nzbmonkey-v*-linux.tbz2
  3. brew install python
  4. pip3 install --user pyperclip requests configobj colorama
  5. pip3 install --user cryptography
  6. cd nzbmonkey*
  7. create nzbmonkey.cfg by ./nzbmonkey.py
  8. test with real data ./nzbmonkey.py "nzblnk:?t=title&h=header&p=password"
  9. create wrapper script with name nzbmonkey.command:
    #!/bin/sh
    cd "$(dirname "$0")"
    echo "$1" > last_call.txt
    ./nzbmonkey.py "$1"
  10. chmod +x nzbmonkey.command
  11. register nzblnk as url scheme by installing lincastor
  12. open lincastor and add new scheme
  13. Choose as scheme nzblnk
  14. use a shell script to execute nzbmonkey.command $URL

Enjoy

@nzblnk nzblnk added the hint label Dec 24, 2018
@nzblnk nzblnk self-assigned this Dec 24, 2018
@nzblnk
Copy link
Owner

nzblnk commented Dec 24, 2018

Thank you for your contribution. We will test this an include this in out build chains. The idea is not to use lincastor in this list. So we try to provide everything necessary. 👍

@nzblnk
Copy link
Owner

nzblnk commented Jan 11, 2020

I heard the author of NZB Donkey (a NZB Monkey browser plugin) is working on a iOS version. Please keep you eyes open for "NZB Donkey" in the app store (its not yet there).

@mstilkerich
Copy link

mstilkerich commented Dec 31, 2021

If you want to register to URL handler without using lincastor, you can do it manually with an application bundle created from an Apple Script.

  1. Follow the steps of the original post up to and including step 10; however, if you use the homebrew python, you need to make sure it is used to execute nzbmonkey, not the python that comes with macOS (otherwise, it will not find the dependencies). You can achieve this by adding the following to the script before calling nzbmonkey:
# for Apple Silicon
PATH="/opt/homebrew/bin:$PATH"
# for x86_64
PATH="/usr/local/bin:$PATH"
  1. Open "Script Editor", create a new apple script "New Document"
  2. Insert the following AppleScript code:
on open location this_URL
	do shell script "$HOME/path/to/nzbmonkey-vX.Y.Z-linux/nzbmonkey.command " & quoted form of this_URL
end open location
  1. Save it, as File Format in the Save dialog choose "Application"
  2. Go to the newly saved Application bundle in the Finder, right click, "Show Package Contents"
  3. Open Contents/Info.plist with a text editor, e.g. TextEdit
  4. Add the following, for example right after the initial <dict> tag (it can be anywhere, just not in between an existing key-value pair):
<key>CFBundleURLTypes</key>
<array>
	<dict>
		<key>CFBundleURLName</key>
		<string>NZBLNK URL</string>
		<key>CFBundleURLSchemes</key>
		<array>
			<string>nzblnk</string>
		</array>
	</dict>
</array>
  1. Open the application by double clicking it in the finder. Nothing visible happens, but it registers itself with the system as a handler for the nzblnk URI scheme.
  2. Now when you click an nzblnk link, it should offer you to open the application you created with the Script Editor to handle the URI.

@kamilmalinski
Copy link

kamilmalinski commented Jan 4, 2022

@mstilkerich thanks for your instructions, but I can not get it to run

the nzbmonkey.command script works fine when I call it from the command line but the AppleScript-app doesn't seem to do anything. When I open a "nzblnk"-URL I see the script editor app appearing in the dock for a few seconds and then it disappears again and nothing was sent to sabnzbd

do you have any idea what might be the problem?

Edit: the output of the AppleScript is:

error "Traceback (most recent call last): File \"/Users/musername/nzbmonkey/nzbmonkey.py\", line 1754, in <module> sys.exit(main()) File \"/Users/myusername/nzbmonkey/nzbmonkey.py\", line 1607, in main uch = int(input('\\n Your choice: ')) - 1 EOFError: EOF when reading a line" number 1

Edit2: I guess the problem is that nzbmonkey prompts the user to choose a category for the download and the AppleScript aborts the script at that point

Edit3: it works fine when "categorize" is set to "auto" in nzbmonkey.cfg

@Severon96
Copy link

Can confirm that the combination of @e-skulk and @mstilkerich works flawlessly on macOS Monterey 12.5.1

@LilaQ
Copy link

LilaQ commented Sep 27, 2023

@mstilkerich Works great, thanks for that. But do you know if there is a way to show the output of the script while it's being executed? Like, just the simple Terminal windows or something. Would be great to be able to track what's happening, right now it's just the AppleScript icon in the task bar as only indication.

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants