Skip to content

Commit

Permalink
feat: Add sanitizer for Reddit
Browse files Browse the repository at this point in the history
  • Loading branch information
svenjacobs committed Sep 12, 2023
1 parent aa37428 commit 53a400b
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import com.svenjacobs.app.leon.core.domain.sanitizer.newegg.NewEggSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.pearl.PearlSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.reddit.RedditMailSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.reddit.RedditOutSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.reddit.RedditSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.sessionids.SessionIdsSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.shopee.ShopeeSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.spiegel.SpiegelSanitizer
Expand Down Expand Up @@ -95,6 +96,7 @@ class ContainerInitializer : DistinctInitializer<Unit> {
PearlSanitizer(),
RedditMailSanitizer(),
RedditOutSanitizer(),
RedditSanitizer(),
SessionIdsSanitizer(),
ShopeeSanitizer(),
SpiegelSanitizer(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
* Léon - The URL Cleaner
* Copyright (C) 2023 Sven Jacobs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.svenjacobs.app.leon.core.domain.sanitizer.reddit

import android.content.Context
import com.svenjacobs.app.leon.core.common.domain.matchesDomain
import com.svenjacobs.app.leon.core.common.regex.RegexFactory
import com.svenjacobs.app.leon.core.domain.R
import com.svenjacobs.app.leon.core.domain.sanitizer.RegexSanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.Sanitizer
import com.svenjacobs.app.leon.core.domain.sanitizer.SanitizerId

class RedditSanitizer : RegexSanitizer(
RegexFactory.AllParameters,
) {

override val id = SanitizerId("reddit")

override fun getMetadata(context: Context) = Sanitizer.Metadata(
name = context.getString(R.string.sanitizer_reddit),
)

override fun matchesDomain(input: String) = input.matchesDomain("reddit.com")
}
1 change: 1 addition & 0 deletions core-domain/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
<string name="sanitizer_netflix_name" translatable="false">Netflix</string>
<string name="sanitizer_newegg_name" translatable="false">NewEgg</string>
<string name="sanitizer_pearl" translatable="false">Pearl</string>
<string name="sanitizer_reddit" translatable="false">Reddit</string>
<string name="sanitizer_reddit_mail" translatable="false">Reddit (click.redditmail.com)</string>
<string name="sanitizer_reddit_out" translatable="false">Reddit (out.reddit.com)</string>
<string name="sanitizer_session_ids_name" translatable="false">Session IDs</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ class RedditOutSanitizerTest : WordSpec(
"match for out.reddit.com" {
sanitizer.matchesDomain("https://out.reddit.com") shouldBe true
}

"not match for reddit.com" {
sanitizer.matchesDomain("https://reddit.com") shouldBe false
}
}
},
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Léon - The URL Cleaner
* Copyright (C) 2023 Sven Jacobs
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.svenjacobs.app.leon.core.domain.sanitizer.reddit

import io.kotest.core.spec.style.WordSpec
import io.kotest.matchers.shouldBe

class RedditSanitizerTest : WordSpec(
{
val sanitizer = RedditSanitizer()

"invoke" should {

"clean reddit.com URLs" {
sanitizer(
"https://www.reddit.com/r/fossdroid/comments/1659ic4/material_files_is_" +
"still_maintained/?share_id=Toc_TMpn88yOUd7Z-y0xv&utm_content=1&utm_mediu" +
"m=android_app&utm_name=androidcss&utm_source=share&utm_term=1",
) shouldBe "https://www.reddit.com/r/fossdroid/comments/1659ic4/material_files_is" +
"_still_maintained/"
}
}

"matchesDomain" should {

"match for reddit.com" {
sanitizer.matchesDomain("https://reddit.com") shouldBe true
}

"not match for out.reddit.com" {
sanitizer.matchesDomain("https://out.reddit.com") shouldBe false
}
}
},
)

0 comments on commit 53a400b

Please sign in to comment.