Compare commits

...

28 commits
v2.0.0 ... main

Author SHA1 Message Date
0a0fc645fc
Merge branch 'beta'
All checks were successful
Release / Semantic Release (push) Successful in 58s
Build / Checks (push) Successful in 38s
Build / Code Coverage (push) Successful in 47s
Build / Build (push) Successful in 31s
2025-03-01 13:50:43 +01:00
107c873b4b
ci: merge dependency updates into develop branch
All checks were successful
Build / Checks (push) Successful in 33s
Build / Code Coverage (push) Successful in 48s
Build / Build (push) Successful in 38s
Release / Semantic Release (push) Successful in 47s
2025-03-01 13:26:56 +01:00
851ecb345a
chore: Configure Renovate (#1)
Reviewed-on: #1
2025-03-01 13:26:56 +01:00
f4ceca90ab
ci: merge dependency updates into develop branch 2025-03-01 13:26:00 +01:00
b4cff38dca chore: Configure Renovate (#1)
Reviewed-on: #1
2025-03-01 12:22:47 +00:00
7b5e1d0254
feat: new release of version 4
All checks were successful
Build / Checks (push) Successful in 34s
Build / Code Coverage (push) Successful in 45s
Build / Build (push) Successful in 33s
2025-02-28 15:46:06 +01:00
18a84b9b92
style: removed unnecessary braces and else if statements
All checks were successful
Build / Checks (push) Successful in 34s
Build / Code Coverage (push) Successful in 44s
Build / Build (push) Successful in 34s
2025-02-27 20:43:46 +01:00
8d8f8b0c99
style: fixed typo 2025-02-27 20:42:57 +01:00
203438dc8c
ci: new build pipeline 2025-02-27 20:41:08 +01:00
ceb7d04edd
ci: new release workflow 2025-02-27 20:39:15 +01:00
2fb1b35713
feat: renamed goHTTPRouter to httprouter
BREAKING CHANGE: new package name git.martin-riedl.de/golang/httprouter
2025-02-27 20:34:47 +01:00
c0e04495a4
docs: updated samples for v3 2024-07-02 02:08:39 +02:00
ac2d0bd827
fix: version number of new major release v3 2024-07-02 02:08:28 +02:00
1613a02b8e
test: fixed test for file system index check 2024-07-02 01:36:56 +02:00
ff36e5eb1d
renamed camel case index file names 2024-07-02 01:26:21 +02:00
a6d67cf60a
feat: new (optional) index file list for file system serve 2024-07-02 01:14:17 +02:00
aa0a11f3c5
fix: typo in FileSystem HeaderHandler
BREAKING CHANGE: rename HeaderHeandler to HeaderHandler if used
2024-07-02 00:49:34 +02:00
773209071c
fix: folders in FileSystems are now correctly returned as 404 instead of 200 without content 2024-07-02 00:40:11 +02:00
144d640578
ci: build on custom infrastructure 2024-07-01 23:46:13 +02:00
85ab140761
ci: new semantic release workflow 2024-07-01 23:24:01 +02:00
fda5e96ceb
increase go version to 1.19
BREAKING CHANGE: requires at least go 1.19 (instead of 1.16 as before)
2024-07-01 23:18:24 +02:00
f7dc11aabc
fix: ignore intellij project files 2024-07-01 22:55:50 +02:00
8225706f4c
ci: new build pipeline 2024-07-01 22:55:11 +02:00
e491412f07
fixed sources detection 2021-07-25 20:32:56 +02:00
78a018b4f6
fixed test files detection 2021-07-25 20:30:03 +02:00
5c80024022
upload coverage to sonarcloud 2021-07-25 20:17:02 +02:00
b7dc1d7f6e
new sonar-cloud integration 2021-07-24 19:34:04 +02:00
36efa38103
use new CI script 2021-07-24 19:22:47 +02:00
14 changed files with 370 additions and 72 deletions

View file

@ -0,0 +1,81 @@
name: Build
on:
push:
branches:
- main
- beta
- develop
pull_request:
jobs:
checks:
name: Checks
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
check-latest: true
- name: Run go fmt and go vet
run: |
go fmt $(go list ./...)
go vet $(go list ./...)
code-coverage:
name: Code Coverage
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
check-latest: true
- name: Run tests and generate coverage report
run: |
go test -covermode=count -coverprofile coverage.cov $(go list ./...)
go tool cover -func=coverage.cov
go tool cover -html=coverage.cov -o coverage.html
- name: Upload coverage artifacts
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
with:
name: coverage-reports
path: |
coverage.cov
coverage.html
build:
name: Build
runs-on: docker
strategy:
matrix:
go:
- GOOS: darwin
GOARCH: amd64
- GOOS: darwin
GOARCH: arm64
- GOOS: linux
GOARCH: amd64
- GOOS: linux
GOARCH: arm64
- GOOS: windows
GOARCH: amd64
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
check-latest: true
- name: Set environment variables
run: |
echo "GOOS=${{ matrix.go.GOOS }}" >> $GITHUB_ENV
echo "GOARCH=${{ matrix.go.GOARCH }}" >> $GITHUB_ENV
- name: Build
run: go build .

View file

@ -0,0 +1,20 @@
name: Release
on:
push:
branches:
- main
- beta
jobs:
release:
name: Semantic Release
runs-on: docker
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Semantic Release
shell: bash
run: |
npm install -g semantic-release@23 conventional-changelog-conventionalcommits@7
semantic-release

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
.DS_Store .DS_Store
.vscode .vscode
.idea

View file

@ -1,38 +0,0 @@
image: golang:latest
stages:
- test
validate lint:
stage: test
script:
- go get -u golang.org/x/lint/golint
- golint -set_exit_status ./...
execute tests:
stage: test
script:
- go test ./...
race detection:
stage: test
script:
- go test -race ./...
code coverage:
stage: test
script:
- go test -covermode=count -coverprofile coverage.cov ./...
- go tool cover -func=coverage.cov
- mkdir $CI_PROJECT_DIR/report
- go tool cover -html=coverage.cov -o $CI_PROJECT_DIR/report/coverage.html
coverage: '/\(statements\)\W+\d+\.\d+%/'
artifacts:
paths:
- report/
codecov.io:
stage: test
script:
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- bash <(curl -s https://codecov.io/bash)

72
.releaserc Normal file
View file

@ -0,0 +1,72 @@
{
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "chore",
"release": "patch"
},
{
"type": "build",
"release": "patch"
},
{
"type": "ci",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "chore",
"section": "Miscellaneous Chores"
}
]
}
}
],
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
}

View file

@ -1,17 +1,19 @@
# goHTTPRouter # httprouter
[![release](https://git.martin-riedl.de/golang/httprouter/badges/release.svg)](https://git.martin-riedl.de/golang/httprouter/tags)
[![pipeline status](https://git.martin-riedl.de/golang/httprouter/badges/workflows/build.yml/badge.svg)](https://git.martin-riedl.de/golang/httprouter/actions)
[![GoDoc](https://godoc.org/gitlab.com/martinr92/gohttprouter?status.svg)](https://godoc.org/gitlab.com/martinr92/gohttprouter) [![GoDoc](https://godoc.org/gitlab.com/martinr92/gohttprouter?status.svg)](https://godoc.org/gitlab.com/martinr92/gohttprouter)
[![pipeline status](https://gitlab.com/martinr92/gohttprouter/badges/master/pipeline.svg)](https://gitlab.com/martinr92/gohttprouter/commits/master)
[![coverage report](https://gitlab.com/martinr92/gohttprouter/badges/master/coverage.svg)](https://gitlab.com/martinr92/gohttprouter/commits/master)
[![codecov](https://codecov.io/gl/martinr92/gohttprouter/branch/master/graph/badge.svg)](https://codecov.io/gl/martinr92/gohttprouter)
[![Go Report Card](https://goreportcard.com/badge/gitlab.com/martinr92/gohttprouter)](https://goreportcard.com/report/gitlab.com/martinr92/gohttprouter) [![Go Report Card](https://goreportcard.com/badge/gitlab.com/martinr92/gohttprouter)](https://goreportcard.com/report/gitlab.com/martinr92/gohttprouter)
goHTTPRouter is a framework used for HTTP request routing. httprouter is a framework used for HTTP request routing.
# Examples # Examples
## Simple Routing ## Simple Routing
Just replace the standard router of golang with this one: Just replace the standard router of golang with this one:
```golang ```golang
import httprouter "gitlab.com/martinr92/gohttprouter/v2" import "git.martin-riedl.de/golang/httprouter/v4"
``` ```
```golang ```golang
router := httprouter.New() router := httprouter.New()
@ -22,9 +24,10 @@ err := http.ListenAndServe("localhost:8080", router)
``` ```
## Routing with placeholder ## Routing with placeholder
A path can also contain placeholder (like :id). If then a request is sent to the url "/user/123" the method gets executed and the URL part (in this case "123") is passed as parameter into your handler function. A path can also contain placeholder (like :id). If then a request is sent to the url "/user/123" the method gets executed and the URL part (in this case "123") is passed as parameter into your handler function.
```golang ```golang
import httprouter "gitlab.com/martinr92/gohttprouter/v2" import "git.martin-riedl.de/golang/httprouter/v4"
``` ```
```golang ```golang
router := httprouter.New() router := httprouter.New()
@ -38,11 +41,12 @@ err := http.ListenAndServe("localhost:8080", router)
``` ```
## Serve Static Content ## Serve Static Content
Static files (like JavaScript or CSS) can be served automatically (including caching header and MIME type). It uses the `embed.FS` (since go 1.16) to serve static content. Static files (like JavaScript or CSS) can be served automatically (including caching header and MIME type). It uses the `embed.FS` (since go 1.16) to serve static content.
```golang ```golang
import httprouter "gitlab.com/martinr92/gohttprouter/v2" import "git.martin-riedl.de/golang/httprouter/v4"
//go:embed files/statc/* //go:embed files/static/*
var staticFiles embed.FS var staticFiles embed.FS
``` ```
```golang ```golang
@ -51,9 +55,12 @@ router := httprouter.New()
router.Handle(http.MethodGet, "/static/*", staticFS) router.Handle(http.MethodGet, "/static/*", staticFS)
``` ```
For development purpose you can enable the local file serving additionally. The framework checks first, if the file exists locally and serves it directly. If not, the file is served from the `embed.FS`. This helps you during local development so you can modify a CSS file without recompiling everything. For development purpose you can enable the local file serving additionally.
The framework checks first, if the file exists locally and serves it directly.
If not, the file is served from the `embed.FS`.
This helps you during local development so you can modify a CSS file without recompiling everything.
```golang ```golang
import httprouter "gitlab.com/martinr92/gohttprouter/v2" import "git.martin-riedl.de/golang/httprouter/v4"
``` ```
```golang ```golang
staticFS := httprouter.NewFS(&staticFiles) staticFS := httprouter.NewFS(&staticFiles)
@ -62,8 +69,9 @@ staticFS.LocalFolderPrefix = "some/folder" // optional
``` ```
# License # License
``` ```
Copyright 2018-2021 Martin Riedl Copyright 2018-2025 Martin Riedl
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

56
fs.go
View file

@ -1,4 +1,4 @@
// Copyright 2021 Martin Riedl // Copyright 2021-2025 Martin Riedl
// //
// Licensed under the Apache License, Version 2.0 (the "License"); // Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. // you may not use this file except in compliance with the License.
@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
package gohttprouter package httprouter
import ( import (
"embed" "embed"
@ -32,14 +32,15 @@ type FS struct {
FolderPrefix string FolderPrefix string
UseLocalFolder bool UseLocalFolder bool
LocalFolderPrefix string LocalFolderPrefix string
HeaderHeandler HeaderHandler HeaderHandler HeaderHandler
IndexFileNames []string
} }
// NewFS creates a new instance of the http file system used for serving static files. // NewFS creates a new instance of the http file system used for serving static files.
func NewFS(staticFiles *embed.FS) *FS { func NewFS(staticFiles *embed.FS) *FS {
return &FS{ return &FS{
StaticFiles: staticFiles, StaticFiles: staticFiles,
HeaderHeandler: DefaultHeaderHandler, HeaderHandler: DefaultHeaderHandler,
} }
} }
@ -56,6 +57,12 @@ func (fs *FS) ServeHTTP(w http.ResponseWriter, r *http.Request, info RoutingInfo
http.NotFound(w, r) http.NotFound(w, r)
return return
} }
// check, if the file is a folder
file, ok := fs.checkFolder(file, url)
if !ok {
http.NotFound(w, r)
return
}
defer file.Close() defer file.Close()
// serve file content // serve file content
@ -71,6 +78,9 @@ func (fs *FS) findFile(url string) (fs.File, error) {
if fs.UseLocalFolder { if fs.UseLocalFolder {
localFilePath := path.Join(fs.LocalFolderPrefix, filePath) localFilePath := path.Join(fs.LocalFolderPrefix, filePath)
localFilePath = strings.TrimPrefix(localFilePath, "/") localFilePath = strings.TrimPrefix(localFilePath, "/")
if localFilePath == "" {
localFilePath = "."
}
file, err := os.Open(localFilePath) file, err := os.Open(localFilePath)
if err == nil { if err == nil {
@ -79,13 +89,43 @@ func (fs *FS) findFile(url string) (fs.File, error) {
} }
// use static file system // use static file system
return fs.StaticFiles.Open(filePath) if filePath == "" {
filePath = "."
}
file, err := fs.StaticFiles.Open(filePath)
return file, err
}
func (fs *FS) checkFolder(file fs.File, url string) (fs.File, bool) {
fileInfo, err := file.Stat()
if err != nil {
_ = file.Close()
return file, false
}
// check for folder / root location
if fileInfo.IsDir() {
// close folder handler (we don't need it anymore)
_ = file.Close()
// check for index files
for _, indexFileName := range fs.IndexFileNames {
newFullPath := path.Join(url, indexFileName)
if newFile, err := fs.findFile(newFullPath); err == nil {
return newFile, true
}
}
return file, false
}
return file, true
} }
func (fs *FS) serve(w http.ResponseWriter, r *http.Request, info RoutingInfo, file fs.File) { func (fs *FS) serve(w http.ResponseWriter, r *http.Request, info RoutingInfo, file fs.File) {
// execute header handler // execute header handler
if fs.HeaderHeandler != nil { if fs.HeaderHandler != nil {
fs.HeaderHeandler(w, r, info, file) fs.HeaderHandler(w, r, info, file)
} }
w.WriteHeader(http.StatusOK) w.WriteHeader(http.StatusOK)

View file

@ -1,4 +1,18 @@
package gohttprouter // Copyright 2025 Martin Riedl
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package httprouter
import ( import (
"embed" "embed"
@ -114,6 +128,69 @@ func TestFSLicense(t *testing.T) {
} }
} }
func TestFSFolder(t *testing.T) {
// create new FS
fs := NewFS(&staticFiles)
// serve the request
tw := &testWriter{}
tr := &http.Request{
Method: http.MethodHead,
URL: &url.URL{
Path: "/",
},
}
fs.ServeHTTP(tw, tr, RoutingInfo{})
// check data
if tw.statusCode != http.StatusNotFound {
t.Error("received invalid http status code", tw.statusCode)
}
}
func TestFSFolderLocal(t *testing.T) {
// create new FS
fs := NewFS(&staticFiles)
fs.UseLocalFolder = true
fs.LocalFolderPrefix = "/"
// serve the request
tw := &testWriter{}
tr := &http.Request{
Method: http.MethodHead,
URL: &url.URL{
Path: "/",
},
}
fs.ServeHTTP(tw, tr, RoutingInfo{})
// check data
if tw.statusCode != http.StatusNotFound {
t.Error("received invalid http status code", tw.statusCode)
}
}
func TestFSFolderIndex(t *testing.T) {
// create new FS
fs := NewFS(&staticFiles)
fs.IndexFileNames = []string{"README.md"}
// serve the request
tw := &testWriter{}
tr := &http.Request{
Method: http.MethodHead,
URL: &url.URL{
Path: "/",
},
}
fs.ServeHTTP(tw, tr, RoutingInfo{})
// check data
if tw.statusCode != http.StatusOK {
t.Error("received invalid http status code", tw.statusCode)
}
}
func TestFSNotFound(t *testing.T) { func TestFSNotFound(t *testing.T) {
// create new FS // create new FS
fs := NewFS(&staticFiles) fs := NewFS(&staticFiles)

4
go.mod
View file

@ -1,3 +1,3 @@
module gitlab.com/martinr92/gohttprouter/v2 module git.martin-riedl.de/golang/httprouter/v4
go 1.16 go 1.19

9
renovate.json Normal file
View file

@ -0,0 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>ci/renovate//configs/base"
],
"baseBranches": [
"develop"
]
}

View file

@ -1,4 +1,4 @@
// Copyright 2018-2021 Martin Riedl // Copyright 2018-2025 Martin Riedl
// //
// Licensed under the Apache License, Version 2.0 (the "License"); // Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. // you may not use this file except in compliance with the License.
@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
package gohttprouter package httprouter
import ( import (
"strings" "strings"
@ -82,7 +82,7 @@ func (r *route) parsePath(path string, create bool) (*route, bool, map[string]st
if !ok && !create { if !ok && !create {
// no route found // no route found
return nil, false, nil return nil, false, nil
} else if !ok && create { } else if !ok {
subRoute = newRoute() subRoute = newRoute()
subRoute.parseName(subName) subRoute.parseName(subName)
r.routes[subRoute.name] = subRoute r.routes[subRoute.name] = subRoute
@ -91,7 +91,7 @@ func (r *route) parsePath(path string, create bool) (*route, bool, map[string]st
// parse sub-route // parse sub-route
matchingRoute, created, subParameters := subRoute.parsePath(parts[1], create) matchingRoute, created, subParameters := subRoute.parsePath(parts[1], create)
return matchingRoute, (subRouteCreated || created), mergeParameterMaps(parameters, subParameters) return matchingRoute, subRouteCreated || created, mergeParameterMaps(parameters, subParameters)
} }
// last element in path // last element in path

View file

@ -1,4 +1,18 @@
package gohttprouter // Copyright 2025 Martin Riedl
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package httprouter
import ( import (
"testing" "testing"
@ -59,7 +73,7 @@ func TestRoutePlaceholder(t *testing.T) {
t.Error("error during placeholder name validation;", placeholderElement.placeholderName) t.Error("error during placeholder name validation;", placeholderElement.placeholderName)
} }
// check path finder // check pathfinder
foundRoute, _, foundParameters := route.parsePath("/user/123/home/martin", false) foundRoute, _, foundParameters := route.parsePath("/user/123/home/martin", false)
if foundRoute != homePathElement.routes[":"] { if foundRoute != homePathElement.routes[":"] {
t.Error("wrong path element returned form path finding") t.Error("wrong path element returned form path finding")

View file

@ -1,4 +1,4 @@
// Copyright 2018-2021 Martin Riedl // Copyright 2018-2025 Martin Riedl
// //
// Licensed under the Apache License, Version 2.0 (the "License"); // Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. // you may not use this file except in compliance with the License.
@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
package gohttprouter package httprouter
import ( import (
"fmt" "fmt"
@ -85,7 +85,7 @@ func (router *Router) findRoute(method string, path string, create bool) (route
methodRoute, ok := router.registry[methodUpper] methodRoute, ok := router.registry[methodUpper]
if !ok && !create { if !ok && !create {
return nil, false, nil return nil, false, nil
} else if !ok && create { } else if !ok {
methodRoute = newRoute() methodRoute = newRoute()
router.registry[methodUpper] = methodRoute router.registry[methodUpper] = methodRoute
created = true created = true

View file

@ -1,4 +1,18 @@
package gohttprouter // Copyright 2025 Martin Riedl
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package httprouter
import ( import (
"net" "net"