├── .gitignore ├── .travis.yml ├── public ├── bootstrap-2.3.1 │ ├── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap-responsive.css │ └── js │ │ └── bootstrap.min.js └── stylesheets │ └── style.css ├── test ├── test-acl-permission.js ├── test.js └── all.js ├── package.json ├── routes ├── page.js ├── user.js ├── coupon.js ├── folder.js ├── notify.js ├── order.js ├── status.js ├── acl-role.js ├── category.js ├── currency.js ├── item.js ├── property.js ├── service.js ├── session.js ├── user-acl.js ├── acl-resource.js ├── item-coupon.js ├── order-coupon.js ├── order-item.js ├── user-profile.js ├── acl-permission.js ├── item-property.js ├── order-service.js ├── package-level.js ├── property-type.js ├── service-coupon.js ├── subscription.js ├── merchant-gateway.js ├── order-status-history.js ├── order-subscription.js ├── subscription-coupon.js └── service-package-level.js ├── models ├── PropertyType.js ├── Status.js ├── OrderItem.js ├── AclResource.js ├── AclPermission.js ├── OrderCoupon.js ├── PackageLevel.js ├── AclRole.js ├── Currency.js ├── PropertyValue.js ├── Folder.js ├── ItemProperty.js ├── ServiceCoupon.js ├── ItemCoupon.js ├── OrderStatusHistory.js ├── SubscriptionCoupon.js ├── Session.js ├── SubscriptionService.js ├── Property.js ├── ServicePackageLevel.js ├── MerchantGateway.js ├── SubscriptionPackageLevel.js ├── Category.js ├── UserAcl.js ├── Notify.js ├── UserProfile.js ├── OrderSubscription.js ├── Page.js ├── OrderService.js ├── Coupon.js ├── Service.js ├── Subscription.js ├── User.js ├── Order.js └── Item.js ├── app.js ├── README.md └── lib └── crud.js /.gitignore: -------------------------------------------------------------------------------- 1 | _config.js 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | - "0.8" 6 | - "0.6" 7 | -------------------------------------------------------------------------------- /public/bootstrap-2.3.1/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zrecore/zrecore-js/HEAD/public/bootstrap-2.3.1/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/bootstrap-2.3.1/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zrecore/zrecore-js/HEAD/public/bootstrap-2.3.1/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /test/test-acl-permission.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created with JetBrains WebStorm. 3 | * User: aalbino 4 | * Date: 5/27/13 5 | * Time: 12:14 PM 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; 4 | } 5 | 6 | /*HTML 5 compat*/ 7 | header, section, article, nav, footer, aside, hgroup{ 8 | display: block; 9 | } 10 | 11 | 12 | a { 13 | color: #00B7FF; 14 | } -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | var assert = require("assert"); 2 | describe("Array", function () { 3 | describe('#indexOf()', function () { 4 | it ('should return -1 when the value is not present', function () { 5 | assert.equal(-1, [1,2,3].indexOf(5)); 6 | assert.equal(-1, [1,2,3].indexOf(0)); 7 | }); 8 | }); 9 | }); 10 | 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zrecore", 3 | "version": "1.3.1", 4 | "repository": { 5 | "type": "git", 6 | "url": "https://github.com/zrecommerce/zrecore-js.git" 7 | }, 8 | "main": "./app.js", 9 | "private": false, 10 | "scripts": { 11 | "start": "node app", 12 | "test": "node test/test.js" 13 | }, 14 | "dependencies": { 15 | "restify": "2.x", 16 | "mongodb": "*", 17 | "mongoose": ">= 3.6.x", 18 | "socket.io": "*", 19 | "session": "*", 20 | "nodeunit": "*", 21 | "extend": "*", 22 | "underscore": "*", 23 | "bcrypt": "*" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /routes/page.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Page.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/user.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/User.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/coupon.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Coupon.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/folder.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Folder.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/notify.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Notify.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/order.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Order.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/status.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Status.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/acl-role.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/AclRole.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/category.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Category.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/currency.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Currency.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/item.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Item.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } 25 | -------------------------------------------------------------------------------- /routes/property.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Property.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/service.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Service.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/session.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Session.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/user-acl.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/UserAcl.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/acl-resource.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/AclResource.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/item-coupon.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/ItemCoupon.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/order-coupon.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/OrderCoupon.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/order-item.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/OrderItem.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/user-profile.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/UserProfile.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/acl-permission.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/AclPermission.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/item-property.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/ItemProperty.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/order-service.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/OrderService.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/package-level.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/PackageLevel.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/property-type.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/PropertyType.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/service-coupon.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/ServiceCoupon.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/subscription.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/Subscription.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/merchant-gateway.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/MerchantGateway.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/order-status-history.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/OrderStatusHistory.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/order-subscription.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/OrderSubscription.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/subscription-coupon.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/SubscriptionCoupon.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /routes/service-package-level.js: -------------------------------------------------------------------------------- 1 | var mModel = require('../models/ServicePackageLevel.js'), 2 | _ = require('underscore'), 3 | c = require('../lib/crud.js'); 4 | 5 | 6 | exports.list = function (req, res, next) { 7 | return c.list(mModel, req, res, next); 8 | } 9 | 10 | exports.get = function (req, res, next) { 11 | return c.get(mModel, req, res, next); 12 | } 13 | 14 | exports.put = function (req, res, next) { 15 | return c.put(mModel, req, res, next); 16 | } 17 | 18 | exports.post = function (req, res, next) { 19 | return c.post(mModel, req, res, next); 20 | } 21 | 22 | exports.del = function (req, res, next) { 23 | return c.del(mModel, req, res, next); 24 | } -------------------------------------------------------------------------------- /models/PropertyType.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var PropertyTypeSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "type": { 11 | "type": String, 12 | "required": true, 13 | "index": true 14 | }, 15 | 16 | "timestamp_added": { 17 | "type": Date, 18 | "default": Date.now, 19 | "required": false, 20 | "index": true 21 | }, 22 | "timestamp_modified": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_deactivated": { 29 | "type": Date, 30 | "required": false, 31 | "index": true 32 | } 33 | }, { 34 | "autoIndex": false 35 | }); 36 | 37 | //PropertyTypeSchema.index({ "type": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 }); 38 | 39 | module.exports = mongoose.model("PropertyType", PropertyTypeSchema); 40 | -------------------------------------------------------------------------------- /models/Status.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var StatusSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "value": { 11 | "type": String, 12 | "required": true, 13 | "index": true 14 | }, 15 | "timestamp_added": { 16 | "type": Date, 17 | "default": Date.now, 18 | "required": false, 19 | "index": true 20 | }, 21 | "timestamp_modified": { 22 | "type": Date, 23 | "default": Date.now, 24 | "required": false, 25 | "index": true 26 | }, 27 | "timestamp_deactivated": { 28 | "type": Date, 29 | "required": false, 30 | "index": true 31 | } 32 | }, { 33 | "autoIndex": false 34 | }); 35 | 36 | StatusSchema.index({ 37 | "value": 1 38 | }, {"unique": true}); 39 | //StatusSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 40 | 41 | module.exports = mongoose.model("Status", StatusSchema); 42 | -------------------------------------------------------------------------------- /models/OrderItem.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var OrderItemSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "order_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Order" 15 | }, 16 | "item_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Item" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | OrderItemSchema.index({ 44 | "item_id": 1, 45 | "order_id": 1 46 | }, {"unique": 1}); 47 | 48 | module.exports = mongoose.model("OrderItem", OrderItemSchema); 49 | -------------------------------------------------------------------------------- /models/AclResource.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var AclResourceSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "resource_name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true, 14 | "lowercase": true, 15 | "trim": true, 16 | "index": true 17 | }, 18 | "is_active": { 19 | "type": Boolean, 20 | "required": true, 21 | "default": false, 22 | "index": true 23 | }, 24 | "timestamp_added": { 25 | "type": Date, 26 | "default": Date.now, 27 | "required": false, 28 | "index": true 29 | }, 30 | "timestamp_modified": { 31 | "type": Date, 32 | "default": Date.now, 33 | "required": false, 34 | "index": true 35 | }, 36 | "timestamp_deactivated": { 37 | "type": Date, 38 | "required": false, 39 | "index": true 40 | } 41 | }, { 42 | "autoIndex": false 43 | }); 44 | 45 | //AclResourceSchema.index({"resource_name": 1, "is_active": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 46 | module.exports = mongoose.model("AclResource", AclResourceSchema); 47 | -------------------------------------------------------------------------------- /models/AclPermission.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var AclPermissionSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "permission_name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true, 14 | "lowercase": true, 15 | "trim": true, 16 | "index": true 17 | }, 18 | "is_active": { 19 | "type": Boolean, 20 | "required": true, 21 | "default": false, 22 | "index": true 23 | }, 24 | "timestamp_added": { 25 | "type": Date, 26 | "default": Date.now, 27 | "required": false, 28 | "index": true 29 | }, 30 | "timestamp_modified": { 31 | "type": Date, 32 | "default": Date.now, 33 | "required": false, 34 | "index": true 35 | }, 36 | "timestamp_deactivated": { 37 | "type": Date, 38 | "required": false, 39 | "index": true 40 | } 41 | }, { 42 | "autoIndex": false 43 | }); 44 | 45 | //AclPermissionSchema.index({"permission_name": 1, "is_active": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 46 | module.exports = mongoose.model("AclPermission", AclPermissionSchema); 47 | -------------------------------------------------------------------------------- /models/OrderCoupon.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var OrderCouponSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "order_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Order" 15 | }, 16 | "coupon_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Coupon" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | OrderCouponSchema.index({ 44 | "order_id": 1, 45 | "coupon_id": 1 46 | }, { 47 | "unique": true 48 | }); 49 | 50 | module.exports = mongoose.model("OrderCoupon", OrderCouponSchema); 51 | -------------------------------------------------------------------------------- /models/PackageLevel.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var PackageLevelSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "name": { 11 | "type": String, 12 | "required": true, 13 | "index": true 14 | }, 15 | "is_available": { 16 | "type": Boolean, 17 | "required": true, 18 | "default": false, 19 | "index": true 20 | }, 21 | "timestamp_added": { 22 | "type": Date, 23 | "default": Date.now, 24 | "required": false, 25 | "index": true 26 | }, 27 | "timestamp_modified": { 28 | "type": Date, 29 | "default": Date.now, 30 | "required": false, 31 | "index": true 32 | }, 33 | "timestamp_deactivated": { 34 | "type": Date, 35 | "required": false, 36 | "index": true 37 | } 38 | }, { 39 | "autoIndex": false 40 | }); 41 | //PackageLevelSchema.index({"is_available": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 42 | PackageLevelSchema.index({"name": 1}, {"unique": true}); 43 | 44 | module.exports = mongoose.model("PackageLevel", PackageLevelSchema); 45 | -------------------------------------------------------------------------------- /models/AclRole.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var AclRoleSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "role_name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true, 14 | "lowercase": true, 15 | "trim": true 16 | }, 17 | "is_active": { 18 | "type": Boolean, 19 | "required": true, 20 | "default": false, 21 | "index": true 22 | }, 23 | "inherit_role_id": { 24 | "type": ObjectId, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_added": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_modified": { 35 | "type": Date, 36 | "default": Date.now, 37 | "required": false, 38 | "index": true 39 | }, 40 | "timestamp_deactivated": { 41 | "type": Date, 42 | "required": false, 43 | "index": true 44 | } 45 | }, { 46 | "autoIndex": false 47 | }); 48 | 49 | //AclRoleSchema.index({"role_name": 1, "is_active": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 50 | module.exports = mongoose.model("AclRole", AclRoleSchema); 51 | -------------------------------------------------------------------------------- /models/Currency.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var CurrencySchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "code": { 11 | "type": String, 12 | "required": true, 13 | "unique": true 14 | }, 15 | "name": { 16 | "type": String, 17 | "required": true, 18 | "unique": true 19 | }, 20 | "is_default": { 21 | "type": Boolean, 22 | "default": false, 23 | "index": true 24 | }, 25 | "timestamp_added": { 26 | "type": Date, 27 | "default": Date.now, 28 | "required": false, 29 | "index": true 30 | }, 31 | "timestamp_modified": { 32 | "type": Date, 33 | "default": Date.now, 34 | "required": false, 35 | "index": true 36 | }, 37 | "timestamp_deactivated": { 38 | "type": Date, 39 | "required": false, 40 | "index": true 41 | } 42 | }, { 43 | "autoIndex": false 44 | }); 45 | 46 | //CurrencySchema.index({"code": 1, "name": 1, "is_default": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 47 | module.exports = mongoose.model("Currency", CurrencySchema); 48 | -------------------------------------------------------------------------------- /models/PropertyValue.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var PropertyValueSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "text": { 11 | "type": String, 12 | "required": true, 13 | "index": true 14 | }, 15 | "type_id": { 16 | "type": ObjectId, 17 | "required": true, 18 | "index": true, 19 | "ref": "PropertyType" 20 | }, 21 | 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | //PropertyValueSchema.index({ "type_id": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 }); 44 | PropertyValueSchema.index({"text": 1, "type_id": 1}, {"unique": true}); 45 | 46 | module.exports = mongoose.model("PropertyValue", PropertyValueSchema); 47 | -------------------------------------------------------------------------------- /models/Folder.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var FolderSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true 14 | }, 15 | "slug": { 16 | "type": String, 17 | "required": true, 18 | "unique": true 19 | }, 20 | "parent_id": { 21 | "type": ObjectId, 22 | "required": false, 23 | "index": true, 24 | "ref": "Folder" 25 | }, 26 | "timestamp_added": { 27 | "type": Date, 28 | "default": Date.now, 29 | "required": false, 30 | "index": true 31 | }, 32 | "timestamp_modified": { 33 | "type": Date, 34 | "default": Date.now, 35 | "required": false, 36 | "index": true 37 | }, 38 | "timestamp_deactivated": { 39 | "type": Date, 40 | "required": false, 41 | "index": true 42 | } 43 | }, { 44 | "autoIndex": false 45 | }); 46 | 47 | //FolderSchema.index({"name": 1, "slug": 1, "parent_id": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 48 | module.exports = mongoose.model("Folder", FolderSchema); 49 | -------------------------------------------------------------------------------- /models/ItemProperty.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var ItemPropertySchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "item_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Item" 15 | }, 16 | "property_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true 20 | }, 21 | "timestamp_added": { 22 | "type": Date, 23 | "default": Date.now, 24 | "required": false, 25 | "index": true 26 | }, 27 | "timestamp_modified": { 28 | "type": Date, 29 | "default": Date.now, 30 | "required": false, 31 | "index": true 32 | }, 33 | "timestamp_deactivated": { 34 | "type": Date, 35 | "required": false, 36 | "index": true 37 | } 38 | }, { 39 | "autoIndex": false 40 | }); 41 | 42 | ItemPropertySchema.index({ 43 | "item_id": 1, 44 | "property_id": 1 45 | }, { 46 | "unique": true 47 | }); 48 | //ItemPropertySchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 49 | 50 | module.exports = mongoose.model("ItemProperty", ItemPropertySchema); 51 | -------------------------------------------------------------------------------- /models/ServiceCoupon.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var ServiceCouponSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "service_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Service" 15 | }, 16 | "coupon_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Coupon" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | 44 | ServiceCouponSchema.index({"service_id": 1, "coupon_id": 1}, {"unique": true}); 45 | //ServiceCouponSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}) 46 | 47 | module.exports = mongoose.model("ServiceCoupon", ServiceCouponSchema); 48 | -------------------------------------------------------------------------------- /models/ItemCoupon.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var ItemCouponSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "item_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Item" 15 | }, 16 | "coupon_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Coupon" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | ItemCouponSchema.index({ 44 | "item_id": 1, 45 | "coupon_id": 1 46 | }, { 47 | "unique": true 48 | }); 49 | //ItemCouponSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 50 | 51 | module.exports = mongoose.model("ItemCoupon", ItemCouponSchema); 52 | -------------------------------------------------------------------------------- /models/OrderStatusHistory.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var OrderStatusHistorySchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "status_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Status" 15 | }, 16 | "change_date": { 17 | "type": Date, 18 | "required": false, 19 | "index": true 20 | }, 21 | "timestamp_added": { 22 | "type": Date, 23 | "default": Date.now, 24 | "required": false, 25 | "index": true 26 | }, 27 | "timestamp_modified": { 28 | "type": Date, 29 | "default": Date.now, 30 | "required": false, 31 | "index": true 32 | }, 33 | "timestamp_deactivated": { 34 | "type": Date, 35 | "required": false, 36 | "index": true 37 | } 38 | }, { 39 | "autoIndex": false 40 | }); 41 | 42 | OrderStatusHistorySchema.index({ 43 | "status_id": 1, 44 | "change_date": 1 45 | }, { 46 | "unique": true 47 | }); 48 | 49 | //OrderStatusHistorySchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 50 | 51 | module.exports = mongoose.model("OrderStatusHistory", OrderStatusHistorySchema); 52 | -------------------------------------------------------------------------------- /models/SubscriptionCoupon.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var SubscriptionCouponSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "subscription_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Subscription" 15 | }, 16 | "coupon_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Coupon" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | 44 | SubscriptionCouponSchema.index({"subscription_id": 1, "coupon_id": 1}, {"unique": true}); 45 | //SubscriptionCouponSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 46 | 47 | module.exports = mongoose.model("SubscriptionCoupon", SubscriptionCouponSchema); 48 | -------------------------------------------------------------------------------- /models/Session.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var SessionSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "token": { 11 | "type": String, 12 | "required": true, 13 | "index": true 14 | }, 15 | "user_id": { 16 | "type": ObjectId, 17 | "required": false, 18 | "index": true, 19 | "ref": "User" 20 | }, 21 | "ip": { 22 | "type": String, 23 | "required": true, 24 | "index": true 25 | }, 26 | "timestamp_added": { 27 | "type": Date, 28 | "default": Date.now, 29 | "required": false, 30 | "index": true 31 | }, 32 | "timestamp_modified": { 33 | "type": Date, 34 | "default": Date.now, 35 | "required": false, 36 | "index": true 37 | }, 38 | "timestamp_deactivated": { 39 | "type": Date, 40 | "required": false, 41 | "index": true 42 | } 43 | }, { 44 | "autoIndex": false 45 | }); 46 | 47 | SessionSchema.index({ 48 | "token": 1, 49 | "ip": 1 50 | }, {"unique": true}); 51 | //SessionSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 52 | 53 | module.exports = mongoose.model("Session", SessionSchema); 54 | -------------------------------------------------------------------------------- /models/SubscriptionService.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var SubscriptionServiceSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "subscription_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Subscription" 15 | }, 16 | "service_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Service" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | 44 | SubscriptionServiceSchema.index({"subscription_id": 1, "service_id": 1}, {"unique": true}); 45 | //SubscriptionServiceSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 46 | 47 | module.exports = mongoose.model("SubscriptionService", SubscriptionServiceSchema); 48 | -------------------------------------------------------------------------------- /models/Property.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var PropertySchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "name": { 11 | "type": String, 12 | "required": true, 13 | "index": true 14 | }, 15 | "type_id": { 16 | "type": ObjectId, 17 | "required": false, 18 | "index": true, 19 | "ref": "PropertyType" 20 | }, 21 | "is_required": { 22 | "type": Boolean, 23 | "required": true, 24 | "default": false, 25 | "index": true 26 | }, 27 | 28 | "timestamp_added": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_modified": { 35 | "type": Date, 36 | "default": Date.now, 37 | "required": false, 38 | "index": true 39 | }, 40 | "timestamp_deactivated": { 41 | "type": Date, 42 | "required": false, 43 | "index": true 44 | } 45 | }, { 46 | "autoIndex": false 47 | }); 48 | 49 | //PropertySchema.index({ "name": 1, "type_id": 1, "is_required": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 }); 50 | 51 | module.exports = mongoose.model("Property", PropertySchema); 52 | -------------------------------------------------------------------------------- /models/ServicePackageLevel.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var ServicePackageLevelSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "service_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Service" 15 | }, 16 | "package_level_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "PackageLevel" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | 44 | ServicePackageLevelSchema.index({"service_id": 1, "package_level_id": 1}, {"unique": true}); 45 | //ServicePackageLevelSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 46 | 47 | module.exports = mongoose.model("ServicePackageLevel", ServicePackageLevelSchema); 48 | -------------------------------------------------------------------------------- /models/MerchantGateway.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var MerchantGatewaySchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true 14 | }, 15 | "class": { 16 | "type": String, 17 | "required": true, 18 | "unique": true 19 | }, 20 | "is_default": { 21 | "type": Boolean, 22 | "default": 0, 23 | "required": false, 24 | "index": true 25 | }, 26 | "timestamp_added": { 27 | "type": Date, 28 | "default": Date.now, 29 | "required": false, 30 | "index": true 31 | }, 32 | "timestamp_modified": { 33 | "type": Date, 34 | "default": Date.now, 35 | "required": false, 36 | "index": true 37 | }, 38 | "timestamp_deactivated": { 39 | "type": Date, 40 | "required": false, 41 | "index": true 42 | } 43 | }, { 44 | "autoIndex": false 45 | }); 46 | 47 | //MerchantGatewaySchema.index({ 48 | // "name": 1, 49 | // "class": 1, 50 | // "is_default": 1, 51 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 52 | //}); 53 | 54 | module.exports = mongoose.model("MerchantGateway", MerchantGatewaySchema); 55 | -------------------------------------------------------------------------------- /models/SubscriptionPackageLevel.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var SubscriptionPackageLevelSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "subscription_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Subscription" 15 | }, 16 | "package_level_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "PackageLevel" 21 | }, 22 | "timestamp_added": { 23 | "type": Date, 24 | "default": Date.now, 25 | "required": false, 26 | "index": true 27 | }, 28 | "timestamp_modified": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_deactivated": { 35 | "type": Date, 36 | "required": false, 37 | "index": true 38 | } 39 | }, { 40 | "autoIndex": false 41 | }); 42 | 43 | 44 | SubscriptionPackageLevelSchema.index({"subscription_id": 1, "package_level_id": 1}, {"unique": true}); 45 | //SubscriptionPackageLevelSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 46 | 47 | module.exports = mongoose.model("SubscriptionPackageLevel", SubscriptionPackageLevelSchema); 48 | -------------------------------------------------------------------------------- /models/Category.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var CategorySchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true, 14 | "trim": true 15 | }, 16 | "slug": { 17 | "type": String, 18 | "required": true, 19 | "unique": true , 20 | "index": true 21 | }, 22 | "is_active": { 23 | "type": Boolean, 24 | "default": false, 25 | "index": true 26 | }, 27 | "parent_id": { 28 | "type": ObjectId, 29 | "required": false, 30 | "index": true, 31 | "ref": "Category" 32 | }, 33 | "timestamp_added": { 34 | "type": Date, 35 | "default": Date.now, 36 | "required": false, 37 | "index": true 38 | }, 39 | "timestamp_modified": { 40 | "type": Date, 41 | "default": Date.now, 42 | "required": false, 43 | "index": true 44 | }, 45 | "timestamp_deactivated": { 46 | "type": Date, 47 | "required": false, 48 | "index": true 49 | } 50 | }, { 51 | "autoIndex": false 52 | }); 53 | 54 | //CategorySchema.index({"name": 1, "slug": 1, "parent_id": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 55 | module.exports = mongoose.model("Category", CategorySchema); 56 | -------------------------------------------------------------------------------- /models/UserAcl.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var UserAclSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "user_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "User" 15 | }, 16 | "resource_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "AclResource" 21 | }, 22 | "permission_id": { 23 | "type": ObjectId, 24 | "required": true, 25 | "index": true, 26 | "ref": "AclPermission" 27 | }, 28 | "timestamp_added": { 29 | "type": Date, 30 | "default": Date.now, 31 | "required": false, 32 | "index": true 33 | }, 34 | "timestamp_modified": { 35 | "type": Date, 36 | "default": Date.now, 37 | "required": false, 38 | "index": true 39 | }, 40 | "timestamp_deactivated": { 41 | "type": Date, 42 | "required": false, 43 | "index": true 44 | } 45 | }, { 46 | "autoIndex": false 47 | }); 48 | 49 | UserAclSchema.index({ 50 | "user_id": 1, 51 | "resource_id": 1, 52 | "permission_id": 1 53 | }, {"unique": true}); 54 | //UserAclSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 55 | 56 | module.exports = mongoose.model("UserAcl", UserAclSchema); 57 | -------------------------------------------------------------------------------- /models/Notify.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var NotifySchema = new Schema({ 6 | 7 | "id": { 8 | "type": ObjectId, 9 | "index": true 10 | }, 11 | "name": { 12 | "type": String, 13 | "required": false 14 | }, 15 | "email": { 16 | "type": String, 17 | "required": true, 18 | "index": true 19 | }, 20 | "item_id": { 21 | "type": ObjectId, 22 | "required": false, 23 | "index": true, 24 | "ref": "Item" 25 | }, 26 | "is_mailing_list": { 27 | "type": Boolean, 28 | "default": false, 29 | "required": false, 30 | "index": true 31 | }, 32 | "is_active": { 33 | "type": Boolean, 34 | "default": true, 35 | "required": true, 36 | "index": true 37 | }, 38 | "timestamp_added": { 39 | "type": Date, 40 | "default": Date.now, 41 | "required": false, 42 | "index": true 43 | }, 44 | "timestamp_modified": { 45 | "type": Date, 46 | "default": Date.now, 47 | "required": false, 48 | "index": true 49 | }, 50 | "timestamp_deactivated": { 51 | "type": Date, 52 | "required": false, 53 | "index": true 54 | } 55 | }, { 56 | "autoIndex": false 57 | }); 58 | 59 | NotifySchema.index({"email": 1}, {"unique": true}); 60 | 61 | module.exports = mongoose.model("Notify", NotifySchema); -------------------------------------------------------------------------------- /models/UserProfile.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var UserProfileSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "user_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "ref": "User" 14 | }, 15 | "about_me": { 16 | "type": String, 17 | "required": false 18 | }, 19 | "facebook_handle": { 20 | "type": String, 21 | "required": false, 22 | "index": true 23 | }, 24 | "twitter_handle": { 25 | "type": String, 26 | "required": false, 27 | "index": true 28 | }, 29 | "timestamp_added": { 30 | "type": Date, 31 | "default": Date.now, 32 | "required": false, 33 | "index": true 34 | }, 35 | "timestamp_modified": { 36 | "type": Date, 37 | "default": Date.now, 38 | "required": false, 39 | "index": true 40 | }, 41 | "timestamp_deactivated": { 42 | "type": Date, 43 | "required": false, 44 | "index": true 45 | } 46 | }, { 47 | "autoIndex": false 48 | }); 49 | 50 | UserProfileSchema.index({ 51 | "user_id": 1 52 | }, {"unique": true}); 53 | //UserProfileSchema.index({ 54 | // "facebook_handle": 1, "twitter_handle": 1, 55 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 56 | //}); 57 | 58 | module.exports = mongoose.model("UserProfile", UserProfileSchema); 59 | -------------------------------------------------------------------------------- /test/all.js: -------------------------------------------------------------------------------- 1 | /** 2 | * acl-permission 3 | */ 4 | //exports['test acl-permission'] = require('./test-acl-permission'); 5 | 6 | /** 7 | * acl-resource 8 | */ 9 | //exports['test /acl-resource'] = require('./test-acl-resource'); 10 | 11 | /** 12 | * acl-role 13 | */ 14 | 15 | /** 16 | * category 17 | */ 18 | 19 | /** 20 | * comment 21 | */ 22 | 23 | /** 24 | * coupon 25 | */ 26 | 27 | /** 28 | * currency 29 | */ 30 | 31 | /** 32 | * folder 33 | */ 34 | 35 | /** 36 | * item 37 | */ 38 | 39 | /** 40 | * item-coupon 41 | */ 42 | 43 | /** 44 | * item-property 45 | */ 46 | 47 | /** 48 | * merchant-gateway 49 | */ 50 | 51 | /** 52 | * order 53 | */ 54 | 55 | /** 56 | * order-coupon 57 | */ 58 | 59 | /** 60 | * order-item 61 | */ 62 | 63 | /** 64 | * order-service 65 | */ 66 | 67 | /** 68 | * order-status-history 69 | */ 70 | 71 | /** 72 | * order-subscription 73 | */ 74 | 75 | /** 76 | * package-level 77 | */ 78 | 79 | /** 80 | * page 81 | */ 82 | 83 | /** 84 | * property 85 | */ 86 | 87 | /** 88 | * property-type 89 | */ 90 | 91 | /** 92 | * property-value 93 | */ 94 | 95 | /** 96 | * service 97 | */ 98 | 99 | /** 100 | * service-coupon 101 | */ 102 | 103 | /** 104 | * service-package-level 105 | */ 106 | 107 | /** 108 | * status 109 | */ 110 | 111 | /** 112 | * subscription 113 | */ 114 | 115 | /** 116 | * subscription-coupon 117 | */ 118 | 119 | /** 120 | * subscription-package-level 121 | */ 122 | 123 | /** 124 | * subscription-service 125 | */ 126 | 127 | /** 128 | * user 129 | */ 130 | 131 | /** 132 | * user-acl 133 | */ 134 | 135 | /** 136 | * user-profile 137 | */ 138 | -------------------------------------------------------------------------------- /models/OrderSubscription.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var OrderSubscriptionSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "order_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Order" 15 | }, 16 | "subscription_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Subscription" 21 | }, 22 | "subscription_price": { 23 | "type": Number, 24 | "required": true, 25 | "index": true 26 | }, 27 | "subscription_start_date": { 28 | "type": Date, 29 | "required": true, 30 | "index": true 31 | }, 32 | "subscription_end_date": { 33 | "type": Date, 34 | "required": true, 35 | "index": true 36 | }, 37 | "timestamp_added": { 38 | "type": Date, 39 | "default": Date.now, 40 | "required": false, 41 | "index": true 42 | }, 43 | "timestamp_modified": { 44 | "type": Date, 45 | "default": Date.now, 46 | "required": false, 47 | "index": true 48 | }, 49 | "timestamp_deactivated": { 50 | "type": Date, 51 | "required": false, 52 | "index": true 53 | } 54 | }, { 55 | "autoIndex": false 56 | }); 57 | 58 | OrderSubscriptionSchema.index({ 59 | "order_id": 1, 60 | "subscription_id": 1 61 | }, { 62 | "unique": true 63 | }); 64 | //OrderSubscriptionSchema.index({"timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1}); 65 | 66 | module.exports = mongoose.model("OrderSubscription", OrderSubscriptionSchema); 67 | -------------------------------------------------------------------------------- /models/Page.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var PageSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "folder_id": { 11 | "type": ObjectId, 12 | "required": false, 13 | "index": true, 14 | "ref": "Folder" 15 | }, 16 | "user_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "User" 21 | }, 22 | "title": { 23 | "type": String, 24 | "required": true, 25 | "index": true 26 | }, 27 | "slug": { 28 | "type": String, 29 | "required": true, 30 | "index": true 31 | }, 32 | "is_active": { 33 | "type": Boolean, 34 | "required": true, 35 | "default": false, 36 | "index": true 37 | }, 38 | "excerpt": { 39 | "type": String, 40 | "required": true, 41 | "index": true 42 | }, 43 | "content": { 44 | "type": String, 45 | "required": true 46 | }, 47 | 48 | "timestamp_added": { 49 | "type": Date, 50 | "default": Date.now, 51 | "required": false, 52 | "index": true 53 | }, 54 | "timestamp_modified": { 55 | "type": Date, 56 | "default": Date.now, 57 | "required": false, 58 | "index": true 59 | }, 60 | "timestamp_deactivated": { 61 | "type": Date, 62 | "required": false, 63 | "index": true 64 | } 65 | }, { 66 | "autoIndex": false 67 | }); 68 | 69 | //PageSchema.index({ "folder_id": 1, "user_id": 1, "is_active": 1, "excerpt": 1, "content": 1, "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 }); 70 | PageSchema.index({ "title": 1 }, { "unique": true }); 71 | PageSchema.index({ "slug": 1 }, { "unique": true }); 72 | 73 | module.exports = mongoose.model("Page", PageSchema); 74 | -------------------------------------------------------------------------------- /models/OrderService.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var OrderServiceSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "service_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Service" 15 | }, 16 | "order_id": { 17 | "type": ObjectId, 18 | "required": true, 19 | "index": true, 20 | "ref": "Order" 21 | }, 22 | "price": { 23 | "type": Number, 24 | "required": true, 25 | "index": true 26 | }, 27 | "units": { 28 | "type": Number, 29 | "required": true, 30 | "index": true 31 | }, 32 | 33 | "start_date": { 34 | "type": Date, 35 | "default": Date.now, 36 | "required": true, 37 | "index": true 38 | }, 39 | "end_date": { 40 | "type": Date, 41 | "default": Date.now, 42 | "required": true, 43 | "index": true 44 | }, 45 | "timestamp_added": { 46 | "type": Date, 47 | "default": Date.now, 48 | "required": false, 49 | "index": true 50 | }, 51 | "timestamp_modified": { 52 | "type": Date, 53 | "default": Date.now, 54 | "required": false, 55 | "index": true 56 | }, 57 | "timestamp_deactivated": { 58 | "type": Date, 59 | "required": false, 60 | "index": true 61 | } 62 | }, { 63 | "autoIndex": false 64 | }); 65 | 66 | //OrderServiceSchema.index({ 67 | // "service_id": 1, 68 | // "order_id": 1, 69 | // "price": 1, 70 | // "units": 1, 71 | // "start_date": 1, 72 | // "end_date": 1, 73 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 74 | //}); 75 | OrderServiceSchema.index({ 76 | "service_id": 1, "order_id": 1 77 | }, {"unique": true}); 78 | 79 | module.exports = mongoose.model("OrderService", OrderServiceSchema); 80 | -------------------------------------------------------------------------------- /models/Coupon.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var CouponSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "code": { 11 | "type": String, 12 | "required": true, 13 | "unique": true 14 | }, 15 | "start_date": { 16 | "type": Date, 17 | "required": true, 18 | "index": true 19 | }, 20 | "end_date": { 21 | "type": Date, 22 | "required": false, 23 | "index": true 24 | }, 25 | "is_active": { 26 | "type": Boolean, 27 | "default": false, 28 | "index": true 29 | }, 30 | "item_price": { 31 | "type": Number, 32 | "required": true, 33 | "index": true 34 | }, 35 | "service_price_per_unit": { 36 | "type": Number, 37 | "required": false, 38 | "index": true 39 | }, 40 | "subscription_sign_up_fee": { 41 | "type": Number, 42 | "required": false, 43 | "index": true 44 | }, 45 | "subscription_price_per_unit": { 46 | "type": Number, 47 | "required": false, 48 | "index": true 49 | }, 50 | "timestamp_added": { 51 | "type": Date, 52 | "default": Date.now, 53 | "required": false, 54 | "index": true 55 | }, 56 | "timestamp_modified": { 57 | "type": Date, 58 | "default": Date.now, 59 | "required": false, 60 | "index": true 61 | }, 62 | "timestamp_deactivated": { 63 | "type": Date, 64 | "required": false, 65 | "index": true 66 | } 67 | }, { 68 | "autoIndex": false 69 | }); 70 | 71 | //CouponSchema.index({ 72 | // "code": 1, "start_date": 1, "end_date": 1, "item_price": 1, "service_price_per_unit": 1, 73 | // "subscription_sign_up_fee": 1, "subscription_price_per_unit": 1, "timestamp_added": 1, "timestamp_modified": 1, 74 | // "timestamp_deactivated": 1 75 | //}); 76 | module.exports = mongoose.model("Coupon", CouponSchema); 77 | -------------------------------------------------------------------------------- /models/Service.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var ServiceSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "currency_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Currency" 15 | }, 16 | "requires_subscription": { 17 | "type": Boolean, 18 | "required": true, 19 | "default": false, 20 | "index": true 21 | }, 22 | "name": { 23 | "type": String, 24 | "required": true, 25 | "index": true 26 | }, 27 | "description": { 28 | "type": String, 29 | "required": true 30 | }, 31 | "terms": { 32 | "type": String, 33 | "required": true 34 | }, 35 | "price_per_unit": { 36 | "type": Number, 37 | "required": true, 38 | "index": true 39 | }, 40 | "unit_of_measure": { 41 | "type": String, 42 | "required": true, 43 | "index": true 44 | }, 45 | "unit_amount": { 46 | "type": Number, 47 | "required": true, 48 | "index": true 49 | }, 50 | "is_on_site": { 51 | "type": Boolean, 52 | "required": true, 53 | "default": false, 54 | "index": true 55 | }, 56 | "is_available": { 57 | "type": Boolean, 58 | "required": true, 59 | "default": 0, 60 | "index": true 61 | }, 62 | 63 | "timestamp_added": { 64 | "type": Date, 65 | "default": Date.now, 66 | "required": false, 67 | "index": true 68 | }, 69 | "timestamp_modified": { 70 | "type": Date, 71 | "default": Date.now, 72 | "required": false, 73 | "index": true 74 | }, 75 | "timestamp_deactivated": { 76 | "type": Date, 77 | "required": false, 78 | "index": true 79 | } 80 | }, { 81 | "autoIndex": false 82 | }); 83 | 84 | //ServiceSchema.index({ 85 | // "currency_id": 1, "requires_subscription": 1, "name": 1, "description": 1, "terms": 1, "price_per_unit": 1, 86 | // "unit_of_measure": 1, "unit_amount": 1, "is_on_site": 1, "is_available": 1, 87 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 88 | //}); 89 | ServiceSchema.index({"name": 1}, {"unique": true}); 90 | 91 | module.exports = mongoose.model("Service", ServiceSchema); 92 | -------------------------------------------------------------------------------- /models/Subscription.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var SubscriptionSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "currency_id": { 11 | "type": ObjectId, 12 | "required": true, 13 | "index": true, 14 | "ref": "Currency" 15 | }, 16 | "name": { 17 | "type": String, 18 | "required": true, 19 | "index": true 20 | }, 21 | "description": { 22 | "type": String, 23 | "required": true, 24 | "index": true 25 | }, 26 | "terms": { 27 | "type": String, 28 | "required": true 29 | }, 30 | "signup_fee": { 31 | "type": Number, 32 | "required": true, 33 | "index": true 34 | }, 35 | "is_recurring": { 36 | "type": Boolean, 37 | "required": true, 38 | "default": false, 39 | "index": true 40 | }, 41 | "recurs_every_amount": { 42 | "type": Number, 43 | "required": false, 44 | "index": true 45 | }, 46 | "recurs_every_unit": { 47 | "type": String, 48 | "required": false, 49 | "index": true 50 | }, 51 | "recurs_max_amount": { 52 | "type": Number, 53 | "required": false, 54 | "index": true 55 | }, 56 | "price_per_unit": { 57 | "type": Number, 58 | "required": true, 59 | "index": true 60 | }, 61 | "is_available": { 62 | "type": Boolean, 63 | "required": true, 64 | "default": false, 65 | "index": true 66 | }, 67 | "timestamp_added": { 68 | "type": Date, 69 | "default": Date.now, 70 | "required": false, 71 | "index": true 72 | }, 73 | "timestamp_modified": { 74 | "type": Date, 75 | "default": Date.now, 76 | "required": false, 77 | "index": true 78 | }, 79 | "timestamp_deactivated": { 80 | "type": Date, 81 | "required": false, 82 | "index": true 83 | } 84 | }, { 85 | "autoIndex": false 86 | }); 87 | 88 | 89 | //SubscriptionSchema.index({ 90 | // "currency_id": 1, "signup_fee": 1, "is_recurring": 1, "recurs_every_amount": 1, "recurs_every_unit": 1, 91 | // "recurs_max_amount": 1, "price_per_unit": 1, "is_available": 1, 92 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 93 | //}); 94 | SubscriptionSchema.index({ 95 | "name": 1 96 | }, {"unique": true}); 97 | 98 | module.exports = mongoose.model("Subscription", SubscriptionSchema); 99 | -------------------------------------------------------------------------------- /models/User.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId, 4 | bcrypt = require('bcrypt'), 5 | SALT_WORK_FACTOR = 10; 6 | 7 | var UserSchema = new Schema({ 8 | "id": { 9 | "type": ObjectId, 10 | "index": true 11 | }, 12 | "acl_role_id": { 13 | "type": ObjectId, 14 | "required": true, 15 | "index": true, 16 | "ref": "AclRole" 17 | }, 18 | "first_name": { 19 | "type": String, 20 | "required": true, 21 | "index": true 22 | }, 23 | "last_name": { 24 | "type": String, 25 | "required": true, 26 | "index": true 27 | }, 28 | "email": { 29 | "type": String, 30 | "required": true, 31 | "index": true 32 | }, 33 | "handle": { 34 | "type": String, 35 | "required": true, 36 | "index": true 37 | }, 38 | "is_active": { 39 | "type": Boolean, 40 | "default": false, 41 | "index": true 42 | }, 43 | 44 | "password_hash": { 45 | "type": String, 46 | "required": true 47 | }, 48 | "password_is_temporary": { 49 | "type": Boolean, 50 | "required": true, 51 | "default": true, 52 | "index": true 53 | }, 54 | "timestamp_added": { 55 | "type": Date, 56 | "default": Date.now, 57 | "required": false, 58 | "index": true 59 | }, 60 | "timestamp_modified": { 61 | "type": Date, 62 | "default": Date.now, 63 | "required": false, 64 | "index": true 65 | }, 66 | "timestamp_deactivated": { 67 | "type": Date, 68 | "required": false, 69 | "index": true 70 | } 71 | }, { 72 | "autoIndex": false 73 | }); 74 | 75 | UserSchema.pre('save', function(next) { 76 | var user = this; 77 | 78 | // only hash the password if it has been modified (or is new) 79 | if (!user.isModified('password_hash')) return next(); 80 | 81 | // generate a salt 82 | bcrypt.genSalt(SALT_WORK_FACTOR, function(err, salt) { 83 | if (err) return next(err); 84 | 85 | // hash the password using our new salt 86 | bcrypt.hash(user.password_hash, salt, function(err, hash) { 87 | if (err) return next(err); 88 | 89 | // override the cleartext password with the hashed one 90 | user.password_hash = hash; 91 | next(); 92 | }); 93 | }); 94 | }); 95 | 96 | UserSchema.methods.comparePassword = function(candidatePassword, cb) { 97 | bcrypt.compare(candidatePassword, this.password_hash, function(err, isMatch) { 98 | if (err) return cb(err); 99 | cb(null, isMatch); 100 | }); 101 | }; 102 | 103 | //UserSchema.index({ 104 | // "acl_role_id": 1, 105 | // "first_name": 1, 106 | // "last_name": 1, 107 | // "email": 1, 108 | // "handle": 1, 109 | // "is_active": 1, 110 | // "password_hash": 1, 111 | // "password_is_temporary": 1, 112 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 113 | //}); 114 | 115 | UserSchema.index({"email": 1}, {"unique": true}); 116 | UserSchema.index({"handle": 1}, {"unique": true}); 117 | 118 | module.exports = mongoose.model("User", UserSchema); 119 | -------------------------------------------------------------------------------- /models/Order.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var OrderSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "amount_total": { 11 | "type": Number, 12 | "required": true, 13 | "index": true 14 | }, 15 | "order_date": { 16 | "type": Date, 17 | "required": false, 18 | "index": true 19 | }, 20 | "ip": { 21 | "type": String, 22 | "required": true, 23 | "index": true 24 | }, 25 | "email": { 26 | "type": String, 27 | "required": true, 28 | "index": true 29 | }, 30 | "address1": { 31 | "type": String, 32 | "required": true, 33 | "index": true 34 | }, 35 | "address2": { 36 | "type": String, 37 | "required": false, 38 | "index": true 39 | }, 40 | "city": { 41 | "type": String, 42 | "required": true, 43 | "index": true 44 | }, 45 | "state": { 46 | "type": String, 47 | "required": true, 48 | "index": true 49 | }, 50 | "postal_code": { 51 | "type": String, 52 | "required": true, 53 | "index": true 54 | }, 55 | "country": { 56 | "type": String, 57 | "required": true, 58 | "index": true 59 | }, 60 | "phone1": { 61 | "type": String, 62 | "required": false, 63 | "index": true 64 | }, 65 | "phone2": { 66 | "type": String, 67 | "required": false, 68 | "index": true 69 | }, 70 | 71 | "notes": { 72 | "type": String, 73 | "required": false 74 | }, 75 | "creation_user_id": { 76 | "type": ObjectId, 77 | "required": false, 78 | "index": true, 79 | "ref": "User" 80 | }, 81 | "modification_user_id": { 82 | "type": ObjectId, 83 | "required": false, 84 | "index": true 85 | }, 86 | 87 | "currency_id": { 88 | "type": ObjectId, 89 | "required": true, 90 | "index": true 91 | }, 92 | "status_history_id": { 93 | "type": ObjectId, 94 | "required": false, 95 | "index": true 96 | }, 97 | "merchant_gateway_id": { 98 | "type": ObjectId, 99 | "required": false, 100 | "index": true, 101 | "ref": "MerchantGateway" 102 | }, 103 | 104 | "merchant_key": { 105 | "type": String, 106 | "required": true, 107 | "index": true 108 | }, 109 | 110 | "timestamp_added": { 111 | "type": Date, 112 | "default": Date.now, 113 | "required": false, 114 | "index": true 115 | }, 116 | "timestamp_modified": { 117 | "type": Date, 118 | "default": Date.now, 119 | "required": false, 120 | "index": true 121 | }, 122 | "timestamp_deactivated": { 123 | "type": Date, 124 | "required": false, 125 | "index": true 126 | } 127 | }, { 128 | "autoIndex": false 129 | }); 130 | 131 | //OrderSchema.index({ 132 | // "amount_total": 1, 133 | // "order_date": 1, 134 | // "ip": 1, 135 | // "email": 1, 136 | // "address1": 1, 137 | // "address2": 1, 138 | // "city": 1, 139 | // "state": 1, 140 | // "postal_code": 1, 141 | // "phone1": 1, 142 | // "phone2": 1, 143 | // "creation_user_id": 1, 144 | // "modification_user_id": 1, 145 | // "currency_id": 1, 146 | // "status_history_id": 1, 147 | // "merchant_gateway_id": 1, 148 | // "merchant_key": 1, 149 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 150 | //}); 151 | 152 | module.exports = mongoose.model("Order", OrderSchema); 153 | -------------------------------------------------------------------------------- /models/Item.js: -------------------------------------------------------------------------------- 1 | var mongoose = require("mongoose"), 2 | Schema = mongoose.Schema, 3 | ObjectId = Schema.ObjectId; 4 | 5 | var ItemSchema = new Schema({ 6 | "id": { 7 | "type": ObjectId, 8 | "index": true 9 | }, 10 | "name": { 11 | "type": String, 12 | "required": true, 13 | "unique": true 14 | }, 15 | "slug": { 16 | "type": String, 17 | "required": true, 18 | "unique": true 19 | }, 20 | "sku": { 21 | "type": String, 22 | "required": true, 23 | "unique": true 24 | }, 25 | "description": { 26 | "type": String, 27 | "required": true 28 | }, 29 | "price": { 30 | "type": Number, 31 | "required": true, 32 | "index": true 33 | }, 34 | "currency_id": { 35 | "type": ObjectId, 36 | "required": true, 37 | "ref": "Currency" 38 | }, 39 | "category_id": { 40 | "type": ObjectId, 41 | "required": true, 42 | "index": true, 43 | "ref": "Category" 44 | }, 45 | "availability_date": { 46 | "type": Date, 47 | "required": true, 48 | "index": true 49 | }, 50 | "finite_amount_available": { 51 | "type": Number, 52 | "required": false 53 | }, 54 | "finite_unit_of_measure": { 55 | "type": String, 56 | "required": false, 57 | "index": true 58 | }, 59 | "max_purchase_amount": { 60 | "type": Number, 61 | "required": false 62 | }, 63 | "metric_unit_of_measure" : { 64 | "type": String, 65 | "required": false, 66 | "index": true 67 | }, 68 | "metric_width": { 69 | "type": Number, 70 | "required": false, 71 | "index": true 72 | }, 73 | "metric_height": { 74 | "type": Number, 75 | "required": false, 76 | "index": true 77 | }, 78 | "metric_depth": { 79 | "type": Number, 80 | "required": false, 81 | "index": true 82 | }, 83 | "min_purchase_amount": { 84 | "type": Number, 85 | "required": false 86 | }, 87 | "perishable_date": { 88 | "type": Date, 89 | "required": false, 90 | "index": true 91 | }, 92 | "weight": { 93 | "type": Number, 94 | "required": false, 95 | "index": true 96 | }, 97 | "weight_unit_of_measure": { 98 | "type": String, 99 | "required": false, 100 | "index": true 101 | }, 102 | "is_available": { 103 | "type": Boolean, 104 | "default": false, 105 | "required": true, 106 | "index": true 107 | }, 108 | "is_finite": { 109 | "type": Boolean, 110 | "default": false, 111 | "required": true, 112 | "index": true 113 | }, 114 | "is_perishable": { 115 | "type": Boolean, 116 | "default": false, 117 | "required": true, 118 | "index": true 119 | }, 120 | "is_tangible": { 121 | "type": Boolean, 122 | "default": true, 123 | "required": true, 124 | "index": true 125 | }, 126 | "timestamp_added": { 127 | "type": Date, 128 | "default": Date.now, 129 | "required": false, 130 | "index": true 131 | }, 132 | "timestamp_modified": { 133 | "type": Date, 134 | "default": Date.now, 135 | "required": false, 136 | "index": true 137 | }, 138 | "timestamp_deactivated": { 139 | "type": Date, 140 | "required": false, 141 | "index": true 142 | } 143 | }, { 144 | "autoIndex": false 145 | }); 146 | 147 | //ItemSchema.index({ 148 | // "name": 1, "slug": 1, "sku": 1, "price": 1, "currency_id": 1, "category_id": 1, "availability_date": 1, 149 | // "finite_amount_available": 1, "finite_unit_of_measure": 1, "max_purchase_amount": 1, "metric_unit_of_measure": 1, 150 | // "metric_width": 1, "metric_height": 1, "metric_depth": 1, "min_purchase_amount": 1, "perishable_date": 1, 151 | // "weight": 1, "weight_unit_of_measure": 1, "is_available": 1, "is_finite": 1, "is_perishable": 1, "is_tangible": 1, 152 | // "timestamp_added": 1, "timestamp_modified": 1, "timestamp_deactivated": 1 153 | //}); 154 | module.exports = mongoose.model("Item", ItemSchema); 155 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * ZRECore.js - A REST-ful set of commerce related data models. 3 | * @author ZRECommerce 4 | * @license GPL v3 or higher. 5 | */ 6 | 7 | /** 8 | * Module dependencies. 9 | */ 10 | var port = 8080; 11 | var useSSL = false; 12 | var sslCertificatePath = ''; 13 | var sslKeyPath = ''; 14 | var sslCaPath = ''; 15 | var databaseHost = 'localhost'; 16 | var databaseName = 'zrecore'; 17 | var authorizationRequired = false; // Set to false while you add your first User, then set back to true and restart the app. 18 | 19 | var http = require('http') 20 | , path = require('path') 21 | , fs = require('fs') 22 | , restify = require('restify') 23 | , _ = require('underscore'); 24 | 25 | var ZRECORE_DIR = __dirname; 26 | var crud = require(ZRECORE_DIR + '/lib/crud.js'); 27 | 28 | // Load config if found 29 | try { 30 | // Found. Load them. 31 | var config = require(ZRECORE_DIR + '/_config.js') 32 | if (!_.isUndefined(config.port)) port = config.port; 33 | if (!_.isUndefined(config.useSSL)) useSSL = config.useSSL; 34 | if (!_.isUndefined(config.sslCertificatePath)) sslCertificatePath = config.sslCertificatePath; 35 | if (!_.isUndefined(config.sslKeyPath)) sslKeyPath = config.sslKeyPath; 36 | if (!_.isUndefined(config.sslCaPath)) sslCaPath = config.sslCaPath; 37 | if (!_.isUndefined(config.databaseHost)) databaseHost = config.databaseHost; 38 | if (!_.isUndefined(config.databaseName)) databaseName = config.databaseName; 39 | if (!_.isUndefined(config.authorizationRequired)) authorizationRequired = config.authorizationRequired; 40 | 41 | console.log('Loaded config.'); 42 | 43 | } catch (e) { 44 | // Not found. Continue 45 | } 46 | 47 | 48 | var server; 49 | // ...Do we want to enable SSL support? 50 | if ( useSSL == true) { 51 | server = restify.createServer({ 52 | certificate: fs.readFileSync(sslCertificatePath), 53 | key: fs.readFileSync(sslKeyPath), 54 | ca: fs.readFileSync(sslCaPath), 55 | requestCert: true, 56 | rejectUnauthorized: true 57 | }); 58 | } else { 59 | server = restify.createServer({ 60 | 61 | }); 62 | } 63 | // ...Set up our connection to the database. 64 | var mongoose = require("mongoose"); 65 | mongoose.connect('mongodb://' + databaseHost + '/' + databaseName); 66 | 67 | try { 68 | console.log( 'Try to fix mquery issue' ); 69 | 70 | delete mongoose.__proto__.mquery.permissions.count; 71 | console.log( 'mquery fix applied to this instance' ); 72 | } catch (ex) { 73 | console.log( 'Cannot fix count with sort issue from mquery'); 74 | } 75 | 76 | /** 77 | * Set up our REST controllers. 78 | */ 79 | 80 | // ...Enforce API authentication 81 | server.use(restify.fullResponse()); 82 | server.use(restify.bodyParser()); 83 | server.use(restify.queryParser()); 84 | 85 | if (authorizationRequired) { 86 | server.pre(function (req, res, next) { 87 | var api_user = req.header('API-USER'); 88 | var api_key = req.header('API-KEY'); 89 | var api_version = req.header('API-VERSION'); 90 | 91 | if ( _.isUndefined( api_user ) || _.isUndefined(api_key) ) { 92 | 93 | res.send(401, '401 Access Denied'); 94 | } else { 95 | 96 | // ...Attempt to look it up. 97 | var User = require('./models/User.js'); 98 | 99 | var authUser = User.findOne({"handle": api_user}, function (err, doc) { 100 | if (err) { 101 | console.error(err.toString()); 102 | res.send(500, 'Internal server error.'); 103 | } else { 104 | if (doc) { 105 | 106 | doc.comparePassword(api_key, function (err, isMatch) { 107 | if (err || !isMatch) { 108 | res.send(401, '401 Access Denied'); 109 | } else { 110 | // OK! ...Just continue execution. 111 | next(); 112 | } 113 | }); 114 | } else { 115 | // User not found 116 | res.send(401, '401 Access Denied'); 117 | } 118 | } 119 | }); 120 | } 121 | 122 | }); 123 | } 124 | 125 | var routeFiles = fs.readdirSync( ZRECORE_DIR + '/routes'); 126 | var route = ''; 127 | var models = []; 128 | 129 | for (var r = 0; r < routeFiles.length; r++) { 130 | route = path.basename(routeFiles[r], '.js'); 131 | if (route != '') models.push(route); 132 | } 133 | var model = null; 134 | for (var i = 0; i < models.length; i++) { 135 | console.log('...Routing ' + models[i]); 136 | model = require('./routes/' + models[i]); 137 | crud.setUpServer(server, '/' + models[i], model); 138 | } 139 | 140 | /** 141 | * Ok! Let's start the show. 142 | */ 143 | 144 | server.listen(port, function () { 145 | console.log('Server is running on port ' + port); 146 | }); 147 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | zrecore-js 2 | ========== 3 | 4 | ZRECore.js - A RESTful interface to commonly used 'commerce' data models. 5 | 6 | 7 | How to use 8 | ========== 9 | 10 | Use `npm install zrecore` 11 | 12 | 13 | Then open up your main node file (like app.js, or server.js, or whatever), and add the following line: 14 | 15 | ```javascript 16 | var zrecore = require('zrecore'); 17 | ``` 18 | 19 | You can now use HTTP GET/PUT/POST/DELETE methods on the data model end-points (such as /acl-permission or /item) 20 | 21 | You can add (or better yet, sym link) a _config.js to your npm_module/zrecore/ directory. When zrecore is loaded, it will automatically use those settings instead of the default ones. 22 | 23 | Here is a sample _config.js for you to modify. 24 | 25 | ``` 26 | exports.port = 8080; // What port should this instance run on? 27 | exports.useSSL = false; // Do you want to force SSL? (restify 2.0 or greater I think) 28 | exports.sslCertificatePath = ''; // If useSSL is enabled (true), path to .crt file 29 | exports.sslKeyPath = ''; // If useSSL is enabled, path to key file 30 | exports.sslCaPath = ''; // If useSSL is enabled, path to ca or crt file 31 | exports.databaseHost = 'localhost'; // Where is your mongodb at? 32 | exports.databaseName = 'zrecore'; // What is the name of your mongo database 33 | 34 | // Set this to true once you have an User document in your mongo database to 35 | // avoid unauthorized access of your RESTful end-points! 36 | // 37 | // If set to true, you must set the following headers with your 38 | // RESTful requests: 39 | // 40 | // API-USER: the_user_name 41 | // API-KEY: the_user_password 42 | // API-VERSION: 1.0 43 | // 44 | // (The API-VERSION header is reserved for future use) 45 | exports.authorizationRequired = false; // Require valid User credentials to access this instance? 46 | 47 | ``` 48 | 49 | See the package.json file for dependencies. The full list of data model enpoints are available at http://www.zrecore.com 50 | 51 | How are data models related to each other? 52 | ========== 53 | Our basic groups of models are organized in a straight-forward and simple manner (modify as you see fit). The idea is to think of the most 54 | commonly used features, and provide a starting point with a basic set of data models: 55 | 56 | * AclPermission - A list of valid ACL Permissions, such as 'allow', 'deny', or something like 'create', 'read', 'update', 'delete'. An access control list associates a user with a resource, and (according to the user's role) specifies what permissions a user has. 57 | * AclResource - A list of things that we consider a resource, such as '/foo/some-page', or 'Some object'. 58 | * AclRole - A list of roles a user can have, such as 'editor', 'administrator', 'guest', etc... 59 | * Folder - Just like a real-life folder, this is used to organize/group pages and sub-folders. 60 | * Page - A page is a page ...is a page. This just holds content we would like to make viewable out at some point. 61 | * Item - As in, items for sale, or an item for rent. Something tangible we would like to offer, or perhaps something intangible, such as a software/media download. 62 | * ItemCoupon - A list of coupons that are available for a specific item. 63 | * ItemProperty - A list of additional properties that are associated with a specific item, such as "shoe sizes", or "available colors", etc. See the Property models below. 64 | * MerchantGateway - A list of merchant gateways our application will use. This is solely a list, you should implement your own usage of merchant gateways however you see fit, and simply use this list to keep track of what merchant gateways you use. 65 | * Order - A list of orders. An order simply contains some basic information about a sale, including items purchased, sale date, sale totals, services purchased, subscriptions subscribed to, etc... 66 | * OrderCoupon - A list of coupons that were applied to a specific order. This has fields to keep track of what coupon values were used, so that if a specific coupon is updated in the future, we still have an immutable historical reference. 67 | * OrderItem - A list of items that were purchased under a specific order. 68 | * OrderService - A list of services that were purchased under a specific order. 69 | * OrderStatusHistory - A historical list of status changes made to a specific order record, such as changing from 'placed' to 'pending', then to 'shipped', or whatever status you have defined in the 'Status' list of records. 70 | * OrderSubscription - A list of subscriptions associated with a specific order. 71 | * PackageLevel - This is associated with the Subscription and Service data models. Subscriptions and services can offer multiple packages, sometimes in order of most basic to most full featured. The PackageLevel model simply lists what these package levels are. 72 | * Property - A generic list of extra properties we can associate with an Item data model object, such as 'shoe sizes', or 't-shirt color', etc... 73 | * PropertyType - A list of available 'types' we can assign to our Property objects. 74 | * PropertyValue - A list of available value(s) a specific PropertyType model can have. 75 | * Service - A list of services offered for sale, such as 'Tax consultation', or 'Landscaping', etc... 76 | * ServiceCoupon - A list of coupons available to a specific service. 77 | * ServicePackageLevel - A list of package levels available to a specific service. 78 | * Status - A list to help define what status an Order may have, such as 'pending', 'sold', 'rma begin', 'lost in space', or whatever you think are valid order history statuses. 79 | * Subscription - A list of available subscriptions you offer. 80 | * SubscriptionCoupon - A list of coupons available for a specific subscription. 81 | * SubscriptionPackageLevel - A list of package levels available for a specific subscription. 82 | * SubscriptionService - A list of service(s) available as part of a specific subscription. Kind of like how you can sign up something such as a gym membership subscription, and receive personal training, or a 10 days of kick-boxing lessons (as a service, not a punching bag). 83 | * User - A list of users that may access your application. This is usually used in conjunction with ACL data models to define who can (or can't) access certain resources, according to what permissions a user's role has on a resource. 84 | * UserAcl - A list defining what role is associated with a specific user, along with resources and permissions. 85 | * UserProfile - This is just a list containing common user 'profile' properties, such as 'twitter handle', or 'about me', etc. 86 | 87 | A complete list of related resources can be viewed at http://www.zrecore.com/ 88 | -------------------------------------------------------------------------------- /lib/crud.js: -------------------------------------------------------------------------------- 1 | var _ = require('underscore'); 2 | var restify = require('restify'); 3 | 4 | module.exports.list = function (mModel, req, res, next) { 5 | 6 | var searchQuery = !_.isUndefined(req.header('API-QUERY')) ? JSON.parse(req.header('API-QUERY')) : null; 7 | var populate = !_.isUndefined(req.header('API-POPULATE')) ? req.header('API-POPULATE') : null; 8 | var limit = !_.isUndefined(req.header('API-LIMIT')) && req.header('API-LIMIT') ? req.header('API-LIMIT') : null; 9 | var skip = !_.isUndefined(req.header('API-SKIP')) && req.header('API-SKIP') ? req.header('API-SKIP') : null; 10 | var sort = !_.isUndefined(req.header('API-SORT')) ? req.header('API-SORT') : null; 11 | var query; 12 | 13 | try { 14 | populate = JSON.parse(populate); 15 | } catch (e) { 16 | // Nope, not JSON. 17 | } 18 | 19 | if (!_.isNull(searchQuery) && searchQuery != '') { 20 | if (_.isObject(searchQuery)) { 21 | if (_.has(searchQuery, 'query') && _.has(searchQuery, 'fields')) { 22 | query = mModel.find(searchQuery.query, searchQuery.fields); 23 | } else if(_.has(searchQuery, 'query')) { 24 | query = mModel.find(searchQuery.query); 25 | } else { 26 | query = mModel.find(searchQuery); 27 | } 28 | 29 | if (_.has(searchQuery, 'sort')) { 30 | query = query.sort(searchQuery.sort); 31 | } 32 | } else { 33 | query = mModel.find(searchQuery); 34 | } 35 | } else { 36 | query = mModel.find(); 37 | } 38 | 39 | 40 | if (!_.isNull(populate)) { 41 | if (_.isObject(populate)) { 42 | if (_.has(populate, 'document') && _.has(populate, 'fields')) { 43 | query.populate(populate.document, populate.fields); 44 | } else if (_.has(populate, 'document')) { 45 | query.populate(populate.document); 46 | } else if (Array.isArray(populate)) { 47 | for(var i = 0; i < populate.length; i++) { 48 | query.populate(populate[i]); 49 | } 50 | } else { 51 | query.populate(populate); 52 | } 53 | } else { 54 | query.populate(populate); 55 | } 56 | } 57 | if (!_.isNull(skip)) query.skip(skip); 58 | if (!_.isNull(limit) && limit != '') query.limit(limit); 59 | if (!_.isNull(sort)) query.sort(sort); 60 | 61 | query.exec(function (err, records) { 62 | if (err) { 63 | res.send({ 64 | result: 'error', 65 | message: err.toString() 66 | }); 67 | } else { 68 | query.count(function (err, cnt) { 69 | res.send({ 70 | result: 'ok', 71 | pagination: { 72 | count: cnt, 73 | limit: limit, 74 | skip: skip, 75 | sort: sort, 76 | query: searchQuery, 77 | populate: populate 78 | }, 79 | data: records 80 | }); 81 | }); 82 | } 83 | }); 84 | 85 | return next; 86 | }; 87 | 88 | module.exports.get = function (mModel, req, res, next) { 89 | var id = !_.isUndefined(req.params.id) ? req.params.id : null; 90 | 91 | mModel.findById(id, function (err, records) { 92 | 93 | if (err) { 94 | res.send({ 95 | result: 'error', 96 | message: err.toString() 97 | }); 98 | } else { 99 | res.send({ 100 | result: 'ok', 101 | data: records 102 | }); 103 | } 104 | }); 105 | 106 | return next; 107 | }; 108 | 109 | /** 110 | * Do not provide the _id property in the data. Only supply the id value at the end of the URL. 111 | * 112 | * @param mModel 113 | * @param req 114 | * @param res 115 | * @param next 116 | * @returns {*} 117 | */ 118 | module.exports.put = function (mModel, req, res, next) { 119 | var id = !_.isUndefined(req.params.id) ? req.params.id : null; 120 | 121 | // Update only. 122 | if (id) { 123 | var data = req.params; 124 | delete data.id; 125 | 126 | mModel.findByIdAndUpdate(id, {$set: data}, function (err, record) { 127 | if (err) { 128 | res.send({ 129 | result: 'error', 130 | message: err.toString() 131 | }); 132 | } else { 133 | res.send({ 134 | result: 'ok', 135 | data: record, 136 | message: 'Update complete' 137 | }); 138 | } 139 | }); 140 | } 141 | 142 | return next; 143 | } 144 | /** 145 | * Do not provide the _id property in the data. Only supply the id value at the end of the URL. 146 | * @param mModel 147 | * @param req 148 | * @param res 149 | * @param next 150 | * @returns {*} 151 | */ 152 | module.exports.post = function (mModel, req, res, next) { 153 | var id = !_.isUndefined(req.params.id) ? req.params.id : null; 154 | var data = req.params; 155 | 156 | if (id) { 157 | delete data.id; 158 | 159 | // Update 160 | mModel.findByIdAndUpdate(id, {$set: data}, function (err, record) { 161 | 162 | if (err) { 163 | res.send({ 164 | result: 'error', 165 | message: err.toString() 166 | }); 167 | } else { 168 | res.send({ 169 | result: 'ok', 170 | data: record, 171 | message: 'Update complete' 172 | }); 173 | } 174 | }); 175 | 176 | } else { 177 | // Create 178 | var newModel = new mModel(data); 179 | newModel.save(function (err, m) { 180 | 181 | if (err) { 182 | res.send({ 183 | result: 'error', 184 | message: err.toString() 185 | }); 186 | } else { 187 | res.send({ 188 | result: 'ok', 189 | data: m, 190 | message: 'Create', 191 | err: err 192 | }); 193 | } 194 | }); 195 | } 196 | 197 | return next; 198 | } 199 | 200 | module.exports.del = function (mModel, req, res, next) { 201 | var id = !_.isUndefined(req.params.id) ? req.params.id : (!_.isUndefined(req.params._id) ? req.params._id : null); 202 | 203 | if (id) { 204 | // Delete 205 | mModel.findByIdAndRemove(id, function (err, record) { 206 | 207 | res.send({ 208 | result: 'ok', 209 | message: 'Deleted.' 210 | }); 211 | }); 212 | } 213 | 214 | return next; 215 | } 216 | 217 | module.exports.setUpServer = function(server, routeURI, route) { 218 | server.get(routeURI, route.list); 219 | server.get(routeURI + '/:id', route.get); 220 | 221 | server.put(routeURI + '/:id', route.put); 222 | server.post(routeURI + '/', route.post); 223 | server.post(routeURI + '/:id', route.post); 224 | server.del(routeURI + '/:id', route.del); 225 | } -------------------------------------------------------------------------------- /public/bootstrap-2.3.1/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.3.1 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:inherit!important}.hidden-print{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} 10 | -------------------------------------------------------------------------------- /public/bootstrap-2.3.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap.js by @fat & @mdo 3 | * Copyright 2012 Twitter, Inc. 4 | * http://www.apache.org/licenses/LICENSE-2.0.txt 5 | */ 6 | !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}};var n=e.fn.carousel;e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.collapse.defaults,n),this.options.parent&&(this.$parent=e(this.options.parent)),this.options.toggle&&this.toggle()};t.prototype={constructor:t,dimension:function(){var e=this.$element.hasClass("width");return e?"width":"height"},show:function(){var t,n,r,i;if(this.transitioning||this.$element.hasClass("in"))return;t=this.dimension(),n=e.camelCase(["scroll",t].join("-")),r=this.$parent&&this.$parent.find("> .accordion-group > .in");if(r&&r.length){i=r.data("collapse");if(i&&i.transitioning)return;r.collapse("hide"),i||r.data("collapse",null)}this.$element[t](0),this.transition("addClass",e.Event("show"),"shown"),e.support.transition&&this.$element[t](this.$element[0][n])},hide:function(){var t;if(this.transitioning||!this.$element.hasClass("in"))return;t=this.dimension(),this.reset(this.$element[t]()),this.transition("removeClass",e.Event("hide"),"hidden"),this.$element[t](0)},reset:function(e){var t=this.dimension();return this.$element.removeClass("collapse")[t](e||"auto")[0].offsetWidth,this.$element[e!==null?"addClass":"removeClass"]("collapse"),this},transition:function(t,n,r){var i=this,s=function(){n.type=="show"&&i.reset(),i.transitioning=0,i.$element.trigger(r)};this.$element.trigger(n);if(n.isDefaultPrevented())return;this.transitioning=1,this.$element[t]("in"),e.support.transition&&this.$element.hasClass("collapse")?this.$element.one(e.support.transition.end,s):s()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var n=e.fn.collapse;e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=e.extend({},e.fn.collapse.defaults,r.data(),typeof n=="object"&&n);i||r.data("collapse",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.collapse.defaults={toggle:!0},e.fn.collapse.Constructor=t,e.fn.collapse.noConflict=function(){return e.fn.collapse=n,this},e(document).on("click.collapse.data-api","[data-toggle=collapse]",function(t){var n=e(this),r,i=n.attr("data-target")||t.preventDefault()||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,""),s=e(i).data("collapse")?"toggle":n.data();n[e(i).hasClass("in")?"addClass":"removeClass"]("collapsed"),e(i).collapse(s)})}(window.jQuery),!function(e){"use strict";function r(){e(t).each(function(){i(e(this)).removeClass("open")})}function i(t){var n=t.attr("data-target"),r;n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=n&&e(n);if(!r||!r.length)r=t.parent();return r}var t="[data-toggle=dropdown]",n=function(t){var n=e(t).on("click.dropdown.data-api",this.toggle);e("html").on("click.dropdown.data-api",function(){n.parent().removeClass("open")})};n.prototype={constructor:n,toggle:function(t){var n=e(this),s,o;if(n.is(".disabled, :disabled"))return;return s=i(n),o=s.hasClass("open"),r(),o||s.toggleClass("open"),n.focus(),!1},keydown:function(n){var r,s,o,u,a,f;if(!/(38|40|27)/.test(n.keyCode))return;r=e(this),n.preventDefault(),n.stopPropagation();if(r.is(".disabled, :disabled"))return;u=i(r),a=u.hasClass("open");if(!a||a&&n.keyCode==27)return n.which==27&&u.find(t).focus(),r.click();s=e("[role=menu] li:not(.divider):visible a",u);if(!s.length)return;f=s.index(s.filter(":focus")),n.keyCode==38&&f>0&&f--,n.keyCode==40&&f').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?e.proxy(this.$element[0].focus,this.$element[0]):e.proxy(this.hide,this)),i&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in");if(!t)return;i?this.$backdrop.one(e.support.transition.end,t):t()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),e.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(e.support.transition.end,t):t()):t&&t()}};var n=e.fn.modal;e.fn.modal=function(n){return this.each(function(){var r=e(this),i=r.data("modal"),s=e.extend({},e.fn.modal.defaults,r.data(),typeof n=="object"&&n);i||r.data("modal",i=new t(this,s)),typeof n=="string"?i[n]():s.show&&i.show()})},e.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},e.fn.modal.Constructor=t,e.fn.modal.noConflict=function(){return e.fn.modal=n,this},e(document).on("click.modal.data-api",'[data-toggle="modal"]',function(t){var n=e(this),r=n.attr("href"),i=e(n.attr("data-target")||r&&r.replace(/.*(?=#[^\s]+$)/,"")),s=i.data("modal")?"toggle":e.extend({remote:!/#/.test(r)&&r},i.data(),n.data());t.preventDefault(),i.modal(s).one("hide",function(){n.focus()})})}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("tooltip",e,t)};t.prototype={constructor:t,init:function(t,n,r){var i,s,o,u,a;this.type=t,this.$element=e(n),this.options=this.getOptions(r),this.enabled=!0,o=this.options.trigger.split(" ");for(a=o.length;a--;)u=o[a],u=="click"?this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this)):u!="manual"&&(i=u=="hover"?"mouseenter":"focus",s=u=="hover"?"mouseleave":"blur",this.$element.on(i+"."+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,e.proxy(this.leave,this)));this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(t){return t=e.extend({},e.fn[this.type].defaults,this.$element.data(),t),t.delay&&typeof t.delay=="number"&&(t.delay={show:t.delay,hide:t.delay}),t},enter:function(t){var n=e.fn[this.type].defaults,r={},i;this._options&&e.each(this._options,function(e,t){n[e]!=t&&(r[e]=t)},this),i=e(t.currentTarget)[this.type](r).data(this.type);if(!i.options.delay||!i.options.delay.show)return i.show();clearTimeout(this.timeout),i.hoverState="in",this.timeout=setTimeout(function(){i.hoverState=="in"&&i.show()},i.options.delay.show)},leave:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!n.options.delay||!n.options.delay.hide)return n.hide();n.hoverState="out",this.timeout=setTimeout(function(){n.hoverState=="out"&&n.hide()},n.options.delay.hide)},show:function(){var t,n,r,i,s,o,u=e.Event("show");if(this.hasContent()&&this.enabled){this.$element.trigger(u);if(u.isDefaultPrevented())return;t=this.tip(),this.setContent(),this.options.animation&&t.addClass("fade"),s=typeof this.options.placement=="function"?this.options.placement.call(this,t[0],this.$element[0]):this.options.placement,t.detach().css({top:0,left:0,display:"block"}),this.options.container?t.appendTo(this.options.container):t.insertAfter(this.$element),n=this.getPosition(),r=t[0].offsetWidth,i=t[0].offsetHeight;switch(s){case"bottom":o={top:n.top+n.height,left:n.left+n.width/2-r/2};break;case"top":o={top:n.top-i,left:n.left+n.width/2-r/2};break;case"left":o={top:n.top+n.height/2-i/2,left:n.left-r};break;case"right":o={top:n.top+n.height/2-i/2,left:n.left+n.width}}this.applyPlacement(o,s),this.$element.trigger("shown")}},applyPlacement:function(e,t){var n=this.tip(),r=n[0].offsetWidth,i=n[0].offsetHeight,s,o,u,a;n.offset(e).addClass(t).addClass("in"),s=n[0].offsetWidth,o=n[0].offsetHeight,t=="top"&&o!=i&&(e.top=e.top+i-o,a=!0),t=="bottom"||t=="top"?(u=0,e.left<0&&(u=e.left*-2,e.left=0,n.offset(e),s=n[0].offsetWidth,o=n[0].offsetHeight),this.replaceArrow(u-r+s,s,"left")):this.replaceArrow(o-i,o,"top"),a&&n.offset(e)},replaceArrow:function(e,t,n){this.arrow().css(n,e?50*(1-e/t)+"%":"")},setContent:function(){var e=this.tip(),t=this.getTitle();e.find(".tooltip-inner")[this.options.html?"html":"text"](t),e.removeClass("fade in top bottom left right")},hide:function(){function i(){var t=setTimeout(function(){n.off(e.support.transition.end).detach()},500);n.one(e.support.transition.end,function(){clearTimeout(t),n.detach()})}var t=this,n=this.tip(),r=e.Event("hide");this.$element.trigger(r);if(r.isDefaultPrevented())return;return n.removeClass("in"),e.support.transition&&this.$tip.hasClass("fade")?i():n.detach(),this.$element.trigger("hidden"),this},fixTitle:function(){var e=this.$element;(e.attr("title")||typeof e.attr("data-original-title")!="string")&&e.attr("data-original-title",e.attr("title")||"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var t=this.$element[0];return e.extend({},typeof t.getBoundingClientRect=="function"?t.getBoundingClientRect():{width:t.offsetWidth,height:t.offsetHeight},this.$element.offset())},getTitle:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-original-title")||(typeof n.title=="function"?n.title.call(t[0]):n.title),e},tip:function(){return this.$tip=this.$tip||e(this.options.template)},arrow:function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(t){var n=t?e(t.currentTarget)[this.type](this._options).data(this.type):this;n.tip().hasClass("in")?n.hide():n.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var n=e.fn.tooltip;e.fn.tooltip=function(n){return this.each(function(){var r=e(this),i=r.data("tooltip"),s=typeof n=="object"&&n;i||r.data("tooltip",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.tooltip.Constructor=t,e.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},e.fn.tooltip.noConflict=function(){return e.fn.tooltip=n,this}}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("popover",e,t)};t.prototype=e.extend({},e.fn.tooltip.Constructor.prototype,{constructor:t,setContent:function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();e.find(".popover-title")[this.options.html?"html":"text"](t),e.find(".popover-content")[this.options.html?"html":"text"](n),e.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var e,t=this.$element,n=this.options;return e=(typeof n.content=="function"?n.content.call(t[0]):n.content)||t.attr("data-content"),e},tip:function(){return this.$tip||(this.$tip=e(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var n=e.fn.popover;e.fn.popover=function(n){return this.each(function(){var r=e(this),i=r.data("popover"),s=typeof n=="object"&&n;i||r.data("popover",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.popover.Constructor=t,e.fn.popover.defaults=e.extend({},e.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'

'}),e.fn.popover.noConflict=function(){return e.fn.popover=n,this}}(window.jQuery),!function(e){"use strict";function t(t,n){var r=e.proxy(this.process,this),i=e(t).is("body")?e(window):e(t),s;this.options=e.extend({},e.fn.scrollspy.defaults,n),this.$scrollElement=i.on("scroll.scroll-spy.data-api",r),this.selector=(this.options.target||(s=e(t).attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=e("body"),this.refresh(),this.process()}t.prototype={constructor:t,refresh:function(){var t=this,n;this.offsets=e([]),this.targets=e([]),n=this.$body.find(this.selector).map(function(){var n=e(this),r=n.data("target")||n.attr("href"),i=/^#\w/.test(r)&&e(r);return i&&i.length&&[[i.position().top+(!e.isWindow(t.$scrollElement.get(0))&&t.$scrollElement.scrollTop()),r]]||null}).sort(function(e,t){return e[0]-t[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},process:function(){var e=this.$scrollElement.scrollTop()+this.options.offset,t=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,n=t-this.$scrollElement.height(),r=this.offsets,i=this.targets,s=this.activeTarget,o;if(e>=n)return s!=(o=i.last()[0])&&this.activate(o);for(o=r.length;o--;)s!=i[o]&&e>=r[o]&&(!r[o+1]||e<=r[o+1])&&this.activate(i[o])},activate:function(t){var n,r;this.activeTarget=t,e(this.selector).parent(".active").removeClass("active"),r=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',n=e(r).parent("li").addClass("active"),n.parent(".dropdown-menu").length&&(n=n.closest("li.dropdown").addClass("active")),n.trigger("activate")}};var n=e.fn.scrollspy;e.fn.scrollspy=function(n){return this.each(function(){var r=e(this),i=r.data("scrollspy"),s=typeof n=="object"&&n;i||r.data("scrollspy",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.scrollspy.Constructor=t,e.fn.scrollspy.defaults={offset:10},e.fn.scrollspy.noConflict=function(){return e.fn.scrollspy=n,this},e(window).on("load",function(){e('[data-spy="scroll"]').each(function(){var t=e(this);t.scrollspy(t.data())})})}(window.jQuery),!function(e){"use strict";var t=function(t){this.element=e(t)};t.prototype={constructor:t,show:function(){var t=this.element,n=t.closest("ul:not(.dropdown-menu)"),r=t.attr("data-target"),i,s,o;r||(r=t.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));if(t.parent("li").hasClass("active"))return;i=n.find(".active:last a")[0],o=e.Event("show",{relatedTarget:i}),t.trigger(o);if(o.isDefaultPrevented())return;s=e(r),this.activate(t.parent("li"),n),this.activate(s,s.parent(),function(){t.trigger({type:"shown",relatedTarget:i})})},activate:function(t,n,r){function o(){i.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),t.addClass("active"),s?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu")&&t.closest("li.dropdown").addClass("active"),r&&r()}var i=n.find("> .active"),s=r&&e.support.transition&&i.hasClass("fade");s?i.one(e.support.transition.end,o):o(),i.removeClass("in")}};var n=e.fn.tab;e.fn.tab=function(n){return this.each(function(){var r=e(this),i=r.data("tab");i||r.data("tab",i=new t(this)),typeof n=="string"&&i[n]()})},e.fn.tab.Constructor=t,e.fn.tab.noConflict=function(){return e.fn.tab=n,this},e(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(t){t.preventDefault(),e(this).tab("show")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.typeahead.defaults,n),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=e(this.options.menu),this.shown=!1,this.listen()};t.prototype={constructor:t,select:function(){var e=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(e)).change(),this.hide()},updater:function(e){return e},show:function(){var t=e.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:t.top+t.height,left:t.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(t){var n;return this.query=this.$element.val(),!this.query||this.query.length"+t+""})},render:function(t){var n=this;return t=e(t).map(function(t,r){return t=e(n.options.item).attr("data-value",r),t.find("a").html(n.highlighter(r)),t[0]}),t.first().addClass("active"),this.$menu.html(t),this},next:function(t){var n=this.$menu.find(".active").removeClass("active"),r=n.next();r.length||(r=e(this.$menu.find("li")[0])),r.addClass("active")},prev:function(e){var t=this.$menu.find(".active").removeClass("active"),n=t.prev();n.length||(n=this.$menu.find("li").last()),n.addClass("active")},listen:function(){this.$element.on("focus",e.proxy(this.focus,this)).on("blur",e.proxy(this.blur,this)).on("keypress",e.proxy(this.keypress,this)).on("keyup",e.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",e.proxy(this.keydown,this)),this.$menu.on("click",e.proxy(this.click,this)).on("mouseenter","li",e.proxy(this.mouseenter,this)).on("mouseleave","li",e.proxy(this.mouseleave,this))},eventSupported:function(e){var t=e in this.$element;return t||(this.$element.setAttribute(e,"return;"),t=typeof this.$element[e]=="function"),t},move:function(e){if(!this.shown)return;switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()},keydown:function(t){this.suppressKeyPressRepeat=~e.inArray(t.keyCode,[40,38,9,13,27]),this.move(t)},keypress:function(e){if(this.suppressKeyPressRepeat)return;this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},focus:function(e){this.focused=!0},blur:function(e){this.focused=!1,!this.mousedover&&this.shown&&this.hide()},click:function(e){e.stopPropagation(),e.preventDefault(),this.select(),this.$element.focus()},mouseenter:function(t){this.mousedover=!0,this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")},mouseleave:function(e){this.mousedover=!1,!this.focused&&this.shown&&this.hide()}};var n=e.fn.typeahead;e.fn.typeahead=function(n){return this.each(function(){var r=e(this),i=r.data("typeahead"),s=typeof n=="object"&&n;i||r.data("typeahead",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.typeahead.defaults={source:[],items:8,menu:'',item:'
  • ',minLength:1},e.fn.typeahead.Constructor=t,e.fn.typeahead.noConflict=function(){return e.fn.typeahead=n,this},e(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;n.typeahead(n.data())})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=e.extend({},e.fn.affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,this)).on("click.affix.data-api",e.proxy(function(){setTimeout(e.proxy(this.checkPosition,this),1)},this)),this.$element=e(t),this.checkPosition()};t.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var t=e(document).height(),n=this.$window.scrollTop(),r=this.$element.offset(),i=this.options.offset,s=i.bottom,o=i.top,u="affix affix-top affix-bottom",a;typeof i!="object"&&(s=o=i),typeof o=="function"&&(o=i.top()),typeof s=="function"&&(s=i.bottom()),a=this.unpin!=null&&n+this.unpin<=r.top?!1:s!=null&&r.top+this.$element.height()>=t-s?"bottom":o!=null&&n<=o?"top":!1;if(this.affixed===a)return;this.affixed=a,this.unpin=a=="bottom"?r.top-n:null,this.$element.removeClass(u).addClass("affix"+(a?"-"+a:""))};var n=e.fn.affix;e.fn.affix=function(n){return this.each(function(){var r=e(this),i=r.data("affix"),s=typeof n=="object"&&n;i||r.data("affix",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.affix.Constructor=t,e.fn.affix.defaults={offset:0},e.fn.affix.noConflict=function(){return e.fn.affix=n,this},e(window).on("load",function(){e('[data-spy="affix"]').each(function(){var t=e(this),n=t.data();n.offset=n.offset||{},n.offsetBottom&&(n.offset.bottom=n.offsetBottom),n.offsetTop&&(n.offset.top=n.offsetTop),t.affix(n)})})}(window.jQuery); -------------------------------------------------------------------------------- /public/bootstrap-2.3.1/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.3.1 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */ 10 | 11 | .clearfix { 12 | *zoom: 1; 13 | } 14 | 15 | .clearfix:before, 16 | .clearfix:after { 17 | display: table; 18 | line-height: 0; 19 | content: ""; 20 | } 21 | 22 | .clearfix:after { 23 | clear: both; 24 | } 25 | 26 | .hide-text { 27 | font: 0/0 a; 28 | color: transparent; 29 | text-shadow: none; 30 | background-color: transparent; 31 | border: 0; 32 | } 33 | 34 | .input-block-level { 35 | display: block; 36 | width: 100%; 37 | min-height: 30px; 38 | -webkit-box-sizing: border-box; 39 | -moz-box-sizing: border-box; 40 | box-sizing: border-box; 41 | } 42 | 43 | @-ms-viewport { 44 | width: device-width; 45 | } 46 | 47 | .hidden { 48 | display: none; 49 | visibility: hidden; 50 | } 51 | 52 | .visible-phone { 53 | display: none !important; 54 | } 55 | 56 | .visible-tablet { 57 | display: none !important; 58 | } 59 | 60 | .hidden-desktop { 61 | display: none !important; 62 | } 63 | 64 | .visible-desktop { 65 | display: inherit !important; 66 | } 67 | 68 | @media (min-width: 768px) and (max-width: 979px) { 69 | .hidden-desktop { 70 | display: inherit !important; 71 | } 72 | .visible-desktop { 73 | display: none !important ; 74 | } 75 | .visible-tablet { 76 | display: inherit !important; 77 | } 78 | .hidden-tablet { 79 | display: none !important; 80 | } 81 | } 82 | 83 | @media (max-width: 767px) { 84 | .hidden-desktop { 85 | display: inherit !important; 86 | } 87 | .visible-desktop { 88 | display: none !important; 89 | } 90 | .visible-phone { 91 | display: inherit !important; 92 | } 93 | .hidden-phone { 94 | display: none !important; 95 | } 96 | } 97 | 98 | .visible-print { 99 | display: none !important; 100 | } 101 | 102 | @media print { 103 | .visible-print { 104 | display: inherit !important; 105 | } 106 | .hidden-print { 107 | display: none !important; 108 | } 109 | } 110 | 111 | @media (min-width: 1200px) { 112 | .row { 113 | margin-left: -30px; 114 | *zoom: 1; 115 | } 116 | .row:before, 117 | .row:after { 118 | display: table; 119 | line-height: 0; 120 | content: ""; 121 | } 122 | .row:after { 123 | clear: both; 124 | } 125 | [class*="span"] { 126 | float: left; 127 | min-height: 1px; 128 | margin-left: 30px; 129 | } 130 | .container, 131 | .navbar-static-top .container, 132 | .navbar-fixed-top .container, 133 | .navbar-fixed-bottom .container { 134 | width: 1170px; 135 | } 136 | .span12 { 137 | width: 1170px; 138 | } 139 | .span11 { 140 | width: 1070px; 141 | } 142 | .span10 { 143 | width: 970px; 144 | } 145 | .span9 { 146 | width: 870px; 147 | } 148 | .span8 { 149 | width: 770px; 150 | } 151 | .span7 { 152 | width: 670px; 153 | } 154 | .span6 { 155 | width: 570px; 156 | } 157 | .span5 { 158 | width: 470px; 159 | } 160 | .span4 { 161 | width: 370px; 162 | } 163 | .span3 { 164 | width: 270px; 165 | } 166 | .span2 { 167 | width: 170px; 168 | } 169 | .span1 { 170 | width: 70px; 171 | } 172 | .offset12 { 173 | margin-left: 1230px; 174 | } 175 | .offset11 { 176 | margin-left: 1130px; 177 | } 178 | .offset10 { 179 | margin-left: 1030px; 180 | } 181 | .offset9 { 182 | margin-left: 930px; 183 | } 184 | .offset8 { 185 | margin-left: 830px; 186 | } 187 | .offset7 { 188 | margin-left: 730px; 189 | } 190 | .offset6 { 191 | margin-left: 630px; 192 | } 193 | .offset5 { 194 | margin-left: 530px; 195 | } 196 | .offset4 { 197 | margin-left: 430px; 198 | } 199 | .offset3 { 200 | margin-left: 330px; 201 | } 202 | .offset2 { 203 | margin-left: 230px; 204 | } 205 | .offset1 { 206 | margin-left: 130px; 207 | } 208 | .row-fluid { 209 | width: 100%; 210 | *zoom: 1; 211 | } 212 | .row-fluid:before, 213 | .row-fluid:after { 214 | display: table; 215 | line-height: 0; 216 | content: ""; 217 | } 218 | .row-fluid:after { 219 | clear: both; 220 | } 221 | .row-fluid [class*="span"] { 222 | display: block; 223 | float: left; 224 | width: 100%; 225 | min-height: 30px; 226 | margin-left: 2.564102564102564%; 227 | *margin-left: 2.5109110747408616%; 228 | -webkit-box-sizing: border-box; 229 | -moz-box-sizing: border-box; 230 | box-sizing: border-box; 231 | } 232 | .row-fluid [class*="span"]:first-child { 233 | margin-left: 0; 234 | } 235 | .row-fluid .controls-row [class*="span"] + [class*="span"] { 236 | margin-left: 2.564102564102564%; 237 | } 238 | .row-fluid .span12 { 239 | width: 100%; 240 | *width: 99.94680851063829%; 241 | } 242 | .row-fluid .span11 { 243 | width: 91.45299145299145%; 244 | *width: 91.39979996362975%; 245 | } 246 | .row-fluid .span10 { 247 | width: 82.90598290598291%; 248 | *width: 82.8527914166212%; 249 | } 250 | .row-fluid .span9 { 251 | width: 74.35897435897436%; 252 | *width: 74.30578286961266%; 253 | } 254 | .row-fluid .span8 { 255 | width: 65.81196581196582%; 256 | *width: 65.75877432260411%; 257 | } 258 | .row-fluid .span7 { 259 | width: 57.26495726495726%; 260 | *width: 57.21176577559556%; 261 | } 262 | .row-fluid .span6 { 263 | width: 48.717948717948715%; 264 | *width: 48.664757228587014%; 265 | } 266 | .row-fluid .span5 { 267 | width: 40.17094017094017%; 268 | *width: 40.11774868157847%; 269 | } 270 | .row-fluid .span4 { 271 | width: 31.623931623931625%; 272 | *width: 31.570740134569924%; 273 | } 274 | .row-fluid .span3 { 275 | width: 23.076923076923077%; 276 | *width: 23.023731587561375%; 277 | } 278 | .row-fluid .span2 { 279 | width: 14.52991452991453%; 280 | *width: 14.476723040552828%; 281 | } 282 | .row-fluid .span1 { 283 | width: 5.982905982905983%; 284 | *width: 5.929714493544281%; 285 | } 286 | .row-fluid .offset12 { 287 | margin-left: 105.12820512820512%; 288 | *margin-left: 105.02182214948171%; 289 | } 290 | .row-fluid .offset12:first-child { 291 | margin-left: 102.56410256410257%; 292 | *margin-left: 102.45771958537915%; 293 | } 294 | .row-fluid .offset11 { 295 | margin-left: 96.58119658119658%; 296 | *margin-left: 96.47481360247316%; 297 | } 298 | .row-fluid .offset11:first-child { 299 | margin-left: 94.01709401709402%; 300 | *margin-left: 93.91071103837061%; 301 | } 302 | .row-fluid .offset10 { 303 | margin-left: 88.03418803418803%; 304 | *margin-left: 87.92780505546462%; 305 | } 306 | .row-fluid .offset10:first-child { 307 | margin-left: 85.47008547008548%; 308 | *margin-left: 85.36370249136206%; 309 | } 310 | .row-fluid .offset9 { 311 | margin-left: 79.48717948717949%; 312 | *margin-left: 79.38079650845607%; 313 | } 314 | .row-fluid .offset9:first-child { 315 | margin-left: 76.92307692307693%; 316 | *margin-left: 76.81669394435352%; 317 | } 318 | .row-fluid .offset8 { 319 | margin-left: 70.94017094017094%; 320 | *margin-left: 70.83378796144753%; 321 | } 322 | .row-fluid .offset8:first-child { 323 | margin-left: 68.37606837606839%; 324 | *margin-left: 68.26968539734497%; 325 | } 326 | .row-fluid .offset7 { 327 | margin-left: 62.393162393162385%; 328 | *margin-left: 62.28677941443899%; 329 | } 330 | .row-fluid .offset7:first-child { 331 | margin-left: 59.82905982905982%; 332 | *margin-left: 59.72267685033642%; 333 | } 334 | .row-fluid .offset6 { 335 | margin-left: 53.84615384615384%; 336 | *margin-left: 53.739770867430444%; 337 | } 338 | .row-fluid .offset6:first-child { 339 | margin-left: 51.28205128205128%; 340 | *margin-left: 51.175668303327875%; 341 | } 342 | .row-fluid .offset5 { 343 | margin-left: 45.299145299145295%; 344 | *margin-left: 45.1927623204219%; 345 | } 346 | .row-fluid .offset5:first-child { 347 | margin-left: 42.73504273504273%; 348 | *margin-left: 42.62865975631933%; 349 | } 350 | .row-fluid .offset4 { 351 | margin-left: 36.75213675213675%; 352 | *margin-left: 36.645753773413354%; 353 | } 354 | .row-fluid .offset4:first-child { 355 | margin-left: 34.18803418803419%; 356 | *margin-left: 34.081651209310785%; 357 | } 358 | .row-fluid .offset3 { 359 | margin-left: 28.205128205128204%; 360 | *margin-left: 28.0987452264048%; 361 | } 362 | .row-fluid .offset3:first-child { 363 | margin-left: 25.641025641025642%; 364 | *margin-left: 25.53464266230224%; 365 | } 366 | .row-fluid .offset2 { 367 | margin-left: 19.65811965811966%; 368 | *margin-left: 19.551736679396257%; 369 | } 370 | .row-fluid .offset2:first-child { 371 | margin-left: 17.094017094017094%; 372 | *margin-left: 16.98763411529369%; 373 | } 374 | .row-fluid .offset1 { 375 | margin-left: 11.11111111111111%; 376 | *margin-left: 11.004728132387708%; 377 | } 378 | .row-fluid .offset1:first-child { 379 | margin-left: 8.547008547008547%; 380 | *margin-left: 8.440625568285142%; 381 | } 382 | input, 383 | textarea, 384 | .uneditable-input { 385 | margin-left: 0; 386 | } 387 | .controls-row [class*="span"] + [class*="span"] { 388 | margin-left: 30px; 389 | } 390 | input.span12, 391 | textarea.span12, 392 | .uneditable-input.span12 { 393 | width: 1156px; 394 | } 395 | input.span11, 396 | textarea.span11, 397 | .uneditable-input.span11 { 398 | width: 1056px; 399 | } 400 | input.span10, 401 | textarea.span10, 402 | .uneditable-input.span10 { 403 | width: 956px; 404 | } 405 | input.span9, 406 | textarea.span9, 407 | .uneditable-input.span9 { 408 | width: 856px; 409 | } 410 | input.span8, 411 | textarea.span8, 412 | .uneditable-input.span8 { 413 | width: 756px; 414 | } 415 | input.span7, 416 | textarea.span7, 417 | .uneditable-input.span7 { 418 | width: 656px; 419 | } 420 | input.span6, 421 | textarea.span6, 422 | .uneditable-input.span6 { 423 | width: 556px; 424 | } 425 | input.span5, 426 | textarea.span5, 427 | .uneditable-input.span5 { 428 | width: 456px; 429 | } 430 | input.span4, 431 | textarea.span4, 432 | .uneditable-input.span4 { 433 | width: 356px; 434 | } 435 | input.span3, 436 | textarea.span3, 437 | .uneditable-input.span3 { 438 | width: 256px; 439 | } 440 | input.span2, 441 | textarea.span2, 442 | .uneditable-input.span2 { 443 | width: 156px; 444 | } 445 | input.span1, 446 | textarea.span1, 447 | .uneditable-input.span1 { 448 | width: 56px; 449 | } 450 | .thumbnails { 451 | margin-left: -30px; 452 | } 453 | .thumbnails > li { 454 | margin-left: 30px; 455 | } 456 | .row-fluid .thumbnails { 457 | margin-left: 0; 458 | } 459 | } 460 | 461 | @media (min-width: 768px) and (max-width: 979px) { 462 | .row { 463 | margin-left: -20px; 464 | *zoom: 1; 465 | } 466 | .row:before, 467 | .row:after { 468 | display: table; 469 | line-height: 0; 470 | content: ""; 471 | } 472 | .row:after { 473 | clear: both; 474 | } 475 | [class*="span"] { 476 | float: left; 477 | min-height: 1px; 478 | margin-left: 20px; 479 | } 480 | .container, 481 | .navbar-static-top .container, 482 | .navbar-fixed-top .container, 483 | .navbar-fixed-bottom .container { 484 | width: 724px; 485 | } 486 | .span12 { 487 | width: 724px; 488 | } 489 | .span11 { 490 | width: 662px; 491 | } 492 | .span10 { 493 | width: 600px; 494 | } 495 | .span9 { 496 | width: 538px; 497 | } 498 | .span8 { 499 | width: 476px; 500 | } 501 | .span7 { 502 | width: 414px; 503 | } 504 | .span6 { 505 | width: 352px; 506 | } 507 | .span5 { 508 | width: 290px; 509 | } 510 | .span4 { 511 | width: 228px; 512 | } 513 | .span3 { 514 | width: 166px; 515 | } 516 | .span2 { 517 | width: 104px; 518 | } 519 | .span1 { 520 | width: 42px; 521 | } 522 | .offset12 { 523 | margin-left: 764px; 524 | } 525 | .offset11 { 526 | margin-left: 702px; 527 | } 528 | .offset10 { 529 | margin-left: 640px; 530 | } 531 | .offset9 { 532 | margin-left: 578px; 533 | } 534 | .offset8 { 535 | margin-left: 516px; 536 | } 537 | .offset7 { 538 | margin-left: 454px; 539 | } 540 | .offset6 { 541 | margin-left: 392px; 542 | } 543 | .offset5 { 544 | margin-left: 330px; 545 | } 546 | .offset4 { 547 | margin-left: 268px; 548 | } 549 | .offset3 { 550 | margin-left: 206px; 551 | } 552 | .offset2 { 553 | margin-left: 144px; 554 | } 555 | .offset1 { 556 | margin-left: 82px; 557 | } 558 | .row-fluid { 559 | width: 100%; 560 | *zoom: 1; 561 | } 562 | .row-fluid:before, 563 | .row-fluid:after { 564 | display: table; 565 | line-height: 0; 566 | content: ""; 567 | } 568 | .row-fluid:after { 569 | clear: both; 570 | } 571 | .row-fluid [class*="span"] { 572 | display: block; 573 | float: left; 574 | width: 100%; 575 | min-height: 30px; 576 | margin-left: 2.7624309392265194%; 577 | *margin-left: 2.709239449864817%; 578 | -webkit-box-sizing: border-box; 579 | -moz-box-sizing: border-box; 580 | box-sizing: border-box; 581 | } 582 | .row-fluid [class*="span"]:first-child { 583 | margin-left: 0; 584 | } 585 | .row-fluid .controls-row [class*="span"] + [class*="span"] { 586 | margin-left: 2.7624309392265194%; 587 | } 588 | .row-fluid .span12 { 589 | width: 100%; 590 | *width: 99.94680851063829%; 591 | } 592 | .row-fluid .span11 { 593 | width: 91.43646408839778%; 594 | *width: 91.38327259903608%; 595 | } 596 | .row-fluid .span10 { 597 | width: 82.87292817679558%; 598 | *width: 82.81973668743387%; 599 | } 600 | .row-fluid .span9 { 601 | width: 74.30939226519337%; 602 | *width: 74.25620077583166%; 603 | } 604 | .row-fluid .span8 { 605 | width: 65.74585635359117%; 606 | *width: 65.69266486422946%; 607 | } 608 | .row-fluid .span7 { 609 | width: 57.18232044198895%; 610 | *width: 57.12912895262725%; 611 | } 612 | .row-fluid .span6 { 613 | width: 48.61878453038674%; 614 | *width: 48.56559304102504%; 615 | } 616 | .row-fluid .span5 { 617 | width: 40.05524861878453%; 618 | *width: 40.00205712942283%; 619 | } 620 | .row-fluid .span4 { 621 | width: 31.491712707182323%; 622 | *width: 31.43852121782062%; 623 | } 624 | .row-fluid .span3 { 625 | width: 22.92817679558011%; 626 | *width: 22.87498530621841%; 627 | } 628 | .row-fluid .span2 { 629 | width: 14.3646408839779%; 630 | *width: 14.311449394616199%; 631 | } 632 | .row-fluid .span1 { 633 | width: 5.801104972375691%; 634 | *width: 5.747913483013988%; 635 | } 636 | .row-fluid .offset12 { 637 | margin-left: 105.52486187845304%; 638 | *margin-left: 105.41847889972962%; 639 | } 640 | .row-fluid .offset12:first-child { 641 | margin-left: 102.76243093922652%; 642 | *margin-left: 102.6560479605031%; 643 | } 644 | .row-fluid .offset11 { 645 | margin-left: 96.96132596685082%; 646 | *margin-left: 96.8549429881274%; 647 | } 648 | .row-fluid .offset11:first-child { 649 | margin-left: 94.1988950276243%; 650 | *margin-left: 94.09251204890089%; 651 | } 652 | .row-fluid .offset10 { 653 | margin-left: 88.39779005524862%; 654 | *margin-left: 88.2914070765252%; 655 | } 656 | .row-fluid .offset10:first-child { 657 | margin-left: 85.6353591160221%; 658 | *margin-left: 85.52897613729868%; 659 | } 660 | .row-fluid .offset9 { 661 | margin-left: 79.8342541436464%; 662 | *margin-left: 79.72787116492299%; 663 | } 664 | .row-fluid .offset9:first-child { 665 | margin-left: 77.07182320441989%; 666 | *margin-left: 76.96544022569647%; 667 | } 668 | .row-fluid .offset8 { 669 | margin-left: 71.2707182320442%; 670 | *margin-left: 71.16433525332079%; 671 | } 672 | .row-fluid .offset8:first-child { 673 | margin-left: 68.50828729281768%; 674 | *margin-left: 68.40190431409427%; 675 | } 676 | .row-fluid .offset7 { 677 | margin-left: 62.70718232044199%; 678 | *margin-left: 62.600799341718584%; 679 | } 680 | .row-fluid .offset7:first-child { 681 | margin-left: 59.94475138121547%; 682 | *margin-left: 59.838368402492065%; 683 | } 684 | .row-fluid .offset6 { 685 | margin-left: 54.14364640883978%; 686 | *margin-left: 54.037263430116376%; 687 | } 688 | .row-fluid .offset6:first-child { 689 | margin-left: 51.38121546961326%; 690 | *margin-left: 51.27483249088986%; 691 | } 692 | .row-fluid .offset5 { 693 | margin-left: 45.58011049723757%; 694 | *margin-left: 45.47372751851417%; 695 | } 696 | .row-fluid .offset5:first-child { 697 | margin-left: 42.81767955801105%; 698 | *margin-left: 42.71129657928765%; 699 | } 700 | .row-fluid .offset4 { 701 | margin-left: 37.01657458563536%; 702 | *margin-left: 36.91019160691196%; 703 | } 704 | .row-fluid .offset4:first-child { 705 | margin-left: 34.25414364640884%; 706 | *margin-left: 34.14776066768544%; 707 | } 708 | .row-fluid .offset3 { 709 | margin-left: 28.45303867403315%; 710 | *margin-left: 28.346655695309746%; 711 | } 712 | .row-fluid .offset3:first-child { 713 | margin-left: 25.69060773480663%; 714 | *margin-left: 25.584224756083227%; 715 | } 716 | .row-fluid .offset2 { 717 | margin-left: 19.88950276243094%; 718 | *margin-left: 19.783119783707537%; 719 | } 720 | .row-fluid .offset2:first-child { 721 | margin-left: 17.12707182320442%; 722 | *margin-left: 17.02068884448102%; 723 | } 724 | .row-fluid .offset1 { 725 | margin-left: 11.32596685082873%; 726 | *margin-left: 11.219583872105325%; 727 | } 728 | .row-fluid .offset1:first-child { 729 | margin-left: 8.56353591160221%; 730 | *margin-left: 8.457152932878806%; 731 | } 732 | input, 733 | textarea, 734 | .uneditable-input { 735 | margin-left: 0; 736 | } 737 | .controls-row [class*="span"] + [class*="span"] { 738 | margin-left: 20px; 739 | } 740 | input.span12, 741 | textarea.span12, 742 | .uneditable-input.span12 { 743 | width: 710px; 744 | } 745 | input.span11, 746 | textarea.span11, 747 | .uneditable-input.span11 { 748 | width: 648px; 749 | } 750 | input.span10, 751 | textarea.span10, 752 | .uneditable-input.span10 { 753 | width: 586px; 754 | } 755 | input.span9, 756 | textarea.span9, 757 | .uneditable-input.span9 { 758 | width: 524px; 759 | } 760 | input.span8, 761 | textarea.span8, 762 | .uneditable-input.span8 { 763 | width: 462px; 764 | } 765 | input.span7, 766 | textarea.span7, 767 | .uneditable-input.span7 { 768 | width: 400px; 769 | } 770 | input.span6, 771 | textarea.span6, 772 | .uneditable-input.span6 { 773 | width: 338px; 774 | } 775 | input.span5, 776 | textarea.span5, 777 | .uneditable-input.span5 { 778 | width: 276px; 779 | } 780 | input.span4, 781 | textarea.span4, 782 | .uneditable-input.span4 { 783 | width: 214px; 784 | } 785 | input.span3, 786 | textarea.span3, 787 | .uneditable-input.span3 { 788 | width: 152px; 789 | } 790 | input.span2, 791 | textarea.span2, 792 | .uneditable-input.span2 { 793 | width: 90px; 794 | } 795 | input.span1, 796 | textarea.span1, 797 | .uneditable-input.span1 { 798 | width: 28px; 799 | } 800 | } 801 | 802 | @media (max-width: 767px) { 803 | body { 804 | padding-right: 20px; 805 | padding-left: 20px; 806 | } 807 | .navbar-fixed-top, 808 | .navbar-fixed-bottom, 809 | .navbar-static-top { 810 | margin-right: -20px; 811 | margin-left: -20px; 812 | } 813 | .container-fluid { 814 | padding: 0; 815 | } 816 | .dl-horizontal dt { 817 | float: none; 818 | width: auto; 819 | clear: none; 820 | text-align: left; 821 | } 822 | .dl-horizontal dd { 823 | margin-left: 0; 824 | } 825 | .container { 826 | width: auto; 827 | } 828 | .row-fluid { 829 | width: 100%; 830 | } 831 | .row, 832 | .thumbnails { 833 | margin-left: 0; 834 | } 835 | .thumbnails > li { 836 | float: none; 837 | margin-left: 0; 838 | } 839 | [class*="span"], 840 | .uneditable-input[class*="span"], 841 | .row-fluid [class*="span"] { 842 | display: block; 843 | float: none; 844 | width: 100%; 845 | margin-left: 0; 846 | -webkit-box-sizing: border-box; 847 | -moz-box-sizing: border-box; 848 | box-sizing: border-box; 849 | } 850 | .span12, 851 | .row-fluid .span12 { 852 | width: 100%; 853 | -webkit-box-sizing: border-box; 854 | -moz-box-sizing: border-box; 855 | box-sizing: border-box; 856 | } 857 | .row-fluid [class*="offset"]:first-child { 858 | margin-left: 0; 859 | } 860 | .input-large, 861 | .input-xlarge, 862 | .input-xxlarge, 863 | input[class*="span"], 864 | select[class*="span"], 865 | textarea[class*="span"], 866 | .uneditable-input { 867 | display: block; 868 | width: 100%; 869 | min-height: 30px; 870 | -webkit-box-sizing: border-box; 871 | -moz-box-sizing: border-box; 872 | box-sizing: border-box; 873 | } 874 | .input-prepend input, 875 | .input-append input, 876 | .input-prepend input[class*="span"], 877 | .input-append input[class*="span"] { 878 | display: inline-block; 879 | width: auto; 880 | } 881 | .controls-row [class*="span"] + [class*="span"] { 882 | margin-left: 0; 883 | } 884 | .modal { 885 | position: fixed; 886 | top: 20px; 887 | right: 20px; 888 | left: 20px; 889 | width: auto; 890 | margin: 0; 891 | } 892 | .modal.fade { 893 | top: -100px; 894 | } 895 | .modal.fade.in { 896 | top: 20px; 897 | } 898 | } 899 | 900 | @media (max-width: 480px) { 901 | .nav-collapse { 902 | -webkit-transform: translate3d(0, 0, 0); 903 | } 904 | .page-header h1 small { 905 | display: block; 906 | line-height: 20px; 907 | } 908 | input[type="checkbox"], 909 | input[type="radio"] { 910 | border: 1px solid #ccc; 911 | } 912 | .form-horizontal .control-label { 913 | float: none; 914 | width: auto; 915 | padding-top: 0; 916 | text-align: left; 917 | } 918 | .form-horizontal .controls { 919 | margin-left: 0; 920 | } 921 | .form-horizontal .control-list { 922 | padding-top: 0; 923 | } 924 | .form-horizontal .form-actions { 925 | padding-right: 10px; 926 | padding-left: 10px; 927 | } 928 | .media .pull-left, 929 | .media .pull-right { 930 | display: block; 931 | float: none; 932 | margin-bottom: 10px; 933 | } 934 | .media-object { 935 | margin-right: 0; 936 | margin-left: 0; 937 | } 938 | .modal { 939 | top: 10px; 940 | right: 10px; 941 | left: 10px; 942 | } 943 | .modal-header .close { 944 | padding: 10px; 945 | margin: -10px; 946 | } 947 | .carousel-caption { 948 | position: static; 949 | } 950 | } 951 | 952 | @media (max-width: 979px) { 953 | body { 954 | padding-top: 0; 955 | } 956 | .navbar-fixed-top, 957 | .navbar-fixed-bottom { 958 | position: static; 959 | } 960 | .navbar-fixed-top { 961 | margin-bottom: 20px; 962 | } 963 | .navbar-fixed-bottom { 964 | margin-top: 20px; 965 | } 966 | .navbar-fixed-top .navbar-inner, 967 | .navbar-fixed-bottom .navbar-inner { 968 | padding: 5px; 969 | } 970 | .navbar .container { 971 | width: auto; 972 | padding: 0; 973 | } 974 | .navbar .brand { 975 | padding-right: 10px; 976 | padding-left: 10px; 977 | margin: 0 0 0 -5px; 978 | } 979 | .nav-collapse { 980 | clear: both; 981 | } 982 | .nav-collapse .nav { 983 | float: none; 984 | margin: 0 0 10px; 985 | } 986 | .nav-collapse .nav > li { 987 | float: none; 988 | } 989 | .nav-collapse .nav > li > a { 990 | margin-bottom: 2px; 991 | } 992 | .nav-collapse .nav > .divider-vertical { 993 | display: none; 994 | } 995 | .nav-collapse .nav .nav-header { 996 | color: #777777; 997 | text-shadow: none; 998 | } 999 | .nav-collapse .nav > li > a, 1000 | .nav-collapse .dropdown-menu a { 1001 | padding: 9px 15px; 1002 | font-weight: bold; 1003 | color: #777777; 1004 | -webkit-border-radius: 3px; 1005 | -moz-border-radius: 3px; 1006 | border-radius: 3px; 1007 | } 1008 | .nav-collapse .btn { 1009 | padding: 4px 10px 4px; 1010 | font-weight: normal; 1011 | -webkit-border-radius: 4px; 1012 | -moz-border-radius: 4px; 1013 | border-radius: 4px; 1014 | } 1015 | .nav-collapse .dropdown-menu li + li a { 1016 | margin-bottom: 2px; 1017 | } 1018 | .nav-collapse .nav > li > a:hover, 1019 | .nav-collapse .nav > li > a:focus, 1020 | .nav-collapse .dropdown-menu a:hover, 1021 | .nav-collapse .dropdown-menu a:focus { 1022 | background-color: #f2f2f2; 1023 | } 1024 | .navbar-inverse .nav-collapse .nav > li > a, 1025 | .navbar-inverse .nav-collapse .dropdown-menu a { 1026 | color: #999999; 1027 | } 1028 | .navbar-inverse .nav-collapse .nav > li > a:hover, 1029 | .navbar-inverse .nav-collapse .nav > li > a:focus, 1030 | .navbar-inverse .nav-collapse .dropdown-menu a:hover, 1031 | .navbar-inverse .nav-collapse .dropdown-menu a:focus { 1032 | background-color: #111111; 1033 | } 1034 | .nav-collapse.in .btn-group { 1035 | padding: 0; 1036 | margin-top: 5px; 1037 | } 1038 | .nav-collapse .dropdown-menu { 1039 | position: static; 1040 | top: auto; 1041 | left: auto; 1042 | display: none; 1043 | float: none; 1044 | max-width: none; 1045 | padding: 0; 1046 | margin: 0 15px; 1047 | background-color: transparent; 1048 | border: none; 1049 | -webkit-border-radius: 0; 1050 | -moz-border-radius: 0; 1051 | border-radius: 0; 1052 | -webkit-box-shadow: none; 1053 | -moz-box-shadow: none; 1054 | box-shadow: none; 1055 | } 1056 | .nav-collapse .open > .dropdown-menu { 1057 | display: block; 1058 | } 1059 | .nav-collapse .dropdown-menu:before, 1060 | .nav-collapse .dropdown-menu:after { 1061 | display: none; 1062 | } 1063 | .nav-collapse .dropdown-menu .divider { 1064 | display: none; 1065 | } 1066 | .nav-collapse .nav > li > .dropdown-menu:before, 1067 | .nav-collapse .nav > li > .dropdown-menu:after { 1068 | display: none; 1069 | } 1070 | .nav-collapse .navbar-form, 1071 | .nav-collapse .navbar-search { 1072 | float: none; 1073 | padding: 10px 15px; 1074 | margin: 10px 0; 1075 | border-top: 1px solid #f2f2f2; 1076 | border-bottom: 1px solid #f2f2f2; 1077 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1078 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1079 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 1080 | } 1081 | .navbar-inverse .nav-collapse .navbar-form, 1082 | .navbar-inverse .nav-collapse .navbar-search { 1083 | border-top-color: #111111; 1084 | border-bottom-color: #111111; 1085 | } 1086 | .navbar .nav-collapse .nav.pull-right { 1087 | float: none; 1088 | margin-left: 0; 1089 | } 1090 | .nav-collapse, 1091 | .nav-collapse.collapse { 1092 | height: 0; 1093 | overflow: hidden; 1094 | } 1095 | .navbar .btn-navbar { 1096 | display: block; 1097 | } 1098 | .navbar-static .navbar-inner { 1099 | padding-right: 10px; 1100 | padding-left: 10px; 1101 | } 1102 | } 1103 | 1104 | @media (min-width: 980px) { 1105 | .nav-collapse.collapse { 1106 | height: auto !important; 1107 | overflow: visible !important; 1108 | } 1109 | } 1110 | --------------------------------------------------------------------------------