2023-03-28 23:55:57 +03:00
|
|
|
// Copyright (c) 2019-2023 Alexander Medvednikov. All rights reserved.
|
2020-07-10 19:09:08 +03:00
|
|
|
// Use of this source code is governed by an MIT license that can be found in the LICENSE file.
|
2021-03-13 09:43:12 +03:00
|
|
|
module main
|
|
|
|
|
2022-12-21 22:13:06 +03:00
|
|
|
import os
|
|
|
|
|
|
|
|
// Note: this program follows a similar convention to Rust: `init` makes the
|
2020-04-07 20:37:15 +03:00
|
|
|
// structure of the program in the _current_ directory, while `new`
|
2020-03-15 13:20:12 +03:00
|
|
|
// makes the program structure in a _sub_ directory. Besides that, the
|
|
|
|
// functionality is essentially the same.
|
2022-12-21 22:13:06 +03:00
|
|
|
|
|
|
|
// Note: here are the currently supported invokations so far:
|
|
|
|
// 1) `v init` -> create a new project in the current folder
|
|
|
|
// 2) `v new abc` -> create a new project in the new folder `abc`, by default a "hello world" project.
|
|
|
|
// 3) `v new abcd web` -> create a new project in the new folder `abcd`, using the vweb template.
|
2023-01-09 09:37:46 +03:00
|
|
|
// 4) `v new abcde hello_world` -> create a new project in the new folder `abcde`, using the hello_world template.
|
2022-12-21 22:13:06 +03:00
|
|
|
|
|
|
|
// Note: run `v cmd/tools/vcreate_test.v` after changes to this program, to avoid regressions.
|
2019-11-11 00:48:56 +03:00
|
|
|
|
|
|
|
struct Create {
|
|
|
|
mut:
|
2020-02-13 21:27:13 +03:00
|
|
|
name string
|
2019-11-11 00:48:56 +03:00
|
|
|
description string
|
2021-03-07 12:38:56 +03:00
|
|
|
version string
|
|
|
|
license string
|
2023-01-09 09:37:46 +03:00
|
|
|
files []ProjectFiles
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ProjectFiles {
|
|
|
|
path string
|
|
|
|
content string
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
cmd := os.args[1]
|
|
|
|
match cmd {
|
|
|
|
'new' {
|
|
|
|
// list of models allowed
|
|
|
|
project_models := ['web', 'hello_world']
|
|
|
|
if os.args.len == 4 {
|
|
|
|
// validation
|
|
|
|
if os.args.last() !in project_models {
|
|
|
|
mut error_str := 'It is not possible create a "${os.args[os.args.len - 2]}" project.\n'
|
|
|
|
error_str += 'See the list of allowed projects:\n'
|
|
|
|
for model in project_models {
|
|
|
|
error_str += 'v new ${os.args[os.args.len - 2]} ${model}\n'
|
|
|
|
}
|
|
|
|
eprintln(error_str)
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
new_project(os.args[2..])
|
|
|
|
}
|
|
|
|
'init' {
|
|
|
|
init_project()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cerror('unknown command: ${cmd}')
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
println('Complete!')
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_project(args []string) {
|
|
|
|
mut c := Create{}
|
|
|
|
|
|
|
|
c.name = check_name(if args.len > 0 { args[0] } else { os.input('Input your project name: ') })
|
|
|
|
|
|
|
|
if c.name == '' {
|
|
|
|
cerror('project name cannot be empty')
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.name.contains('-') {
|
|
|
|
cerror('"${c.name}" should not contain hyphens')
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
if os.is_dir(c.name) {
|
|
|
|
cerror('${c.name} folder already exists')
|
|
|
|
exit(3)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.description = if args.len > 1 { args[1] } else { os.input('Input your project description: ') }
|
|
|
|
|
|
|
|
default_version := '0.0.0'
|
|
|
|
c.version = os.input('Input your project version: (${default_version}) ')
|
|
|
|
if c.version == '' {
|
|
|
|
c.version = default_version
|
|
|
|
}
|
|
|
|
|
|
|
|
default_license := os.getenv_opt('VLICENSE') or { 'MIT' }
|
|
|
|
c.license = os.input('Input your project license: (${default_license}) ')
|
|
|
|
if c.license == '' {
|
|
|
|
c.license = default_license
|
|
|
|
}
|
|
|
|
|
|
|
|
println('Initialising ...')
|
2023-01-10 10:36:21 +03:00
|
|
|
// `v new abcde hello_world`
|
|
|
|
if args.len == 2 {
|
2023-01-09 09:37:46 +03:00
|
|
|
match os.args.last() {
|
|
|
|
'web' {
|
|
|
|
c.set_web_project_files()
|
|
|
|
}
|
|
|
|
'hello_world' {
|
|
|
|
c.set_hello_world_project_files()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
eprintln('${os.args.last()} model not exist')
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2023-01-10 10:36:21 +03:00
|
|
|
// `v new abc`
|
2023-01-09 09:37:46 +03:00
|
|
|
c.set_hello_world_project_files()
|
|
|
|
}
|
|
|
|
|
|
|
|
// gen project based in the `Create.files` info
|
|
|
|
c.create_files_and_directories()
|
|
|
|
|
|
|
|
c.write_vmod(true)
|
|
|
|
c.write_gitattributes(true)
|
|
|
|
c.write_editorconfig(true)
|
|
|
|
c.create_git_repo(c.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn init_project() {
|
|
|
|
mut c := Create{}
|
|
|
|
c.name = check_name(os.file_name(os.getwd()))
|
|
|
|
if !os.exists('v.mod') {
|
|
|
|
c.description = ''
|
|
|
|
c.write_vmod(false)
|
|
|
|
println('Change the description of your project in `v.mod`')
|
|
|
|
}
|
2023-02-20 13:54:38 +03:00
|
|
|
if !os.exists('src/main.v') {
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: 'src/main.v'
|
|
|
|
content: hello_world_content()
|
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
c.create_files_and_directories()
|
|
|
|
c.write_gitattributes(false)
|
|
|
|
c.write_editorconfig(false)
|
|
|
|
c.create_git_repo('.')
|
2019-11-11 00:48:56 +03:00
|
|
|
}
|
|
|
|
|
2020-07-10 19:09:08 +03:00
|
|
|
fn cerror(e string) {
|
2022-11-15 16:53:13 +03:00
|
|
|
eprintln('\nerror: ${e}')
|
2019-11-11 00:48:56 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 18:09:43 +03:00
|
|
|
fn check_name(name string) string {
|
2021-05-24 15:17:57 +03:00
|
|
|
if name.trim_space().len == 0 {
|
|
|
|
cerror('project name cannot be empty')
|
|
|
|
exit(1)
|
|
|
|
}
|
2021-03-13 09:43:12 +03:00
|
|
|
if name.is_title() {
|
|
|
|
mut cname := name.to_lower()
|
|
|
|
if cname.contains(' ') {
|
|
|
|
cname = cname.replace(' ', '_')
|
|
|
|
}
|
2022-11-15 16:53:13 +03:00
|
|
|
eprintln('warning: the project name cannot be capitalized, the name will be changed to `${cname}`')
|
2021-03-13 09:43:12 +03:00
|
|
|
return cname
|
|
|
|
}
|
2021-03-12 18:09:43 +03:00
|
|
|
if name.contains(' ') {
|
|
|
|
cname := name.replace(' ', '_')
|
2022-11-15 16:53:13 +03:00
|
|
|
eprintln('warning: the project name cannot contain spaces, the name will be changed to `${cname}`')
|
2021-03-12 18:09:43 +03:00
|
|
|
return cname
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
2021-03-07 12:38:56 +03:00
|
|
|
fn vmod_content(c Create) string {
|
2022-01-20 14:01:30 +03:00
|
|
|
return "Module {
|
2022-11-15 16:53:13 +03:00
|
|
|
name: '${c.name}'
|
|
|
|
description: '${c.description}'
|
|
|
|
version: '${c.version}'
|
|
|
|
license: '${c.license}'
|
2022-01-20 14:01:30 +03:00
|
|
|
dependencies: []
|
|
|
|
}
|
|
|
|
"
|
2019-11-11 00:48:56 +03:00
|
|
|
}
|
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
fn hello_world_content() string {
|
2022-01-20 14:01:30 +03:00
|
|
|
return "module main
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println('Hello World!')
|
|
|
|
}
|
|
|
|
"
|
2019-11-11 00:48:56 +03:00
|
|
|
}
|
|
|
|
|
2020-03-15 13:20:12 +03:00
|
|
|
fn gen_gitignore(name string) string {
|
2022-01-20 14:01:30 +03:00
|
|
|
return '# Binaries for programs and plugins
|
|
|
|
main
|
2022-11-15 16:53:13 +03:00
|
|
|
${name}
|
2022-01-20 14:01:30 +03:00
|
|
|
*.exe
|
|
|
|
*.exe~
|
|
|
|
*.so
|
|
|
|
*.dylib
|
|
|
|
*.dll
|
2022-11-02 21:41:12 +03:00
|
|
|
|
2022-11-20 15:43:33 +03:00
|
|
|
# Ignore binary output folders
|
|
|
|
bin/
|
|
|
|
|
2022-11-02 21:41:12 +03:00
|
|
|
# Ignore common editor/system specific metadata
|
|
|
|
.DS_Store
|
|
|
|
.idea/
|
|
|
|
.vscode/
|
|
|
|
*.iml
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
# ENV
|
|
|
|
.env
|
|
|
|
|
|
|
|
# vweb and database
|
|
|
|
*.db
|
|
|
|
*.js
|
2022-01-20 14:01:30 +03:00
|
|
|
'
|
2021-12-17 17:11:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn gitattributes_content() string {
|
2022-11-02 21:41:12 +03:00
|
|
|
return '* text=auto eol=lf
|
|
|
|
*.bat eol=crlf
|
|
|
|
|
|
|
|
**/*.v linguist-language=V
|
|
|
|
**/*.vv linguist-language=V
|
|
|
|
**/*.vsh linguist-language=V
|
|
|
|
**/v.mod linguist-language=V
|
2022-01-20 14:01:30 +03:00
|
|
|
'
|
|
|
|
}
|
|
|
|
|
|
|
|
fn editorconfig_content() string {
|
|
|
|
return '[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
|
|
|
|
[*.v]
|
|
|
|
indent_style = tab
|
|
|
|
'
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
|
|
|
|
2020-07-10 19:09:08 +03:00
|
|
|
fn (c &Create) write_vmod(new bool) {
|
2022-11-15 16:53:13 +03:00
|
|
|
vmod_path := if new { '${c.name}/v.mod' } else { 'v.mod' }
|
2021-12-17 17:11:19 +03:00
|
|
|
os.write_file(vmod_path, vmod_content(c)) or { panic(err) }
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
|
|
|
|
2021-12-17 17:11:19 +03:00
|
|
|
fn (c &Create) write_gitattributes(new bool) {
|
2022-11-15 16:53:13 +03:00
|
|
|
gitattributes_path := if new { '${c.name}/.gitattributes' } else { '.gitattributes' }
|
2022-01-20 14:01:30 +03:00
|
|
|
if !new && os.exists(gitattributes_path) {
|
|
|
|
return
|
|
|
|
}
|
2021-12-17 17:11:19 +03:00
|
|
|
os.write_file(gitattributes_path, gitattributes_content()) or { panic(err) }
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
|
|
|
|
2022-01-20 14:01:30 +03:00
|
|
|
fn (c &Create) write_editorconfig(new bool) {
|
2022-11-15 16:53:13 +03:00
|
|
|
editorconfig_path := if new { '${c.name}/.editorconfig' } else { '.editorconfig' }
|
2022-01-20 14:01:30 +03:00
|
|
|
if !new && os.exists(editorconfig_path) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
os.write_file(editorconfig_path, editorconfig_content()) or { panic(err) }
|
|
|
|
}
|
|
|
|
|
2020-07-10 19:09:08 +03:00
|
|
|
fn (c &Create) create_git_repo(dir string) {
|
2020-03-15 13:20:12 +03:00
|
|
|
// Create Git Repo and .gitignore file
|
2022-11-15 16:53:13 +03:00
|
|
|
if !os.is_dir('${dir}/.git') {
|
|
|
|
res := os.execute('git init ${dir}')
|
2021-03-08 21:52:13 +03:00
|
|
|
if res.exit_code != 0 {
|
2020-03-15 13:20:12 +03:00
|
|
|
cerror('Unable to create git repo')
|
2020-04-07 20:37:15 +03:00
|
|
|
exit(4)
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
2021-06-19 21:36:12 +03:00
|
|
|
}
|
2022-11-15 16:53:13 +03:00
|
|
|
gitignore_path := '${dir}/.gitignore'
|
2021-12-17 17:11:19 +03:00
|
|
|
if !os.exists(gitignore_path) {
|
|
|
|
os.write_file(gitignore_path, gen_gitignore(c.name)) or {}
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
fn (mut c Create) create_files_and_directories() {
|
|
|
|
for file in c.files {
|
|
|
|
// get dir and convert path separator
|
|
|
|
dir := file.path.split('/')#[..-1].join(os.path_separator)
|
|
|
|
// create all directories, if not exist
|
|
|
|
os.mkdir_all(dir) or { panic(err) }
|
|
|
|
os.write_file(file.path, file.content) or { panic(err) }
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ####################################### PROJECTS CONTENT AND PATH #######################################
|
|
|
|
|
|
|
|
fn (mut c Create) set_hello_world_project_files() {
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/main.v'
|
|
|
|
content: hello_world_content()
|
2020-07-10 19:09:08 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut c Create) set_web_project_files() {
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/databases/config_databases_sqlite.v'
|
|
|
|
content: "module databases
|
|
|
|
|
2023-01-19 10:37:55 +03:00
|
|
|
import db.sqlite // can change to 'db.mysql', 'db.pg'
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
pub fn create_db_connection() !sqlite.DB {
|
2023-01-19 10:45:07 +03:00
|
|
|
mut db := sqlite.connect('app.db')!
|
2023-01-09 09:37:46 +03:00
|
|
|
return db
|
|
|
|
}
|
|
|
|
"
|
2020-07-10 19:09:08 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/templates/header_component.html'
|
|
|
|
content: "<nav>
|
|
|
|
<div class='nav-wrapper'>
|
|
|
|
<a href='javascript:window.history.back();' class='left'>
|
|
|
|
<i class='material-icons'>arrow_back_ios_new</i>
|
|
|
|
</a>
|
|
|
|
<a href='/'>
|
|
|
|
<img src='src/assets/veasel.png' alt='logo' style='max-height: 100%' />
|
|
|
|
</a>
|
|
|
|
<ul id='nav-mobile' class='right'>
|
|
|
|
<li><a href='https://github.com/vlang/v'>github</a></li>
|
|
|
|
<li><a href='https://vlang.io/'>website</a></li>
|
|
|
|
<li><a href='https://github.com/sponsors/medvednikov'>support</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
"
|
2020-02-13 21:27:13 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/templates/products.css'
|
|
|
|
content: 'h1.title {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
color: #3b7bbf;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.products-table {
|
2023-04-23 03:43:40 +03:00
|
|
|
border: 1px solid;
|
2023-01-09 09:37:46 +03:00
|
|
|
max-width: 720px;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
|
|
|
}'
|
2021-03-07 12:38:56 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/templates/products.html'
|
|
|
|
content: "<!DOCTYPE html>
|
|
|
|
<head>
|
|
|
|
<!--Let browser know website is optimized for mobile-->
|
|
|
|
<meta charset='UTF-8' name='viewport' content='width=device-width, initial-scale=1.0'>
|
2023-04-23 03:43:40 +03:00
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
<!-- Compiled and minified CSS -->
|
|
|
|
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css'>
|
|
|
|
|
|
|
|
<!-- Compiled and minified JavaScript -->
|
|
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js'></script>
|
2023-04-23 03:43:40 +03:00
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
<!-- Material UI icons -->
|
|
|
|
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>
|
|
|
|
|
|
|
|
<title>Login</title>
|
|
|
|
@css 'src/templates/products.css'
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>@include 'header_component.html'</div>
|
|
|
|
<h1 class='title'>Hi, \${user.username}! you are online</h1>
|
|
|
|
<!-- <button onclick='document.location.reload(true)'>Lala</button> -->
|
|
|
|
<form id='product_form' method='post' action=''>
|
|
|
|
<div class='row'>
|
|
|
|
<div class='input-field col s2'>
|
|
|
|
<input id='product_name' name='product_name' type='text' class='validate'>
|
|
|
|
<label class='active' for='product_name'>product name</label>
|
|
|
|
</div>
|
|
|
|
<div style='margin-top: 10px;'>
|
|
|
|
<input class='waves-effect waves-light btn-small' type='submit' onclick='addProduct()' formaction='javascript:void(0);' value='Register' required autofocus>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- <div style='width: 20; height: 300;'>
|
|
|
|
<input type='text' name='product_name' placeholder='product name' required autofocus>
|
|
|
|
</div> -->
|
|
|
|
</form>
|
|
|
|
<script type='text/javascript'>
|
|
|
|
function getCookie(cookieName) {
|
|
|
|
let cookie = {};
|
|
|
|
document.cookie.split(';').forEach(function(el) {
|
|
|
|
let [key,value] = el.split('=');
|
|
|
|
cookie[key.trim()] = value;
|
|
|
|
})
|
|
|
|
return cookie[cookieName];
|
|
|
|
}
|
|
|
|
async function addProduct() {
|
|
|
|
const form = document.querySelector('#product_form');
|
|
|
|
const formData = new FormData(form);
|
|
|
|
console.log(getCookie('token'));
|
|
|
|
await fetch('/controller/product/create', {
|
|
|
|
method: 'POST',
|
|
|
|
body: formData,
|
|
|
|
headers :{
|
|
|
|
token: getCookie('token')
|
|
|
|
}
|
2023-04-23 03:43:40 +03:00
|
|
|
})
|
2023-01-09 09:37:46 +03:00
|
|
|
.then( async (response) => {
|
|
|
|
if (response.status != 201) {
|
|
|
|
throw await response.text()
|
|
|
|
}
|
|
|
|
return await response.text()
|
|
|
|
})
|
|
|
|
.then((data) => {
|
|
|
|
// alert('User created successfully')
|
|
|
|
document.location.reload(true)
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
alert(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<div class='products-table card-panel'>
|
|
|
|
<table class='highlight striped responsive-table'>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Created date</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
@for product in user.products
|
|
|
|
<tr>
|
|
|
|
<td>\${product.id}</td>
|
|
|
|
<td>\${product.name}</td>
|
|
|
|
<td>\${product.created_at}</td>
|
|
|
|
</tr>
|
|
|
|
@end
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>"
|
2021-03-07 12:38:56 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/auth_controllers.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
|
|
|
|
['/controller/auth'; post]
|
|
|
|
pub fn (mut app App) controller_auth(username string, password string) vweb.Result {
|
|
|
|
response := app.service_auth(username, password) or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('error: \${err}')
|
|
|
|
}
|
|
|
|
|
|
|
|
return app.json(response)
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/auth_dto.v'
|
|
|
|
content: 'module main
|
2020-03-15 13:20:12 +03:00
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
struct AuthRequestDto {
|
2023-04-23 03:43:40 +03:00
|
|
|
username string [nonull]
|
|
|
|
password string [nonull]
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
'
|
2022-01-20 14:01:30 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/auth_services.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import crypto.hmac
|
|
|
|
import crypto.sha256
|
|
|
|
import crypto.bcrypt
|
|
|
|
import encoding.base64
|
|
|
|
import json
|
|
|
|
import databases
|
|
|
|
import time
|
|
|
|
|
|
|
|
struct JwtHeader {
|
|
|
|
alg string
|
|
|
|
typ string
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
struct JwtPayload {
|
|
|
|
sub string // (subject) = Entity to whom the token belongs, usually the user ID;
|
|
|
|
iss string // (issuer) = Token issuer;
|
|
|
|
exp string // (expiration) = Timestamp of when the token will expire;
|
|
|
|
iat time.Time // (issued at) = Timestamp of when the token was created;
|
|
|
|
aud string // (audience) = Token recipient, represents the application that will use it.
|
|
|
|
name string
|
|
|
|
roles string
|
|
|
|
permissions string
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut app App) service_auth(username string, password string) !string {
|
|
|
|
mut db := databases.create_db_connection() or {
|
|
|
|
eprintln(err)
|
|
|
|
panic(err)
|
2020-03-15 13:20:12 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
defer {
|
2023-01-19 10:45:07 +03:00
|
|
|
db.close() or { panic(err) }
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
|
2023-04-23 03:43:40 +03:00
|
|
|
users := sql db {
|
|
|
|
select from User where username == username
|
|
|
|
}!
|
2023-07-14 16:19:25 +03:00
|
|
|
if users.len == 0 {
|
2023-01-09 09:37:46 +03:00
|
|
|
return error('user not found')
|
|
|
|
}
|
2023-07-14 16:19:25 +03:00
|
|
|
user := users.first()
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
if !user.active {
|
|
|
|
return error('user is not active')
|
|
|
|
}
|
|
|
|
|
|
|
|
bcrypt.compare_hash_and_password(password.bytes(), user.password.bytes()) or {
|
|
|
|
return error('Failed to auth user, \${err}')
|
|
|
|
}
|
|
|
|
|
|
|
|
token := make_token(user)
|
|
|
|
return token
|
2019-11-11 00:48:56 +03:00
|
|
|
}
|
2022-12-21 19:33:19 +03:00
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
fn make_token(user User) string {
|
|
|
|
secret := 'SECRET_KEY' // os.getenv('SECRET_KEY')
|
|
|
|
|
|
|
|
jwt_header := JwtHeader{'HS256', 'JWT'}
|
|
|
|
jwt_payload := JwtPayload{
|
|
|
|
sub: '\${user.id}'
|
|
|
|
name: '\${user.username}'
|
|
|
|
iat: time.now()
|
|
|
|
}
|
|
|
|
|
|
|
|
header := base64.url_encode(json.encode(jwt_header).bytes())
|
|
|
|
payload := base64.url_encode(json.encode(jwt_payload).bytes())
|
|
|
|
signature := base64.url_encode(hmac.new(secret.bytes(), '\${header}.\${payload}'.bytes(),
|
|
|
|
sha256.sum, sha256.block_size).bytestr().bytes())
|
|
|
|
|
|
|
|
jwt := '\${header}.\${payload}.\${signature}'
|
|
|
|
|
|
|
|
return jwt
|
|
|
|
}
|
|
|
|
|
|
|
|
fn auth_verify(token string) bool {
|
|
|
|
if token == '' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
secret := 'SECRET_KEY' // os.getenv('SECRET_KEY')
|
|
|
|
token_split := token.split('.')
|
|
|
|
|
|
|
|
signature_mirror := hmac.new(secret.bytes(), '\${token_split[0]}.\${token_split[1]}'.bytes(),
|
|
|
|
sha256.sum, sha256.block_size).bytestr().bytes()
|
|
|
|
|
|
|
|
signature_from_token := base64.url_decode(token_split[2])
|
|
|
|
|
|
|
|
return hmac.equal(signature_from_token, signature_mirror)
|
|
|
|
// return true
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/index.html'
|
|
|
|
content: "<!DOCTYPE html>
|
|
|
|
<head>
|
|
|
|
<!--Let browser know website is optimized for mobile-->
|
|
|
|
<meta charset='UTF-8' name='viewport' content='width=device-width, initial-scale=1.0'>
|
|
|
|
<!-- Compiled and minified CSS -->
|
|
|
|
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css'>
|
|
|
|
<!-- Compiled and minified JavaScript -->
|
|
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js'></script>
|
|
|
|
<!-- Material UI icons -->
|
|
|
|
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>
|
|
|
|
<title>\${title}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>@include 'templates/header_component.html'</div>
|
|
|
|
<div class='card-panel center-align' style='max-width: 240px; padding: 10px; margin: 10px; border-radius: 5px;'>
|
|
|
|
<form id='index_form' method='post' action=''>
|
|
|
|
<div style='display:flex; flex-direction: column;'>
|
|
|
|
<input type='text' name='username' placeholder='Username' required autofocus>
|
|
|
|
<input type='password' name='password' placeholder='Password' required>
|
|
|
|
</div>
|
|
|
|
<div style='margin-top: 10px;'>
|
|
|
|
<input class='waves-effect waves-light btn-small' type='submit' onclick='login()' formaction='javascript:void(0);' value='Login'>
|
|
|
|
<input class='waves-effect waves-light btn-small' type='submit' onclick='addUser()' formaction='javascript:void(0);' value='Register'>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<script type='text/javascript'>
|
2023-04-23 03:43:40 +03:00
|
|
|
// function eraseCookie(name) {
|
|
|
|
// document.cookie = name + '=; Max-Age=0'
|
|
|
|
// }
|
2023-01-09 09:37:46 +03:00
|
|
|
async function addUser() {
|
|
|
|
const form = document.querySelector('#index_form');
|
|
|
|
const formData = new FormData(form);
|
|
|
|
await fetch('/controller/user/create', {
|
|
|
|
method: 'POST',
|
|
|
|
body: formData
|
2023-04-23 03:43:40 +03:00
|
|
|
})
|
2023-01-09 09:37:46 +03:00
|
|
|
.then( async (response) => {
|
|
|
|
if (response.status != 201) {
|
|
|
|
throw await response.text()
|
|
|
|
}
|
|
|
|
return await response.text()
|
|
|
|
})
|
|
|
|
.then((data) => {
|
|
|
|
alert('User created successfully')
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
alert(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
async function login() {
|
|
|
|
const form = document.querySelector('#index_form');
|
|
|
|
const formData = new FormData(form);
|
|
|
|
await fetch('/controller/auth', {
|
|
|
|
method: 'POST',
|
|
|
|
body: formData
|
2023-04-23 03:43:40 +03:00
|
|
|
})
|
2023-01-09 09:37:46 +03:00
|
|
|
.then( async (response) => {
|
|
|
|
if (response.status != 200) {
|
|
|
|
throw await response.text()
|
|
|
|
}
|
|
|
|
return response.json()
|
|
|
|
})
|
|
|
|
.then((data) => {
|
|
|
|
document.cookie = 'token='+data+';';
|
|
|
|
window.location.href = '/products'
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
alert(error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/main.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
import databases
|
|
|
|
import os
|
2022-12-21 19:33:19 +03:00
|
|
|
|
|
|
|
const (
|
|
|
|
port = 8082
|
|
|
|
)
|
|
|
|
|
|
|
|
struct App {
|
|
|
|
vweb.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app App) before_request() {
|
|
|
|
println('[web] before_request: \${app.req.method} \${app.req.url}')
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2023-01-09 09:37:46 +03:00
|
|
|
mut db := databases.create_db_connection() or { panic(err) }
|
|
|
|
|
|
|
|
sql db {
|
|
|
|
create table User
|
2023-04-23 03:43:40 +03:00
|
|
|
create table Product
|
2023-01-09 09:37:46 +03:00
|
|
|
} or { panic('error on create table: \${err}') }
|
|
|
|
|
|
|
|
db.close() or { panic(err) }
|
|
|
|
|
|
|
|
mut app := &App{}
|
|
|
|
app.serve_static('/favicon.ico', 'src/assets/favicon.ico')
|
|
|
|
// makes all static files available.
|
|
|
|
app.mount_static_folder_at(os.resource_abs_path('.'), '/')
|
|
|
|
|
|
|
|
vweb.run(app, port)
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
pub fn (mut app App) index() vweb.Result {
|
|
|
|
title := 'vweb app'
|
|
|
|
|
2022-12-21 19:33:19 +03:00
|
|
|
return \$vweb.html()
|
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/product_controller.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
import encoding.base64
|
|
|
|
import json
|
|
|
|
|
|
|
|
['/controller/products'; get]
|
|
|
|
pub fn (mut app App) controller_get_all_products() vweb.Result {
|
|
|
|
token := app.req.header.get_custom('token') or { '' }
|
|
|
|
|
|
|
|
if !auth_verify(token) {
|
|
|
|
app.set_status(401, '')
|
|
|
|
return app.text('Not valid token')
|
|
|
|
}
|
|
|
|
|
|
|
|
jwt_payload_stringify := base64.url_decode_str(token.split('.')[1])
|
|
|
|
|
|
|
|
jwt_payload := json.decode(JwtPayload, jwt_payload_stringify) or {
|
|
|
|
app.set_status(501, '')
|
|
|
|
return app.text('jwt decode error')
|
|
|
|
}
|
|
|
|
|
|
|
|
user_id := jwt_payload.sub
|
|
|
|
|
|
|
|
response := app.service_get_all_products_from(user_id.int()) or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('\${err}')
|
|
|
|
}
|
|
|
|
return app.json(response)
|
|
|
|
// return app.text('response')
|
|
|
|
}
|
|
|
|
|
|
|
|
['/controller/product/create'; post]
|
|
|
|
pub fn (mut app App) controller_create_product(product_name string) vweb.Result {
|
|
|
|
if product_name == '' {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('product name cannot be empty')
|
|
|
|
}
|
|
|
|
|
|
|
|
token := app.req.header.get_custom('token') or { '' }
|
|
|
|
|
|
|
|
if !auth_verify(token) {
|
|
|
|
app.set_status(401, '')
|
|
|
|
return app.text('Not valid token')
|
|
|
|
}
|
|
|
|
|
|
|
|
jwt_payload_stringify := base64.url_decode_str(token.split('.')[1])
|
|
|
|
|
|
|
|
jwt_payload := json.decode(JwtPayload, jwt_payload_stringify) or {
|
|
|
|
app.set_status(501, '')
|
|
|
|
return app.text('jwt decode error')
|
|
|
|
}
|
|
|
|
|
|
|
|
user_id := jwt_payload.sub
|
2022-12-21 19:33:19 +03:00
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
app.service_add_product(product_name, user_id.int()) or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('error: \${err}')
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
app.set_status(201, '')
|
|
|
|
return app.text('product created successfully')
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/product_entities.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
[table: 'products']
|
|
|
|
struct Product {
|
|
|
|
id int [primary; sql: serial]
|
|
|
|
user_id int
|
2023-04-23 03:43:40 +03:00
|
|
|
name string [nonull; sql_type: 'TEXT']
|
2023-01-09 09:37:46 +03:00
|
|
|
created_at string [default: 'CURRENT_TIMESTAMP']
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/product_service.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import databases
|
|
|
|
|
|
|
|
fn (mut app App) service_add_product(product_name string, user_id int) ! {
|
|
|
|
mut db := databases.create_db_connection()!
|
|
|
|
|
|
|
|
defer {
|
|
|
|
db.close() or { panic(err) }
|
|
|
|
}
|
|
|
|
|
|
|
|
product_model := Product{
|
|
|
|
name: product_name
|
|
|
|
user_id: user_id
|
|
|
|
}
|
|
|
|
|
|
|
|
mut insert_error := ''
|
|
|
|
|
|
|
|
sql db {
|
|
|
|
insert product_model into Product
|
|
|
|
} or { insert_error = err.msg() }
|
|
|
|
|
|
|
|
if insert_error != '' {
|
|
|
|
return error(insert_error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 03:43:40 +03:00
|
|
|
fn (mut app App) service_get_all_products_from(user_id int) ![]Product {
|
2023-01-09 09:37:46 +03:00
|
|
|
mut db := databases.create_db_connection() or {
|
|
|
|
println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer {
|
|
|
|
db.close() or { panic(err) }
|
|
|
|
}
|
|
|
|
|
|
|
|
results := sql db {
|
|
|
|
select from Product where user_id == user_id
|
2023-04-23 03:43:40 +03:00
|
|
|
}!
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/product_view_api.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import json
|
|
|
|
import net.http
|
|
|
|
|
|
|
|
pub fn get_products(token string) ![]Product {
|
|
|
|
mut header := http.new_header()
|
|
|
|
header.add_custom('token', token)!
|
|
|
|
url := 'http://localhost:8082/controller/products'
|
|
|
|
|
|
|
|
mut config := http.FetchConfig{
|
|
|
|
header: header
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := http.fetch(http.FetchConfig{ ...config, url: url })!
|
|
|
|
products := json.decode([]Product, resp.body)!
|
|
|
|
|
|
|
|
return products
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_product(token string) ![]User {
|
|
|
|
mut header := http.new_header()
|
|
|
|
header.add_custom('token', token)!
|
|
|
|
|
|
|
|
url := 'http://localhost:8082/controller/product'
|
|
|
|
|
|
|
|
mut config := http.FetchConfig{
|
|
|
|
header: header
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := http.fetch(http.FetchConfig{ ...config, url: url })!
|
|
|
|
products := json.decode([]User, resp.body)!
|
|
|
|
|
|
|
|
return products
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/product_view.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
|
|
|
|
['/products'; get]
|
|
|
|
pub fn (mut app App) products() !vweb.Result {
|
|
|
|
token := app.get_cookie('token') or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('\${err}')
|
|
|
|
}
|
|
|
|
|
|
|
|
user := get_user(token) or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('Failed to fetch data from the server. Error: \${err}')
|
|
|
|
}
|
2022-12-21 19:33:19 +03:00
|
|
|
|
|
|
|
return \$vweb.html()
|
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/user_controllers.v'
|
|
|
|
content: "module main
|
2022-12-21 19:33:19 +03:00
|
|
|
|
2023-01-09 09:37:46 +03:00
|
|
|
import vweb
|
|
|
|
import encoding.base64
|
|
|
|
import json
|
|
|
|
|
|
|
|
['/controller/users'; get]
|
|
|
|
pub fn (mut app App) controller_get_all_user() vweb.Result {
|
2023-04-23 03:43:40 +03:00
|
|
|
// token := app.get_cookie('token') or { '' }
|
2023-01-09 09:37:46 +03:00
|
|
|
token := app.req.header.get_custom('token') or { '' }
|
|
|
|
|
|
|
|
if !auth_verify(token) {
|
|
|
|
app.set_status(401, '')
|
|
|
|
return app.text('Not valid token')
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
response := app.service_get_all_user() or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('\${err}')
|
|
|
|
}
|
|
|
|
return app.json(response)
|
|
|
|
}
|
|
|
|
|
|
|
|
['/controller/user'; get]
|
|
|
|
pub fn (mut app App) controller_get_user() vweb.Result {
|
2023-04-23 03:43:40 +03:00
|
|
|
// token := app.get_cookie('token') or { '' }
|
2023-01-09 09:37:46 +03:00
|
|
|
token := app.req.header.get_custom('token') or { '' }
|
|
|
|
|
|
|
|
if !auth_verify(token) {
|
|
|
|
app.set_status(401, '')
|
|
|
|
return app.text('Not valid token')
|
|
|
|
}
|
|
|
|
|
|
|
|
jwt_payload_stringify := base64.url_decode_str(token.split('.')[1])
|
|
|
|
|
|
|
|
jwt_payload := json.decode(JwtPayload, jwt_payload_stringify) or {
|
|
|
|
app.set_status(501, '')
|
|
|
|
return app.text('jwt decode error')
|
|
|
|
}
|
|
|
|
|
|
|
|
user_id := jwt_payload.sub
|
|
|
|
|
|
|
|
response := app.service_get_user(user_id.int()) or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('\${err}')
|
|
|
|
}
|
|
|
|
return app.json(response)
|
|
|
|
}
|
|
|
|
|
|
|
|
['/controller/user/create'; post]
|
|
|
|
pub fn (mut app App) controller_create_user(username string, password string) vweb.Result {
|
|
|
|
if username == '' {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('username cannot be empty')
|
|
|
|
}
|
|
|
|
if password == '' {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('password cannot be empty')
|
|
|
|
}
|
|
|
|
app.service_add_user(username, password) or {
|
|
|
|
app.set_status(400, '')
|
|
|
|
return app.text('error: \${err}')
|
|
|
|
}
|
|
|
|
app.set_status(201, '')
|
|
|
|
return app.text('User created successfully')
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|
|
|
|
"
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/user_entities.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
[table: 'users']
|
|
|
|
pub struct User {
|
|
|
|
mut:
|
|
|
|
id int [primary; sql: serial]
|
2023-04-23 03:43:40 +03:00
|
|
|
username string [nonull; sql_type: 'TEXT'; unique]
|
|
|
|
password string [nonull; sql_type: 'TEXT']
|
2023-01-09 09:37:46 +03:00
|
|
|
active bool
|
|
|
|
products []Product [fkey: 'user_id']
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/user_services.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import crypto.bcrypt
|
|
|
|
import databases
|
|
|
|
|
|
|
|
fn (mut app App) service_add_user(username string, password string) ! {
|
|
|
|
mut db := databases.create_db_connection()!
|
|
|
|
|
|
|
|
defer {
|
|
|
|
db.close() or { panic(err) }
|
|
|
|
}
|
|
|
|
|
|
|
|
hashed_password := bcrypt.generate_from_password(password.bytes(), bcrypt.min_cost) or {
|
|
|
|
eprintln(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
user_model := User{
|
|
|
|
username: username
|
|
|
|
password: hashed_password
|
|
|
|
active: true
|
|
|
|
}
|
|
|
|
|
|
|
|
mut insert_error := ''
|
|
|
|
sql db {
|
|
|
|
insert user_model into User
|
|
|
|
} or { insert_error = err.msg() }
|
|
|
|
if insert_error != '' {
|
|
|
|
return error(insert_error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 03:43:40 +03:00
|
|
|
fn (mut app App) service_get_all_user() ![]User {
|
2023-01-09 09:37:46 +03:00
|
|
|
mut db := databases.create_db_connection() or {
|
|
|
|
println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer {
|
|
|
|
db.close() or { panic(err) }
|
|
|
|
}
|
|
|
|
|
|
|
|
results := sql db {
|
|
|
|
select from User
|
2023-04-23 03:43:40 +03:00
|
|
|
}!
|
2023-01-09 09:37:46 +03:00
|
|
|
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
2023-04-23 03:43:40 +03:00
|
|
|
fn (mut app App) service_get_user(id int) !User {
|
2023-01-09 09:37:46 +03:00
|
|
|
mut db := databases.create_db_connection() or {
|
|
|
|
println(err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer {
|
|
|
|
db.close() or { panic(err) }
|
|
|
|
}
|
|
|
|
results := sql db {
|
|
|
|
select from User where id == id
|
2023-04-23 03:43:40 +03:00
|
|
|
}!
|
2023-07-14 16:19:25 +03:00
|
|
|
if results.len == 0 {
|
|
|
|
return error('no results')
|
|
|
|
}
|
|
|
|
return results[0]
|
2023-01-09 09:37:46 +03:00
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
|
|
|
c.files << ProjectFiles{
|
|
|
|
path: '${c.name}/src/user_view_api.v'
|
|
|
|
content: "module main
|
|
|
|
|
|
|
|
import json
|
|
|
|
import net.http
|
|
|
|
|
|
|
|
pub fn get_users(token string) ![]User {
|
|
|
|
mut header := http.new_header()
|
|
|
|
header.add_custom('token', token)!
|
|
|
|
|
|
|
|
url := 'http://localhost:8082/controller/users'
|
|
|
|
|
|
|
|
mut config := http.FetchConfig{
|
|
|
|
header: header
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := http.fetch(http.FetchConfig{ ...config, url: url })!
|
|
|
|
users := json.decode([]User, resp.body)!
|
|
|
|
|
|
|
|
return users
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_user(token string) !User {
|
|
|
|
mut header := http.new_header()
|
|
|
|
header.add_custom('token', token)!
|
|
|
|
|
|
|
|
url := 'http://localhost:8082/controller/user'
|
|
|
|
|
|
|
|
mut config := http.FetchConfig{
|
|
|
|
header: header
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := http.fetch(http.FetchConfig{ ...config, url: url })!
|
|
|
|
users := json.decode(User, resp.body)!
|
|
|
|
|
|
|
|
return users
|
|
|
|
}
|
|
|
|
"
|
|
|
|
}
|
2022-12-21 19:33:19 +03:00
|
|
|
}
|