Class: Auth::Work::Schedule

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document
Defined in:
app/models/auth/work/schedule.rb

Instance Method Summary collapse

Instance Method Details

#create_prev_not_existsObject



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
# File 'app/models/auth/work/schedule.rb', line 12

def create_prev_not_exists
	created_document = Auth::Work::Schedule.
		where({
			"$and" => [
				{
					"location_id" => self.location_id
				},
				{
					"for_object_id" => self.for_object_id
				},
				{
					"for_object_class" => self.for_object_class
				},
				{
					"$or" => [
						{
							## the end time is within this start - end time
							"end_time" => {
								"$lte" => self.end_time,
								"$gte" => self.start_time
							}
							
						},
						{
							## the start time is within this start - end time.
							"start_time" => {
								"$gte" => self.start_time,
								"$lte" => self.end_time
							}
								
						},
						{
							## the start time is less than or equal to this start time, and the end time is greater than or equal to this end time.(envelope)
							"$and" => [
								"start_time" => {
									"$lte" => self.start_time
								},
								"end_time" => {
									"$gte" => self.end_time
								}
							]
						}
					]
				}
			]
		}).
		find_one_and_update(
			{
				"$setOnInsert" => self.attributes
			},
			{
				:upsert => true,
				:new => true
			}
		)
	
end