upwork-api 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.tests +1 -0
- data/.travis.yml +1 -2
- data/CHANGES.md +5 -0
- data/lib/upwork/api/routers/snapshot.rb +3 -36
- data/lib/upwork/api/routers/workdays.rb +2 -2
- data/lib/upwork/api/routers/workdiary.rb +4 -5
- data/lib/upwork/api/version.rb +1 -1
- data/test/test_snapshot.rb +0 -15
- data/test/test_workdiary.rb +1 -1
- metadata +5 -6
- data/lib/upwork/api/routers/teams.rb +0 -47
- data/test/test_teams.rb +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0b2e8926f9643382cf971940857b19fb0361ac88c164a51ba6d1c7fe012f927f
|
4
|
+
data.tar.gz: a350200eef734e54db98fa608dca33a646fcfaf1932a44a7772aabf9f4e63b6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21d7bdf4e36804439183a91648d163f4e924f3ce966a29568060dbb470a84e6d5d2ec62a3766abe26ee59c8fa6444e7e89d237a11a003fbfb750ffbd42b88447
|
7
|
+
data.tar.gz: 1b6af05929c86efc601e06ffe9d476b03d5508b3b2ade7287b7f7f2f50b2ebee07132632d807e71cb9187de600c909fbbfd25378bacf2bb88a07c2708204cf23
|
data/.tests
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rake test
|
data/.travis.yml
CHANGED
data/CHANGES.md
ADDED
@@ -27,39 +27,6 @@ module Upwork
|
|
27
27
|
@client.epoint = ENTRY_POINT
|
28
28
|
end
|
29
29
|
|
30
|
-
# Get snapshot info
|
31
|
-
#
|
32
|
-
# Arguments:
|
33
|
-
# company: (String)
|
34
|
-
# username: (String)
|
35
|
-
# ts: (String)
|
36
|
-
def get(company, username, ts)
|
37
|
-
$LOG.i "running " + __method__.to_s
|
38
|
-
@client.get '/team/v1/snapshots/' + company + '/' + username + '/' + ts
|
39
|
-
end
|
40
|
-
|
41
|
-
# Update snapshot
|
42
|
-
#
|
43
|
-
# Arguments:
|
44
|
-
# company: (String)
|
45
|
-
# username: (String)
|
46
|
-
# ts: (String)
|
47
|
-
# params: (Hash)
|
48
|
-
def update(company, username, ts, params)
|
49
|
-
$LOG.i "running " + __method__.to_s
|
50
|
-
@client.put '/team/v1/snapshots/' + company + '/' + username + '/' + ts, params
|
51
|
-
end
|
52
|
-
|
53
|
-
# Delete snapshot
|
54
|
-
# Arguments:
|
55
|
-
# company: (String)
|
56
|
-
# username: (String)
|
57
|
-
# ts: (String)
|
58
|
-
def delete(company, username, ts)
|
59
|
-
$LOG.i "running " + __method__.to_s
|
60
|
-
@client.delete '/team/v1/snapshots/' + company + '/' + username + '/' + ts
|
61
|
-
end
|
62
|
-
|
63
30
|
# Get snapshot info by specific contract
|
64
31
|
#
|
65
32
|
# Arguments:
|
@@ -67,7 +34,7 @@ module Upwork
|
|
67
34
|
# ts: (String)
|
68
35
|
def get_by_contract(contract, ts)
|
69
36
|
$LOG.i "running " + __method__.to_s
|
70
|
-
@client.get '/team/
|
37
|
+
@client.get '/team/v3/snapshots/contracts/' + contract + '/' + ts
|
71
38
|
end
|
72
39
|
|
73
40
|
# Update snapshot by specific contract
|
@@ -78,7 +45,7 @@ module Upwork
|
|
78
45
|
# params: (Hash)
|
79
46
|
def update_by_contract(contract, ts, params)
|
80
47
|
$LOG.i "running " + __method__.to_s
|
81
|
-
@client.put '/team/
|
48
|
+
@client.put '/team/v3/snapshots/contracts/' + contract + '/' + ts, params
|
82
49
|
end
|
83
50
|
|
84
51
|
# Delete snapshot by specific contract
|
@@ -87,7 +54,7 @@ module Upwork
|
|
87
54
|
# ts: (String)
|
88
55
|
def delete_by_contract(contract, ts)
|
89
56
|
$LOG.i "running " + __method__.to_s
|
90
|
-
@client.delete '/team/
|
57
|
+
@client.delete '/team/v3/snapshots/contracts/' + contract + '/' + ts
|
91
58
|
end
|
92
59
|
end
|
93
60
|
end
|
@@ -35,7 +35,7 @@ module Upwork
|
|
35
35
|
# params: (Hash)
|
36
36
|
def get_by_company(company, from_date, till_date, params = {})
|
37
37
|
$LOG.i "running " + __method__.to_s
|
38
|
-
@client.get '/team/
|
38
|
+
@client.get '/team/v3/workdays/companies/' + company + '/' + from_date + ',' + till_date, params
|
39
39
|
end
|
40
40
|
|
41
41
|
# Get Workdays by Contract
|
@@ -46,7 +46,7 @@ module Upwork
|
|
46
46
|
# params: (Hash)
|
47
47
|
def get_by_contract(contract, from_date, till_date, params = {})
|
48
48
|
$LOG.i "running " + __method__.to_s
|
49
|
-
@client.get '/team/
|
49
|
+
@client.get '/team/v3/workdays/contracts/' + contract + '/' + from_date + ',' + till_date, params
|
50
50
|
end
|
51
51
|
end
|
52
52
|
end
|
@@ -27,15 +27,14 @@ module Upwork
|
|
27
27
|
@client.epoint = ENTRY_POINT
|
28
28
|
end
|
29
29
|
|
30
|
-
# Get Workdiary
|
30
|
+
# Get Workdiary by Company
|
31
31
|
# Arguments:
|
32
32
|
# company: (String)
|
33
|
-
# username: (String)
|
34
33
|
# date: (String)
|
35
34
|
# params: (Hash)
|
36
|
-
def get(company,
|
35
|
+
def get(company, date, params = {})
|
37
36
|
$LOG.i "running " + __method__.to_s
|
38
|
-
@client.get '/team/
|
37
|
+
@client.get '/team/v3/workdiaries/companies/' + company + '/' + date, params
|
39
38
|
end
|
40
39
|
|
41
40
|
# Get Work Diary by Contract
|
@@ -45,7 +44,7 @@ module Upwork
|
|
45
44
|
# params: (Hash)
|
46
45
|
def get_by_contract(contract, date, params = {})
|
47
46
|
$LOG.i "running " + __method__.to_s
|
48
|
-
@client.get '/team/
|
47
|
+
@client.get '/team/v3/workdiaries/contracts/' + contract + '/' + date, params
|
49
48
|
end
|
50
49
|
end
|
51
50
|
end
|
data/lib/upwork/api/version.rb
CHANGED
data/test/test_snapshot.rb
CHANGED
@@ -9,21 +9,6 @@ require 'mocha/test_unit'
|
|
9
9
|
class SnapshotTest < Test::Unit::TestCase
|
10
10
|
include TestHelper
|
11
11
|
|
12
|
-
def test_get
|
13
|
-
api = Upwork::Api::Routers::Snapshot.new(get_client_mock)
|
14
|
-
assert api.get('company', 'username', '20140101')
|
15
|
-
end
|
16
|
-
|
17
|
-
def test_update
|
18
|
-
api = Upwork::Api::Routers::Snapshot.new(get_client_mock)
|
19
|
-
assert api.update('company', 'username', '20140101', {})
|
20
|
-
end
|
21
|
-
|
22
|
-
def test_delete
|
23
|
-
api = Upwork::Api::Routers::Snapshot.new(get_client_mock)
|
24
|
-
assert api.delete('company', 'username', '20140101')
|
25
|
-
end
|
26
|
-
|
27
12
|
def test_get_by_contract
|
28
13
|
api = Upwork::Api::Routers::Snapshot.new(get_client_mock)
|
29
14
|
assert api.get_by_contract('contract', '20140101')
|
data/test/test_workdiary.rb
CHANGED
@@ -11,7 +11,7 @@ class WorkdiaryTest < Test::Unit::TestCase
|
|
11
11
|
|
12
12
|
def test_get
|
13
13
|
api = Upwork::Api::Routers::Workdiary.new(get_client_mock)
|
14
|
-
assert api.get('company', '
|
14
|
+
assert api.get('company', '20140101', {})
|
15
15
|
end
|
16
16
|
|
17
17
|
def test_get_by_contract
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: upwork-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maksym Novozhylov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oauth
|
@@ -90,7 +90,9 @@ extra_rdoc_files: []
|
|
90
90
|
files:
|
91
91
|
- ".docgen"
|
92
92
|
- ".gitignore"
|
93
|
+
- ".tests"
|
93
94
|
- ".travis.yml"
|
95
|
+
- CHANGES.md
|
94
96
|
- Gemfile
|
95
97
|
- LICENSE.txt
|
96
98
|
- README.md
|
@@ -129,7 +131,6 @@ files:
|
|
129
131
|
- lib/upwork/api/routers/reports/finance/earnings.rb
|
130
132
|
- lib/upwork/api/routers/reports/time.rb
|
131
133
|
- lib/upwork/api/routers/snapshot.rb
|
132
|
-
- lib/upwork/api/routers/teams.rb
|
133
134
|
- lib/upwork/api/routers/workdays.rb
|
134
135
|
- lib/upwork/api/routers/workdiary.rb
|
135
136
|
- lib/upwork/api/version.rb
|
@@ -166,7 +167,6 @@ files:
|
|
166
167
|
- test/test_reports_finance_earnings.rb
|
167
168
|
- test/test_reports_time.rb
|
168
169
|
- test/test_snapshot.rb
|
169
|
-
- test/test_teams.rb
|
170
170
|
- test/test_workdays.rb
|
171
171
|
- test/test_workdiary.rb
|
172
172
|
- upwork-api.gemspec
|
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
190
|
version: '0'
|
191
191
|
requirements: []
|
192
192
|
rubyforge_project:
|
193
|
-
rubygems_version: 2.
|
193
|
+
rubygems_version: 2.7.6
|
194
194
|
signing_key:
|
195
195
|
specification_version: 4
|
196
196
|
summary: Ruby bindings for Upwork API.
|
@@ -228,6 +228,5 @@ test_files:
|
|
228
228
|
- test/test_reports_finance_earnings.rb
|
229
229
|
- test/test_reports_time.rb
|
230
230
|
- test/test_snapshot.rb
|
231
|
-
- test/test_teams.rb
|
232
231
|
- test/test_workdays.rb
|
233
232
|
- test/test_workdiary.rb
|
@@ -1,47 +0,0 @@
|
|
1
|
-
# Licensed under the Upwork's API Terms of Use;
|
2
|
-
# you may not use this file except in compliance with the Terms.
|
3
|
-
#
|
4
|
-
# Unless required by applicable law or agreed to in writing, software
|
5
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
6
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
7
|
-
# See the License for the specific language governing permissions and
|
8
|
-
# limitations under the License.
|
9
|
-
#
|
10
|
-
# Author:: Maksym Novozhylov (mnovozhilov@upwork.com)
|
11
|
-
# Copyright:: Copyright 2014(c) Upwork.com
|
12
|
-
# License:: See LICENSE.txt and TOS - https://developers.upwork.com/api-tos.html
|
13
|
-
|
14
|
-
module Upwork
|
15
|
-
module Api
|
16
|
-
module Routers
|
17
|
-
# Team API
|
18
|
-
class Teams
|
19
|
-
ENTRY_POINT = 'api'
|
20
|
-
|
21
|
-
# Init
|
22
|
-
#
|
23
|
-
# Arguments:
|
24
|
-
# client: (Client)
|
25
|
-
def initialize(client)
|
26
|
-
@client = client
|
27
|
-
@client.epoint = ENTRY_POINT
|
28
|
-
end
|
29
|
-
|
30
|
-
# Get Team Rooms
|
31
|
-
def get_list
|
32
|
-
$LOG.i "running " + __method__.to_s
|
33
|
-
@client.get '/team/v2/teamrooms'
|
34
|
-
end
|
35
|
-
|
36
|
-
# Get specific team or company
|
37
|
-
# Arguments:
|
38
|
-
# team: (String)
|
39
|
-
# params: (Hash)
|
40
|
-
def get_specific(team, params)
|
41
|
-
$LOG.i "running " + __method__.to_s
|
42
|
-
@client.get '/team/v2/teamrooms/' + team, params
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
data/test/test_teams.rb
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
$:.unshift 'lib'
|
2
|
-
$LOAD_PATH << File.dirname(__FILE__)
|
3
|
-
|
4
|
-
require 'helper'
|
5
|
-
require 'upwork/api/routers/teams'
|
6
|
-
require 'test/unit'
|
7
|
-
require 'mocha/test_unit'
|
8
|
-
|
9
|
-
class TeamsTest < Test::Unit::TestCase
|
10
|
-
include TestHelper
|
11
|
-
|
12
|
-
def test_get_list
|
13
|
-
api = Upwork::Api::Routers::Teams.new(get_client_mock)
|
14
|
-
assert api.get_list
|
15
|
-
end
|
16
|
-
|
17
|
-
def test_get_specific
|
18
|
-
api = Upwork::Api::Routers::Teams.new(get_client_mock)
|
19
|
-
assert api.get_specific('team', {})
|
20
|
-
end
|
21
|
-
end
|