You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 18:05:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			104 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Objection Docs:
 | |
| // http://vincit.github.io/objection.js/
 | |
| 
 | |
| const db               = require('../db');
 | |
| const helpers          = require('../lib/helpers');
 | |
| const Model            = require('objection').Model;
 | |
| const User             = require('./user');
 | |
| const AccessListAuth   = require('./access_list_auth');
 | |
| const AccessListClient = require('./access_list_client');
 | |
| const now              = require('./now_helper');
 | |
| 
 | |
| Model.knex(db);
 | |
| 
 | |
| const boolFields = [
 | |
| 	'is_deleted',
 | |
| 	'satisfy_any',
 | |
| 	'pass_auth',
 | |
| ];
 | |
| 
 | |
| class AccessList extends Model {
 | |
| 	$beforeInsert () {
 | |
| 		this.created_on  = now();
 | |
| 		this.modified_on = now();
 | |
| 
 | |
| 		// Default for meta
 | |
| 		if (typeof this.meta === 'undefined') {
 | |
| 			this.meta = {};
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	$beforeUpdate () {
 | |
| 		this.modified_on = now();
 | |
| 	}
 | |
| 
 | |
| 	$parseDatabaseJson(json) {
 | |
| 		json = super.$parseDatabaseJson(json);
 | |
| 		return helpers.convertIntFieldsToBool(json, boolFields);
 | |
| 	}
 | |
| 
 | |
| 	$formatDatabaseJson(json) {
 | |
| 		json = helpers.convertBoolFieldsToInt(json, boolFields);
 | |
| 		return super.$formatDatabaseJson(json);
 | |
| 	}
 | |
| 
 | |
| 	static get name () {
 | |
| 		return 'AccessList';
 | |
| 	}
 | |
| 
 | |
| 	static get tableName () {
 | |
| 		return 'access_list';
 | |
| 	}
 | |
| 
 | |
| 	static get jsonAttributes () {
 | |
| 		return ['meta'];
 | |
| 	}
 | |
| 
 | |
| 	static get relationMappings () {
 | |
| 		const ProxyHost = require('./proxy_host');
 | |
| 
 | |
| 		return {
 | |
| 			owner: {
 | |
| 				relation:   Model.HasOneRelation,
 | |
| 				modelClass: User,
 | |
| 				join:       {
 | |
| 					from: 'access_list.owner_user_id',
 | |
| 					to:   'user.id'
 | |
| 				},
 | |
| 				modify: function (qb) {
 | |
| 					qb.where('user.is_deleted', 0);
 | |
| 				}
 | |
| 			},
 | |
| 			items: {
 | |
| 				relation:   Model.HasManyRelation,
 | |
| 				modelClass: AccessListAuth,
 | |
| 				join:       {
 | |
| 					from: 'access_list.id',
 | |
| 					to:   'access_list_auth.access_list_id'
 | |
| 				}
 | |
| 			},
 | |
| 			clients: {
 | |
| 				relation:   Model.HasManyRelation,
 | |
| 				modelClass: AccessListClient,
 | |
| 				join:       {
 | |
| 					from: 'access_list.id',
 | |
| 					to:   'access_list_client.access_list_id'
 | |
| 				}
 | |
| 			},
 | |
| 			proxy_hosts: {
 | |
| 				relation:   Model.HasManyRelation,
 | |
| 				modelClass: ProxyHost,
 | |
| 				join:       {
 | |
| 					from: 'access_list.id',
 | |
| 					to:   'proxy_host.access_list_id'
 | |
| 				},
 | |
| 				modify: function (qb) {
 | |
| 					qb.where('proxy_host.is_deleted', 0);
 | |
| 				}
 | |
| 			}
 | |
| 		};
 | |
| 	}
 | |
| }
 | |
| 
 | |
| module.exports = AccessList;
 |