How to access database (loader)
up vote
0
down vote
favorite
I am using this API template: https://github.com/w3tecch/express-typescript-boilerplate
I have written a loader for Knex because I don't want to use the default TypeORM included in the Git repository.
import {MicroframeworkLoader, MicroframeworkSettings} from 'microframework-w3tec';
import * as Knex from 'knex';
import {env} from '../env';
export const knexLoader: MicroframeworkLoader = async (settings: MicroframeworkSettings | undefined) => {
const connection = await Knex({
client: 'mysql',
connection: {
host: env.db.host,
user: env.db.username,
password: env.db.password,
database: env.db.database,
},
});
if (settings) {
settings.setData('connection', connection);
settings.onShutdown(() => connection.close());
}
};
How do I access the constant 'connection' in a random class used by a controller?
For example, how do I access it here?
import { sha256 } from 'js-sha256';
export class Login {
private database;
public checkLogin(email: string, password: string, company_id: number): boolean {
let login = this.database.connection('users').where({
email,
company_id,
}).select('id, password, salt').then((row) => {
let hashed_password = this.hashPassword(password, login.salt);
if (hashed_password === login.password) {
return true;
}
return false;
});
return false;
}
private hashPassword(password: string, salt: string): string {
let half: number = (salt.length / 2);
return sha256(salt.substr(0, half) + password + salt.substr(half));
}
private generateSalt(): string {
let random_number: string = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
let salt_unminimized: string = sha256(random_number);
return salt_unminimized.substr(0, 100);
}
}
node.js typescript
add a comment |
up vote
0
down vote
favorite
I am using this API template: https://github.com/w3tecch/express-typescript-boilerplate
I have written a loader for Knex because I don't want to use the default TypeORM included in the Git repository.
import {MicroframeworkLoader, MicroframeworkSettings} from 'microframework-w3tec';
import * as Knex from 'knex';
import {env} from '../env';
export const knexLoader: MicroframeworkLoader = async (settings: MicroframeworkSettings | undefined) => {
const connection = await Knex({
client: 'mysql',
connection: {
host: env.db.host,
user: env.db.username,
password: env.db.password,
database: env.db.database,
},
});
if (settings) {
settings.setData('connection', connection);
settings.onShutdown(() => connection.close());
}
};
How do I access the constant 'connection' in a random class used by a controller?
For example, how do I access it here?
import { sha256 } from 'js-sha256';
export class Login {
private database;
public checkLogin(email: string, password: string, company_id: number): boolean {
let login = this.database.connection('users').where({
email,
company_id,
}).select('id, password, salt').then((row) => {
let hashed_password = this.hashPassword(password, login.salt);
if (hashed_password === login.password) {
return true;
}
return false;
});
return false;
}
private hashPassword(password: string, salt: string): string {
let half: number = (salt.length / 2);
return sha256(salt.substr(0, half) + password + salt.substr(half));
}
private generateSalt(): string {
let random_number: string = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
let salt_unminimized: string = sha256(random_number);
return salt_unminimized.substr(0, 100);
}
}
node.js typescript
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using this API template: https://github.com/w3tecch/express-typescript-boilerplate
I have written a loader for Knex because I don't want to use the default TypeORM included in the Git repository.
import {MicroframeworkLoader, MicroframeworkSettings} from 'microframework-w3tec';
import * as Knex from 'knex';
import {env} from '../env';
export const knexLoader: MicroframeworkLoader = async (settings: MicroframeworkSettings | undefined) => {
const connection = await Knex({
client: 'mysql',
connection: {
host: env.db.host,
user: env.db.username,
password: env.db.password,
database: env.db.database,
},
});
if (settings) {
settings.setData('connection', connection);
settings.onShutdown(() => connection.close());
}
};
How do I access the constant 'connection' in a random class used by a controller?
For example, how do I access it here?
import { sha256 } from 'js-sha256';
export class Login {
private database;
public checkLogin(email: string, password: string, company_id: number): boolean {
let login = this.database.connection('users').where({
email,
company_id,
}).select('id, password, salt').then((row) => {
let hashed_password = this.hashPassword(password, login.salt);
if (hashed_password === login.password) {
return true;
}
return false;
});
return false;
}
private hashPassword(password: string, salt: string): string {
let half: number = (salt.length / 2);
return sha256(salt.substr(0, half) + password + salt.substr(half));
}
private generateSalt(): string {
let random_number: string = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
let salt_unminimized: string = sha256(random_number);
return salt_unminimized.substr(0, 100);
}
}
node.js typescript
I am using this API template: https://github.com/w3tecch/express-typescript-boilerplate
I have written a loader for Knex because I don't want to use the default TypeORM included in the Git repository.
import {MicroframeworkLoader, MicroframeworkSettings} from 'microframework-w3tec';
import * as Knex from 'knex';
import {env} from '../env';
export const knexLoader: MicroframeworkLoader = async (settings: MicroframeworkSettings | undefined) => {
const connection = await Knex({
client: 'mysql',
connection: {
host: env.db.host,
user: env.db.username,
password: env.db.password,
database: env.db.database,
},
});
if (settings) {
settings.setData('connection', connection);
settings.onShutdown(() => connection.close());
}
};
How do I access the constant 'connection' in a random class used by a controller?
For example, how do I access it here?
import { sha256 } from 'js-sha256';
export class Login {
private database;
public checkLogin(email: string, password: string, company_id: number): boolean {
let login = this.database.connection('users').where({
email,
company_id,
}).select('id, password, salt').then((row) => {
let hashed_password = this.hashPassword(password, login.salt);
if (hashed_password === login.password) {
return true;
}
return false;
});
return false;
}
private hashPassword(password: string, salt: string): string {
let half: number = (salt.length / 2);
return sha256(salt.substr(0, half) + password + salt.substr(half));
}
private generateSalt(): string {
let random_number: string = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
let salt_unminimized: string = sha256(random_number);
return salt_unminimized.substr(0, 100);
}
}
node.js typescript
node.js typescript
asked Nov 22 at 10:58
user1857116
106111
106111
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429436%2fhow-to-access-database-loader%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown