summaryrefslogtreecommitdiff
path: root/lib/temp.js
blob: b635644db17777075f6dbf684355bca0937cbe6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//temp
//external modules
var mongoose = require('mongoose');

//core
var config = require("../config.js");
var logger = require("./logger.js");

// create a temp model
var model = mongoose.model('temp', {
    id: String,
    data: String,
    created: Date
});

//public
var temp = {
    model: model,
    findTemp: findTemp,
    newTemp: newTemp,
    removeTemp: removeTemp,
    getTempCount: getTempCount
};

function getTempCount(callback) {
    model.count(function(err, count){
        if(err) callback(err, null);
        else callback(null, count);
    });
}

function findTemp(id, callback) {
    model.findOne({
        id: id
    }, function (err, temp) {
        if (err) {
            logger.error('find temp failed: ' + err);
            callback(err, null);
        }
        if (!err && temp) {
            callback(null, temp);
        } else {
            logger.error('find temp failed: ' + err);
            callback(err, null);
        };
    });
}

function newTemp(id, data, callback) {
    var temp = new model({
        id: id,
        data: data,
        created: Date.now()
    });
    temp.save(function (err) {
        if (err) {
            logger.error('new temp failed: ' + err);
            callback(err, null);
        } else {
            logger.info("new temp success: " + temp.id);
            callback(null, temp);
        };
    });
}

function removeTemp(id, callback) {
    findTemp(id, function(err, temp) {
        if(!err && temp) {
            temp.remove(function(err) {
                if(err) {
                    logger.error('remove temp failed: ' + err);
                    callback(err, null);
                } else {
                    callback(null, null);
                }
            });
        } else {
            logger.error('remove temp failed: ' + err);
            callback(err, null);
        }
    });
}

module.exports = temp;