2019-08-01 20:24:02 +00:00
|
|
|
// Copyright 2018 Vulcanize
|
|
|
|
//
|
|
|
|
// 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 repositories
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2019-08-02 13:52:14 +00:00
|
|
|
"github.com/jmoiron/sqlx"
|
2019-08-01 20:24:02 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
|
|
)
|
|
|
|
|
2019-08-02 13:52:14 +00:00
|
|
|
type AddressRepository struct{}
|
2019-08-01 20:24:02 +00:00
|
|
|
|
2019-08-02 13:52:14 +00:00
|
|
|
func (repo AddressRepository) GetOrCreateAddress(db *postgres.DB, address string) (int, error) {
|
2019-08-01 20:24:02 +00:00
|
|
|
stringAddressToCommonAddress := common.HexToAddress(address)
|
|
|
|
hexAddress := stringAddressToCommonAddress.Hex()
|
|
|
|
|
|
|
|
var addressId int
|
2019-08-01 20:44:13 +00:00
|
|
|
getErr := db.Get(&addressId, `SELECT id FROM public.addresses WHERE address = $1`, hexAddress)
|
2019-08-01 20:24:02 +00:00
|
|
|
if getErr == sql.ErrNoRows {
|
2019-08-01 20:44:13 +00:00
|
|
|
insertErr := db.QueryRow(`INSERT INTO public.addresses (address) VALUES($1) RETURNING id`, hexAddress).Scan(&addressId)
|
2019-08-01 20:24:02 +00:00
|
|
|
return addressId, insertErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return addressId, getErr
|
|
|
|
}
|
|
|
|
|
2019-08-02 13:52:14 +00:00
|
|
|
func (repo AddressRepository) GetOrCreateAddressInTransaction(tx *sqlx.Tx, address string) (int, error) {
|
|
|
|
stringAddressToCommonAddress := common.HexToAddress(address)
|
|
|
|
hexAddress := stringAddressToCommonAddress.Hex()
|
|
|
|
|
|
|
|
var addressId int
|
|
|
|
getErr := tx.Get(&addressId, `SELECT id FROM public.addresses WHERE address = $1`, hexAddress)
|
|
|
|
if getErr == sql.ErrNoRows {
|
|
|
|
insertErr := tx.QueryRow(`INSERT INTO public.addresses (address) VALUES($1) RETURNING id`, hexAddress).Scan(&addressId)
|
|
|
|
return addressId, insertErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return addressId, getErr
|
|
|
|
}
|