Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration Database URL doesn't support symbols well #112

Closed
pconstantinou opened this issue Jan 21, 2024 · 0 comments · Fixed by #113
Closed

Migration Database URL doesn't support symbols well #112

pconstantinou opened this issue Jan 21, 2024 · 0 comments · Fixed by #113

Comments

@pconstantinou
Copy link
Contributor

I got this somewhat mystifying error:

`unable to run migrations" error="parse "postgres://postgres:d+]pa>": invalid port ":d+]pa>" after host"

Turns out that in initializeDB() we re-construct the connection URL from scratch (instead of using the value passed in. So, even if the caller provides a password that is correctly encoded, the connection URL used to execute migrations is not. This is also a little problematic with sslMode if it's not specified in the initial URL.

Most importantly, this introduces a bug.

in the code that reconstructs the URL, each parameter should be URL encoded. Realistically, the password is the most important, in it's current form you can't have the # or : characters in passwords. This is a pain because AWS likes to generate passwords for the databases and you can't modify them.

	pqConnectionString := fmt.Sprintf("postgres://%s:%s@%s/%s?sslmode=%s&x-migrations-table=neoq_schema_migrations",
		pgxCfg.User,
		pgxCfg.Password,
		pgxCfg.Host,
		pgxCfg.Database,
		sslMode)

I recommend:

import "net/url"

	pqConnectionString := fmt.Sprintf("postgres://%s:%s@%s/%s?sslmode=%s&x-migrations-table=neoq_schema_migrations",
		pgxCfg.User,
		url.QueryEscape(pgxCfg.Password),
		pgxCfg.Host,
		pgxCfg.Database,
		sslMode)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant