Compare commits

...

31 Commits
v0.2.2 ... main

Author SHA1 Message Date
8c1c43e4df Fixed the cookie/filter thing
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-05-25 11:47:57 -04:00
94c1c26e94 Added code to retain filter status when re-visiting the dashboard
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-05-25 11:36:12 -04:00
Gregory Ballantine
2c0520ff4b Version bump to v0.3.0
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2024-05-24 13:10:16 -04:00
Gregory Ballantine
8122bfa08f [Issue #9] - Updated z-index of nav bar to display over content
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-05-24 13:08:43 -04:00
Gregory Ballantine
09c464ccbb Fixed typo in search limiter
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-05-24 12:52:58 -04:00
Gregory Ballantine
43f0800f91 Passed filters back to home view
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-24 12:49:04 -04:00
Gregory Ballantine
c652e089d5 Fixed search limiter
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-24 12:47:57 -04:00
Gregory Ballantine
d95be2e185 Added ability to limit dashboard results
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-24 12:35:01 -04:00
Gregory Ballantine
93afda6d10 Fixed errors caught by linter
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-05-24 12:09:09 -04:00
Gregory Ballantine
6d8965ada1 Added README with installation instructions
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-24 07:44:43 -04:00
Gregory Ballantine
62788ccad3 Fixed typo on Twig length filter
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:34:05 -04:00
Gregory Ballantine
6171a968c1 Added licenses to search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:33:07 -04:00
Gregory Ballantine
f44b0e217a Added a search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:25:46 -04:00
Gregory Ballantine
ca26858e51 Added a search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:24:36 -04:00
Gregory Ballantine
be408865cf Added a search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:23:46 -04:00
Gregory Ballantine
1118283cb7 Added a search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:23:17 -04:00
Gregory Ballantine
3e88dab7da Added a search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:22:44 -04:00
Gregory Ballantine
43e70e243c Added a search page
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:20:54 -04:00
Gregory Ballantine
4cfffbd219 Fixed search button positioning
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:06:37 -04:00
Gregory Ballantine
ce63940635 Moved search button out of the form to avoid adding unnecessary input parameters
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 10:03:47 -04:00
Gregory Ballantine
f4850c33ea Fixed some weirdness with the search button
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:58:57 -04:00
Gregory Ballantine
2a928f96ad Fixed search input styles
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:56:19 -04:00
Gregory Ballantine
d543426428 Fixed search button styles
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:53:05 -04:00
Gregory Ballantine
7a1f1bae9d Added search field in navbar
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:51:44 -04:00
Gregory Ballantine
4c367c2416 Added search field in navbar
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:44:57 -04:00
Gregory Ballantine
c7e30c9ed1 Added search field in navbar
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:42:12 -04:00
Gregory Ballantine
82c2b91090 Removed activities table; this will be handled after users are implemented
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2024-05-21 09:35:39 -04:00
8119f49b4d Added migrations and disabled auto-migrations to better protect users' databases
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-12-13 18:58:14 -05:00
b8700c1ba3 Added activity model to keep track of changes to items
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-12-04 01:05:24 -05:00
6024a1fe7f Added option to enable/disable redis session store; fixed the checks for username, password, and database number when setting up the Redis connection
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-11-23 22:17:36 -05:00
30bf9beea5 Added way to track license seats
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-11-14 10:54:44 -05:00
21 changed files with 1203 additions and 229 deletions

View File

@ -1,3 +1,36 @@
# overseer
Self-hosted inventory tracker
## Installation/Deployment
`git clone https://git.metaunix.net/BitGoblin/overseer`
`npm install --no-dev`
`npm run sequelize db:migrate`
`npm run grunt`
`npm run prod`
## Development
Feel free to clone this project and submit Merge Requests or just fork it and make it your own!
You will need the following tools/libraries to develop Overseer:
* node.js
* NPM
* Grunt.js
* Git (not strictly required but ideal)
Other than that, you should be good to go! You can start the development server with `nodemon` to auto-reload changes:
`npm run nodemon`
And to auto-compile asset changes (e.g. SASS and JS):
`npm run grunt watch`
If all went well, you should be able to visit http://localhost:3000/ in your browser and see the dashboard.

View File

@ -1,3 +1,14 @@
$(document).ready(function() {
console.log('Document is ready!');
$('#filter-limit').on('change', () => {
$.cookie('filter_limit', $('#filter-limit').val());
$('#filter-form').submit();
});
// check state of limit filter
var cookie_limit = $.cookie('filter_limit');
// if limit is different than what's selected
var active_limit = $('#filter-limit').val();
if ((cookie_limit) && (cookie_limit != active_limit)) {
$('#filter-limit').val(cookie_limit).trigger('change');
}
});

View File

@ -49,10 +49,14 @@ input[type="submit"].button-primary{
background: #212121;
box-shadow: $box-shadow-1;
color: white;
z-index: 100;
.nav-bar-left{
float: left;
}
.nav-bar-right{
float: right;
}
ul{
list-style: none;
@ -73,6 +77,38 @@ input[type="submit"].button-primary{
padding-left: 35px;
font-weight: bold;
}
#search-form{
display: inline-block;
padding: 10px 0;
li{
display: inline-block;
}
input{
display: inline-block;
width: 256px;
}
}
#search-button{
display: inline-block;
margin-left: 0;
margin-right: 35px;
padding: 0 10px;
background: $primary-color;
border: 1px solid white;
color: white;
font-size: 1.5rem;
font-weight: bold;
transition: all 200ms ease-in-out;
&:hover{
background: $primary-color-highlight;
color: #eee;
}
}
}
#main-content{

20
config/config.json Normal file
View File

@ -0,0 +1,20 @@
{
"development": {
"storage": "./data/overseer.db",
"dialect": "sqlite"
},
"test": {
"username": "root",
"password": null,
"database": "database_test",
"host": "127.0.0.1",
"dialect": "mysql"
},
"production": {
"username": "root",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "mysql"
}
}

View File

@ -7,6 +7,7 @@
"driver": "sqlite",
"connection_string": "data/overseer.db"
},
"use_redis": false,
"redis": {
"host": "192.168.1.10",
"port": 6379,

View File

@ -1,32 +1,36 @@
const express = require('express');
const session = require('express-session');
const RedisStore = require('connect-redis')(session);
// const flash = require('express-flasher');
// const flash = require('@bitgoblin/express-flasher');
// instantiate new express.js app
const app = express();
const config = require('config');
// initialize database connection
(async () => {
const db = require('./src/models');
await db.sequelize.sync({
alter: true,
});
})();
require('./src/models');
// initialize Redis store for session data
const redisClient = require('./src/redis');
if (config.get('use_redis')) {
// initialize Redis store for session data
const redisClient = require('./src/redis');
// initialize express.js session w/ Redis datastore
app.use(session({
// initialize express.js session w/ Redis datastore
app.use(session({
store: new RedisStore({
client: redisClient,
}), // use Redis datastore
resave: false, // don't save session if unmodified
saveUninitialized: false, // don't create session until something stored
secret: 'lord of the rings',
}));
}));
} else {
// initialize express.js session w/ Redis datastore
app.use(session({
resave: false, // don't save session if unmodified
saveUninitialized: false, // don't create session until something stored
secret: 'lord of the rings',
}));
}
// setup flash messaging
// app.use(flash.flash());
@ -48,6 +52,7 @@ app.use(express.static('public'));
const homeRoutes = require('./src/routes/home');
const itemRoutes = require('./src/routes/item');
const licenseRoutes = require('./src/routes/license');
const searchRoutes = require('./src/routes/search');
// register route handlers
app.get('/', homeRoutes.getIndex);
@ -61,6 +66,7 @@ app.post('/license/add', licenseRoutes.postAdd);
app.get('/license/:id', licenseRoutes.getLicense);
app.get('/license/:id/edit', licenseRoutes.getEdit);
app.post('/license/:id/edit', licenseRoutes.postEdit);
app.get('/search', searchRoutes.getSearch);
// start app
app.listen(config.get('server.port'), config.get('server.address'), () => {

View File

@ -0,0 +1,28 @@
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('items', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
name: {
type: Sequelize.DataTypes.STRING,
allowNull: false,
},
manufacturer: Sequelize.DataTypes.STRING,
serialNumber: Sequelize.DataTypes.STRING,
skuNumber: Sequelize.DataTypes.STRING,
type: Sequelize.DataTypes.STRING,
purchasedFrom: Sequelize.DataTypes.STRING,
purchasedAt: Sequelize.DataTypes.DATE,
createdAt: Sequelize.DataTypes.DATE,
updatedAt: Sequelize.DataTypes.DATE,
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('items');
}
};

View File

@ -0,0 +1,37 @@
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('licenses', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
name: {
type: Sequelize.DataTypes.STRING,
allowNull: false,
},
key: {
type: Sequelize.DataTypes.STRING,
allowNull: false,
},
manufacturer: Sequelize.DataTypes.STRING,
seatsUsed: {
type: Sequelize.DataTypes.NUMBER,
defaultValue: 0,
},
seatsTotal: {
type: Sequelize.DataTypes.NUMBER,
defaultValue: 1,
},
purchasedFrom: Sequelize.DataTypes.STRING,
purchasedAt: Sequelize.DataTypes.DATE,
createdAt: Sequelize.DataTypes.DATE,
updatedAt: Sequelize.DataTypes.DATE,
});
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('licenses');
}
};

1001
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,13 @@
{
"name": "overseer",
"version": "0.2.2",
"version": "0.3.0",
"description": "Self-hosted inventory tracker",
"main": "index.js",
"scripts": {
"start": "node index.js",
"grunt": "grunt",
"nodemon": "nodemon index.js",
"sequelize": "sequelize-cli",
"lint": "eslint index.js src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
@ -49,6 +50,7 @@
"pg-hstore": "^2.3.4",
"redis": "^4.4.0",
"sequelize": "^6.25.3",
"sequelize-cli": "^6.5.2",
"sqlite3": "^5.1.2",
"twig": "^1.15.4"
}

View File

@ -13,6 +13,16 @@ module.exports = (sequelize, Sequelize) => {
type: Sequelize.STRING,
},
seatsUsed: {
type: Sequelize.NUMBER,
default: 0,
},
seatsTotal: {
type: Sequelize.NUMBER,
default: 1,
},
purchasedFrom: {
type: Sequelize.STRING,
},

View File

@ -4,11 +4,11 @@ exports.default = function() {
let redisUrl = 'redis://';
// add the redis username if defined
if (typeof redisConfig.get('username') !== 'undefined') {
if (redisConfig.has('username')) {
redisUrl += redisConfig.get('username');
}
// add the user password if defined
if (typeof redisConfig.get('password') !== 'undefined') {
if (redisConfig.has('password')) {
redisUrl += ':' + redisConfig.get('password') + '@';
}
// add redis host URL
@ -16,7 +16,7 @@ exports.default = function() {
// add redis host port
redisUrl += ':' + redisConfig.get('port');
// add redis database number if defined
if (typeof redisConfig.get('number') !== 'undefined') {
if (redisConfig.has('number')) {
redisUrl += redisConfig.get('number');
}

View File

@ -4,9 +4,15 @@ const License = db.licenses;
// GET - /
exports.getIndex = async function(req, res) {
// check if there's a limit set
let limit = 10; // default to 10 results
if ('limit' in req.query) {
limit = req.query.limit;
}
// fetch inventory items from database
const items = await Item.findAll({
limit: 10,
limit: limit,
order: [
['updatedAt', 'DESC'],
],
@ -14,7 +20,7 @@ exports.getIndex = async function(req, res) {
// fetch licenses from database
const licenses = await License.findAll({
limit: 10,
limit: limit,
order: [
['updatedAt', 'DESC'],
],
@ -25,5 +31,8 @@ exports.getIndex = async function(req, res) {
res.render('index.twig', {
inventory: items,
licenses: licenses,
filters: {
limit: limit,
},
});
};

View File

@ -12,6 +12,8 @@ exports.postAdd = async function(req, res) {
name: req.body.license_name,
key: req.body.license_key,
manufacturer: req.body.license_manufacturer,
seatsUsed: req.body.license_seats_used,
seatsTotal: req.body.license_seats_total,
purchasedFrom: req.body.license_purchase_from,
purchasedAt: req.body.license_purchase_date,
});
@ -63,6 +65,8 @@ exports.postEdit = async function(req, res) {
license.name = req.body.license_name;
license.key = req.body.license_key;
license.manufacturer = req.body.license_manufacturer;
license.seatsUsed = req.body.license_seats_used;
license.seatsTotal = req.body.license_seats_total;
license.purchasedFrom = req.body.license_purchase_from;
license.purchasedAt = req.body.license_purchase_date;

42
src/routes/search.js Normal file
View File

@ -0,0 +1,42 @@
const db = require('../models');
const Item = db.items;
const License = db.licenses;
const {Op} = require('sequelize');
// GET - /search
exports.getSearch = async function(req, res) {
// decode URL search query
const query = req.query.query;
// fetch inventory items from database based on search query
const itemResults = await Item.findAll({
where: {
name: {
[Op.like]: '%' + query + '%',
},
},
limit: 10,
order: [
['updatedAt', 'DESC'],
],
});
// fetch licenses from database based on search query
const licenseResults = await License.findAll({
where: {
name: {
[Op.like]: '%' + query + '%',
},
},
limit: 10,
order: [
['updatedAt', 'DESC'],
],
});
res.render('search.twig', {
query: query,
itemResults: itemResults,
licenseResults: licenseResults,
});
};

View File

@ -12,13 +12,19 @@
</header>
<section id="record-actions" class="row">
<div class="columns six">
<div class="columns four">
<a href="/item/add">
<p><i class="fa-solid fa-plus"></i> Add Item</p>
</a>
</div>
<div class="columns six">
<div class="columns four">
<a href="/license/add">
<p><i class="fa-solid fa-plus"></i> Add License</p>
</a>
</div>
<div class="columns four">
<a href="/item/search">
<p><i class="fa-solid fa-search"></i> Search</p>
</a>
@ -77,4 +83,18 @@
</div>
</section>
<section class="row">
<div class="columns twelve">
<form id="filter-form" class="u-full-width" action="/" method="GET">
<select id="filter-limit" name="limit">
<option {% if filters['limit'] == 5 %}selected{% endif %} value="5">5</option>
<option {% if filters['limit'] == 10 %}selected{% endif %} value="10">10</option>
<option {% if filters['limit'] == 20 %}selected{% endif %} value="20">20</option>
<option {% if filters['limit'] == 35 %}selected{% endif %} value="35">35</option>
<option {% if filters['limit'] == 50 %}selected{% endif %} value="50">50</option>
</select>
</form>
</div>
</section>
{% endblock %}

View File

@ -8,7 +8,8 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link rel="stylesheet" href="/css/gargoyle.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js" charset="utf-8"></script>
<script src="/js/nechryael.min.js"></script>
</head>
<body>
@ -18,11 +19,22 @@
<ul>
<li class="site-logo">Overseer</li>
<li class="nav-link"><a href="/">Home</a></li>
<li class="nav-link"><a href="/item/search">Search</a></li>
<li class="nav-link"><a href="/item/add">Add Item</a></li>
<li class="nav-link"><a href="/license/add">Add License</a></li>
</ul>
</div>
<div class="nav-bar-right">
<ul>
<li>
<form id="search-form" action="/search" method="GET">
<input type="text" name="query" placeholder="enter a search query...">
</form>
<button id="search-button" type="submit" for="search-form"><i class="fa-solid fa-magnifying-glass"></i></button>
</li>
</ul>
</div>
</nav>
{% if flash != null %}

View File

@ -23,7 +23,7 @@
<div class="row">
<div class="six columns">
<label for="license_key">License Key:</label>
<label for="license_key">License key:</label>
<input class="u-full-width" type="text" placeholder="ABCD-EFGH-1234-5678" id="license_key" name="license_key" required>
</div>
@ -33,6 +33,18 @@
</div>
</div>
<div class="row">
<div class="six columns">
<label for="license_seats_used">Seats in use:</label>
<input class="u-full-width" type="number" placeholder="0" id="license_seats_used" name="license_seats_used" required value="0">
</div>
<div class="six columns">
<label for="license_seats_total">Seats total:</label>
<input class="u-full-width" type="number" placeholder="1" id="license_seats_total" name="license_seats_total" required value="1">
</div>
</div>
<div class="row">
<div class="six columns">
<label for="license_purchase_from">Purchased from:</label>

View File

@ -33,6 +33,18 @@
</div>
</div>
<div class="row">
<div class="six columns">
<label for="license_seats_used">Seats in use:</label>
<input class="u-full-width" type="number" placeholder="0" id="license_seats_used" name="license_seats_used" required value="{{ license.seatsUsed }}">
</div>
<div class="six columns">
<label for="license_seats_total">Seats total:</label>
<input class="u-full-width" type="number" placeholder="1" id="license_seats_total" name="license_seats_total" required value="{{ license.seatsTotal }}">
</div>
</div>
<div class="row">
<div class="six columns">
<label for="license_purchase_from">Purchased from:</label>

View File

@ -22,8 +22,10 @@
<thead>
<tr>
<th>Product name</th>
<th>License Key</th>
<th>License key</th>
<th>Manufacturer</th>
<th>Seats used</th>
<th>Total seats</th>
<th>Seller</th>
<th>Purchase date</th>
</tr>
@ -33,6 +35,8 @@
<td>{{ license.name }}</td>
<td>{{ license.key ? license.key : 'N/a' }}</td>
<td>{{ license.manufacturer ? license.manufacturer : 'N/a' }}</td>
<td>{{ license.seatsUsed }}</td>
<td>{{ license.seatsTotal }}</td>
<td>{{ license.purchasedFrom ? license.purchasedFrom : 'N/a' }}</td>
<td>{{ license.purchasedAt | date("m/d/Y h:i:s A") }}</td>
</tr>

66
views/search.twig Normal file
View File

@ -0,0 +1,66 @@
{% extends 'layout.twig' %}
{% block title %}Search{% endblock %}
{% block content %}
<!-- page header -->
<header class="row">
<div class="columns twelve">
<h1>Searching for "{{ query }}"</h1>
</div>
</header>
{% if itemResults|length > 0 %}
<section id="search-results" class="row">
<div class="columns twelve">
<h3>Hardware components:</h3>
<table class="u-full-width">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Updated at</th>
</tr>
</thead>
<tbody>
{% for item in itemResults %}
<tr>
<td><a href="/item/{{ item.id }}">{{ item.name }}</a></td>
<td>{{ item.type }}</td>
<td>{{ item.updatedAt | date("m/d/Y h:i:s A") }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
{% endif %}
{% if licenseResults|length > 0 %}
<section id="search-results" class="row">
<div class="columns twelve">
<h3>Software licenses:</h3>
<table class="u-full-width">
<thead>
<tr>
<th>Name</th>
<th>Vendor</th>
<th>Updated at</th>
</tr>
</thead>
<tbody>
{% for license in licenseResults %}
<tr>
<td><a href="/item/{{ license.id }}">{{ license.name }}</a></td>
<td>{{ license.manufacturer }}</td>
<td>{{ license.updatedAt | date("m/d/Y h:i:s A") }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
{% endif %}
{% endblock %}