-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add sanitizer for The Guardian (#179)
- Loading branch information
1 parent
7b20f4b
commit 701d285
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
.../kotlin/com/svenjacobs/app/leon/core/domain/sanitizer/theguardian/TheGuardianSanitizer.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.theguardian | ||
|
||
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 TheGuardianSanitizer : RegexSanitizer( | ||
regex = RegexFactory.AllParameters, | ||
) { | ||
|
||
override val id = SanitizerId("theguardian") | ||
|
||
override fun getMetadata(context: Context) = Sanitizer.Metadata( | ||
name = context.getString(R.string.sanitizer_theguardian), | ||
) | ||
|
||
override fun matchesDomain(input: String) = input.matchesDomain("theguardian.com") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...lin/com/svenjacobs/app/leon/core/domain/sanitizer/theguardian/TheGuardianSanitizerTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* 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.theguardian | ||
|
||
import io.kotest.core.spec.style.WordSpec | ||
import io.kotest.matchers.shouldBe | ||
|
||
class TheGuardianSanitizerTest : WordSpec( | ||
{ | ||
val sanitizer = TheGuardianSanitizer() | ||
|
||
"invoke" should { | ||
|
||
"remove all parameters" { | ||
|
||
val result = sanitizer( | ||
"https://www.theguardian.com/world/2023/jan/15/nepal-plane-crash-with-7" + | ||
"2-onboard-leaves-at-least-16-dead?CMP=Share_AndroidApp_Other", | ||
) | ||
|
||
result shouldBe "https://www.theguardian.com/world/2023/jan/15/nepal-plane-crash-" + | ||
"with-72-onboard-leaves-at-least-16-dead" | ||
} | ||
} | ||
|
||
"matchesDomain" should { | ||
|
||
"match for theguardian.com" { | ||
sanitizer.matchesDomain("https://www.theguardian.com") shouldBe true | ||
} | ||
} | ||
}, | ||
) |