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

[Config help] Mapping ids to custom folder names #6981

Open
Perkiness4342 opened this issue Feb 12, 2025 · 1 comment
Open

[Config help] Mapping ids to custom folder names #6981

Perkiness4342 opened this issue Feb 12, 2025 · 1 comment

Comments

@Perkiness4342
Copy link

A couple of days ago I saw a post here where it was explained how to map a custom id to folder names, it will be useful for links like https://coomer.su/fansly/user/123456789, where the {user} is the id.

I looked in the documentation for an hour before posting but couldn't find it 🙈

@NecRaul
Copy link
Contributor

NecRaul commented Feb 17, 2025

I think what you're looking for is something like this:

{
    "extractor": {
        "coomerparty": {
            "directory": {
                "user == '123456789'": ["{category}", "{service}", "custom_folder"],
                "user == '111111111'": ["{category}", "{service}", "another_folder"],
                "user == '222222222'": ["no_category_and_no_service_folder"]
            }
        }
    }
}

Using a more real example, you can map something like https://coomer.su/fansly/user/365239425979916288 to coomerparty/fansly/YourSmallDoll with this:

{
    "extractor": {
        "coomerparty": {
            "directory": {
                "user == '365239425979916288'": ["{category}", "{service}", "YourSmallDoll"]
            }
        }
    }
}

See this for more information.

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

No branches or pull requests

2 participants