-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
143 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
We follow the CalVer (https://calver.org/) versioning scheme: YY.MINOR.MICRO. | ||
|
||
19.0.0 (2019-08-19) | ||
=================== | ||
|
||
- Update fakeCAS for OSF token-scope relationship change | ||
- Add OAuth revoke endpoint | ||
- Fix OAuth profile endpoint | ||
- Rewrite readme | ||
|
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,34 @@ | ||
<!-- Use the following format for the title of the pull request: | ||
[Ticket] Title | ||
Before submit your pull request, make sure you picked the right branch: | ||
- For hotfixes, select "master" as the target branch | ||
- For new features and improvements, select "develop" as the target branch | ||
For security related tickets, talk with the team lead before submit your PR --> | ||
|
||
## Ticket | ||
|
||
<!-- Link to JIRA ticket, if applicable e.g. https://openscience.atlassian.net/browse/SVCS-1234 --> | ||
|
||
## Purpose | ||
|
||
<!-- Describe the purpose of your changes --> | ||
|
||
## Changes | ||
|
||
<!-- Describe or list your changes --> | ||
|
||
## Side effects | ||
|
||
<!-- Any possible side effects? --> | ||
|
||
## QA Notes | ||
|
||
<!-- Describe how QA should test this ticket/PR --> | ||
|
||
## Deployment Notes | ||
|
||
<!-- Any special configurations for deployment? --> |
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 |
---|---|---|
@@ -1,16 +1,33 @@ | ||
# Fake CAS | ||
# Run fakeCAS with OSF | ||
|
||
Download the binary from [here](https://github.com/CenterForOpenScience/fakecas/releases/latest) | ||
Please follow [README-docker-compose.md](https://github.com/CenterForOpenScience/osf.io/blob/develop/README-docker-compose.md) to run fakeCAS with OSF. | ||
|
||
```bash | ||
cd ~/Downloads # cd to where you downloaded the file to | ||
chmod +x fakecas # Make the server executable | ||
./fakecas # Run the server | ||
## Change the Image | ||
|
||
./fakecas -h # Print possible configuration options | ||
# Usage of ./fakecas: | ||
# -dbaddress="localhost:27017": The address of your mongodb. ie: localhost:27017 | ||
# -dbname="osf20130903": The name of your OSF database | ||
# -host="localhost:8080": The host to bind to | ||
# -osfhost="localhost:5000": The osf host to bind to | ||
By default, OSF uses the `master` image of fakeCAS, as shown below in [docker-compose.yml](https://github.com/CenterForOpenScience/osf.io/blob/develop/docker-compose.yml). | ||
|
||
```yml | ||
################################## | ||
# Central Authentication Service # | ||
################################## | ||
|
||
fakecas: | ||
image: quay.io/centerforopenscience/fakecas:master | ||
command: fakecas -host=0.0.0.0:8080 -osfhost=localhost:5000 -dbaddress=postgres://postgres@postgres:5432/osf?sslmode=disable | ||
restart: unless-stopped | ||
ports: | ||
- 8080:8080 | ||
depends_on: | ||
- postgres | ||
stdin_open: true | ||
``` | ||
If you need the `develop` one, use `quay.io/centerforopenscience/fakecas:develop` instead. Run `docker-compose pull fakecas` to pull the new image before starting `docker-compose pull fakecas`. | ||
|
||
## Pre-docker-compose | ||
|
||
Starting [19.0.0](https://github.com/CenterForOpenScience/fakecas/milestone/1), fakeCAS no longer provides downloadable binrary executables. Here is the last version [0.11.1](https://github.com/CenterForOpenScience/fakecas/releases/tag/0.11.1) that provides such a binary. | ||
|
||
# Develop fakeCAS | ||
|
||
Please take a look at the [Dockerfile](https://github.com/cslzchen/fakecas/blob/develop/Dockerfile) for how to develop fakeCAS locally. On macOS, use [`brew`](https://github.com/Homebrew/brew) to install [`go`](https://github.com/golang/go) and [`glide`](https://github.com/Masterminds/glide). |
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 |
---|---|---|
|
@@ -4,17 +4,18 @@ import ( | |
"database/sql" | ||
"flag" | ||
"fmt" | ||
"github.com/labstack/echo" | ||
"github.com/labstack/echo/middleware" | ||
_ "github.com/lib/pq" | ||
"html/template" | ||
"os" | ||
|
||
"github.com/labstack/echo" | ||
"github.com/labstack/echo/middleware" | ||
_ "github.com/lib/pq" | ||
) | ||
|
||
var Version string | ||
|
||
var ( | ||
Host = flag.String("host", "localhost:8080", "The host to bind to") | ||
Host = flag.String("host", "192.168.168.167:8080", "The host to bind to") | ||
OSFHost = flag.String("osfhost", "localhost:5000", "The osf host to bind to") | ||
DatabaseName = flag.String("dbname", "osf", "The name of your OSF database") | ||
DatabaseAddress = flag.String("dbaddress", "postgres://postgres@localhost:5432/osf?sslmode=disable", "The address of your postgres instance. ie: postgres://user:[email protected]/dbname?other=args") | ||
|
@@ -31,25 +32,26 @@ func main() { | |
})) | ||
e.Use(middleware.Recover()) | ||
|
||
e.Use(middleware.CORSWithConfig(middleware.CORSConfig{ | ||
e.Use(middleware.CORSWithConfig(middleware.CORSConfig{ | ||
AllowCredentials: true, | ||
AllowOrigins: []string{"*"}, | ||
AllowMethods: []string{"GET", "PUT", "POST", "DELETE"}, | ||
AllowHeaders: []string{"Range", "Content-Type", "Authorization", "X-Requested-With"}, | ||
ExposeHeaders: []string{"Range", "Content-Type", "Authorization", "X-Requested-With"}, | ||
AllowOrigins: []string{"*"}, | ||
AllowMethods: []string{"GET", "PUT", "POST", "DELETE"}, | ||
AllowHeaders: []string{"Range", "Content-Type", "Authorization", "X-Requested-With"}, | ||
ExposeHeaders: []string{"Range", "Content-Type", "Authorization", "X-Requested-With"}, | ||
})) | ||
|
||
t, err := template.New("login").Parse(LOGINPAGE) | ||
if err != nil { | ||
panic(err) | ||
} | ||
temp := &Template{templates: t} | ||
e.Renderer = temp | ||
e.Renderer = temp | ||
|
||
e.GET("/login", LoginGET) | ||
e.POST("/login", LoginPOST) | ||
e.GET("/logout", Logout) | ||
e.GET("/oauth2/profile", OAuth) | ||
e.POST("/oauth2/revoke", OAuthRevoke) | ||
e.GET("/p3/serviceValidate", ServiceValidate) | ||
|
||
fmt.Println("Expecting database", *DatabaseName, "to be running at", *DatabaseAddress) | ||
|
@@ -62,5 +64,5 @@ func main() { | |
|
||
defer DatabaseConnection.Close() | ||
|
||
e.Start(*Host) | ||
e.Start(*Host) | ||
} |
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
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