2020-04-04 01:31:27 +03:00
|
|
|
module Documentation.ReadmeLinksPointToCurrentVersion exposing (rule)
|
|
|
|
|
2020-04-04 13:17:24 +03:00
|
|
|
{-|
|
2020-04-04 01:31:27 +03:00
|
|
|
|
2020-04-04 13:17:24 +03:00
|
|
|
@docs rule
|
2020-04-04 01:31:27 +03:00
|
|
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
import Elm.Package
|
|
|
|
import Elm.Project
|
|
|
|
import Elm.Syntax.Range exposing (Range)
|
|
|
|
import Elm.Version
|
|
|
|
import Regex exposing (Regex)
|
2020-04-04 01:39:50 +03:00
|
|
|
import Review.Fix as Fix
|
2020-04-04 01:31:27 +03:00
|
|
|
import Review.Rule as Rule exposing (Error, Rule)
|
|
|
|
|
|
|
|
|
2020-04-04 13:17:24 +03:00
|
|
|
{-| Reports links in the `README.md` that point to this project's package documentation on <https://package.elm-lang.org/>,
|
|
|
|
where the version is set to `latest` or a different version than the current version of the package.
|
|
|
|
|
2020-04-07 23:54:17 +03:00
|
|
|
The problem with linking to `latest` is that if you release a new version later,
|
|
|
|
the users who read the README for the older version will be directed to a version
|
|
|
|
where the module/function/section you pointed to may not exist anymore.
|
|
|
|
|
|
|
|
This rule ensures that you always use the correct version in all of your releases,
|
|
|
|
and that you do not forget to update the links.
|
|
|
|
|
|
|
|
This rule provides automatic fixes, so you won't to do the tedious job of updating
|
|
|
|
the links yourself.
|
|
|
|
|
|
|
|
**NOTE**: Just make sure to run tests between bumping the version of the package
|
|
|
|
and publishing the package. Otherwise the link for a given version could link to a previous one.
|
|
|
|
|
|
|
|
**NOTE**: A similar rule would be useful for links inside the modules. I'll be working on that too!
|
2020-04-04 13:17:24 +03:00
|
|
|
|
2020-08-09 19:55:15 +03:00
|
|
|
|
|
|
|
## Try it out
|
|
|
|
|
|
|
|
You can try this rule out by running the following command:
|
|
|
|
|
|
|
|
```bash
|
2020-09-22 20:40:30 +03:00
|
|
|
elm-review --template jfmengels/elm-review-documentation/example --rules NoUselessSubscriptions
|
2020-08-09 19:55:15 +03:00
|
|
|
```
|
|
|
|
|
2020-04-04 13:17:24 +03:00
|
|
|
-}
|
2020-04-04 01:31:27 +03:00
|
|
|
rule : Rule
|
|
|
|
rule =
|
2020-06-28 08:49:27 +03:00
|
|
|
Rule.newProjectRuleSchema "ReadmeLinksPointToCurrentVersion" initialProjectContext
|
|
|
|
|> Rule.withElmJsonProjectVisitor elmJsonVisitor
|
|
|
|
|> Rule.withReadmeProjectVisitor readmeVisitor
|
|
|
|
|> Rule.fromProjectRuleSchema
|
2020-04-04 01:31:27 +03:00
|
|
|
|
|
|
|
|
|
|
|
type alias ProjectContext =
|
|
|
|
Maybe
|
|
|
|
{ projectName : String
|
|
|
|
, version : String
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
initialProjectContext : ProjectContext
|
|
|
|
initialProjectContext =
|
|
|
|
Nothing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- elm.json VISITOR
|
|
|
|
|
|
|
|
|
|
|
|
elmJsonVisitor : Maybe { a | project : Elm.Project.Project } -> ProjectContext -> ( List nothing, ProjectContext )
|
|
|
|
elmJsonVisitor maybeProject _ =
|
|
|
|
case maybeProject |> Maybe.map .project of
|
|
|
|
Just (Elm.Project.Package pkg) ->
|
|
|
|
( []
|
|
|
|
, Just
|
|
|
|
{ projectName = Elm.Package.toString pkg.name
|
|
|
|
, version = Elm.Version.toString pkg.version
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
( [], Nothing )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- README VISITOR
|
|
|
|
|
|
|
|
|
|
|
|
readmeVisitor : Maybe { readmeKey : Rule.ReadmeKey, content : String } -> ProjectContext -> ( List (Error scope), ProjectContext )
|
|
|
|
readmeVisitor maybeReadme maybeContext =
|
|
|
|
case ( maybeReadme, maybeContext ) of
|
|
|
|
( Just { readmeKey, content }, Just context ) ->
|
|
|
|
( findRangeForSubstring context readmeKey content, maybeContext )
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
( [], maybeContext )
|
|
|
|
|
|
|
|
|
|
|
|
linkRegex : Regex
|
|
|
|
linkRegex =
|
|
|
|
Regex.fromString "]\\(https://package\\.elm-lang\\.org/packages/([\\w-]+/[\\w-]+)/(\\w+(\\.\\w+\\.\\w+)?)(.*)\\)"
|
|
|
|
|> Maybe.withDefault Regex.never
|
|
|
|
|
|
|
|
|
|
|
|
findRangeForSubstring : { projectName : String, version : String } -> Rule.ReadmeKey -> String -> List (Error scope)
|
|
|
|
findRangeForSubstring context readmeKey content =
|
|
|
|
content
|
|
|
|
|> String.lines
|
|
|
|
|> List.indexedMap Tuple.pair
|
|
|
|
|> List.concatMap
|
|
|
|
(\( row, line ) ->
|
|
|
|
Regex.find linkRegex line
|
|
|
|
|> List.filterMap (notAMatch context readmeKey row)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
notAMatch : { projectName : String, version : String } -> Rule.ReadmeKey -> Int -> Regex.Match -> Maybe (Error scope)
|
|
|
|
notAMatch { projectName, version } readmeKey row match =
|
|
|
|
case match.submatches of
|
2020-04-04 01:39:50 +03:00
|
|
|
(Just authorAndPackage) :: (Just linkVersion) :: _ :: rest :: [] ->
|
2020-04-04 01:31:27 +03:00
|
|
|
if authorAndPackage == projectName && linkVersion /= version then
|
2020-04-04 01:39:50 +03:00
|
|
|
let
|
|
|
|
range : Range
|
|
|
|
range =
|
|
|
|
{ start =
|
|
|
|
{ row = row + 1
|
|
|
|
, column = match.index + 3
|
|
|
|
}
|
|
|
|
, end =
|
|
|
|
{ row = row + 1
|
|
|
|
, column = match.index + String.length match.match
|
|
|
|
}
|
|
|
|
}
|
|
|
|
in
|
2020-04-04 13:58:26 +03:00
|
|
|
Rule.errorForReadmeWithFix readmeKey
|
2020-04-04 01:31:27 +03:00
|
|
|
{ message = "Link does not point to the current version of the package"
|
2020-04-07 23:54:17 +03:00
|
|
|
, details = [ "I suggest to run elm-review --fix to get the correct links." ]
|
2020-04-04 01:31:27 +03:00
|
|
|
}
|
2020-04-04 01:39:50 +03:00
|
|
|
range
|
2020-04-04 13:58:26 +03:00
|
|
|
[ Fix.replaceRangeBy range <| "https://package.elm-lang.org/packages/" ++ projectName ++ "/" ++ version ++ Maybe.withDefault "" rest ]
|
2020-04-04 01:31:27 +03:00
|
|
|
|> Just
|
|
|
|
|
|
|
|
else
|
|
|
|
Nothing
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
Nothing
|