Sabnzbd cannot handle non ASCII characters on ASCII file

Report & discuss bugs found in SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
abu3safeer
Newbie
Newbie
Posts: 12
Joined: April 2nd, 2024, 9:35 am

Sabnzbd cannot handle non ASCII characters on ASCII file

Post by abu3safeer »

Some indexers, or even ngPost may produce ASCII nzb, but it contains some special characters or any unicode letter, it would throw"not well-formed" error message

I did fix this by using python script, but if python script can do it, then sabnzbd can do it better and auto detect the file encoding and try to parse it as utf-8 file.

This is the script I use to fix those "not well-formed" nzb files.

Code: Select all

import pathlib

files = list(pathlib.Path().rglob('*.nzb'))
fileslist = []
for item in files:
    if item.is_file():
        fileslist.append(item)
print(fileslist)


for file in fileslist:
    try:
        with open(file, 'r', encoding='ansi') as f:
            text = f.read()


        with open(file, 'w', encoding='utf8') as f:
            f.write(text)
    except:
        pass
Last edited by abu3safeer on June 12th, 2024, 6:27 am, edited 1 time in total.
User avatar
safihre
Administrator
Administrator
Posts: 5521
Joined: April 30th, 2015, 7:35 am
Contact:

Re: Sabnzbd cannot handle non ASCII characters on ASCII file

Post by safihre »

Could you share such an NZB with me at [email protected]?

How do you upload the file to Sab?
If you like our support, check our special newsserver deal or donate at: https://sabnzbd.org/donate
abu3safeer
Newbie
Newbie
Posts: 12
Joined: April 2nd, 2024, 9:35 am

Re: Sabnzbd cannot handle non ASCII characters on ASCII file

Post by abu3safeer »

I have sent an email with the needed nzbs.
User avatar
safihre
Administrator
Administrator
Posts: 5521
Joined: April 30th, 2015, 7:35 am
Contact:

Re: Sabnzbd cannot handle non ASCII characters on ASCII file

Post by safihre »

The problem is that there's just an invalid encoded character in there for UTF8 encoding. It just can't handle it.
If we try to open it in ANSI mode, other files would fail to process that have valid UTF8 encoding.
If you like our support, check our special newsserver deal or donate at: https://sabnzbd.org/donate
abu3safeer
Newbie
Newbie
Posts: 12
Joined: April 2nd, 2024, 9:35 am

Re: Sabnzbd cannot handle non ASCII characters on ASCII file

Post by abu3safeer »

I meant something like this:
Sabnzbd will try to open a file, if it throw "not well-formatted" exception, it try to open it as ASCII and then save it as UTF-8, then try to process it normally, this should solve 99% of the issues since posting tools like ngPost only post with ASCII and UTF-8
Of course if the file actually is not formatted correctly, it will still throw the exception, and this time is real, not an encoding issue.

I didn't see any other encoding rather than ASCII and UTF-8 in nzb file till now, even the generated nzb from variety of indexers.
User avatar
safihre
Administrator
Administrator
Posts: 5521
Joined: April 30th, 2015, 7:35 am
Contact:

Re: Sabnzbd cannot handle non ASCII characters on ASCII file

Post by safihre »

At that point in the code we deal with file-pointers, which makes such a trick quite hard.
And we haven't really experienced any problems until your example NZB's, so it seems not really a widespread problem?
If you like our support, check our special newsserver deal or donate at: https://sabnzbd.org/donate
abu3safeer
Newbie
Newbie
Posts: 12
Joined: April 2nd, 2024, 9:35 am

Re: Sabnzbd cannot handle non ASCII characters on ASCII file

Post by abu3safeer »

I see, It is not a widespread problem since it only effects non-Latin letters, I think I might change the encoding manually until sabnzbd can handle it somehow.
Thanks for your time.
Post Reply