worksection-ruby 0.0.3

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cd335a7a6e13d6915170afd82ec11f51eb2960af5cb704d499d3d0abdc91a8ea
4
+ data.tar.gz: 20f9940f85787ed9854750ebcbcf7c512bcff6f21f3fb7909288f59b17a7426e
5
+ SHA512:
6
+ metadata.gz: 59c127e31ee759244416149b79eed81253c461741b83b500636ae0e8dce8e4a148395790f25511b23b53b43e97a914a8ac2a32cc7f0dc57ec94a8bc00511b66d
7
+ data.tar.gz: 3923f76eb5ba664a8b6b93af8e2ae202b0a8da566e82055b2ad6a2497256953cedef64a21fa096d1bcad7b551dd98b73e6fb6e2bb162e7e3a54bebbdfecfb97d
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.1
7
+ before_install: gem install bundler -v 1.17.2
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at loyalist.scfa@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in worksection.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ worksection-ruby (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (10.5.0)
11
+ rspec (3.8.0)
12
+ rspec-core (~> 3.8.0)
13
+ rspec-expectations (~> 3.8.0)
14
+ rspec-mocks (~> 3.8.0)
15
+ rspec-core (3.8.2)
16
+ rspec-support (~> 3.8.0)
17
+ rspec-expectations (3.8.4)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.8.0)
20
+ rspec-mocks (3.8.1)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.8.0)
23
+ rspec-support (3.8.2)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ bundler (~> 1.17)
30
+ rake (~> 10.0)
31
+ rspec (~> 3.0)
32
+ worksection-ruby!
33
+
34
+ BUNDLED WITH
35
+ 1.17.2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Valentin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,72 @@
1
+ # WorksectionClient
2
+
3
+ This is a Ruby gem which integrates worksection API and gives you an efficient way to add worksection data into your project.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'worksection-ruby'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install worksection-ruby
20
+
21
+ ## Usage
22
+ ### API methods: getting data 
23
+ Action | Method | Hash Parameters
24
+ -------|--------|-----------
25
+ Returns project names, their statuses (archive, active, pending), company and relative reference to the project. |get_projects|
26
+ Returns the names of active and closed tasks, priority and relative reference to the task |get_all_tasks||
27
+ Returns the names of active tasks, priority and relative reference to the task |get_priority|
28
+ Returns the name of the task or subtask, status (active, done), priority and relative reference to the task|get_task|
29
+ Returns the costs incurred for the period, their executor (user_from field), corresponding tasks and subtasks (task field). The is_timer=true flag indicates that the time is received from the timer.|get_timemoney|
30
+ Returns the text field with user comments|get_comments|
31
+ Returns data about all users in account|get_users|
32
+
33
+ ### API methods: creating projects/tasks/comments
34
+
35
+ Action | Method | Hash Parameters
36
+ -------|--------|-----------
37
+ Posting a comment in a task or subtask|post_project|{<br>`email_user_from`: (string:required),<br>`email_manager`: (string:required),<br>`email_user_to`: (string:required),<br>`title`: (string:required),<br>`members`: (boolean:optional)<br>}
38
+ Creating a task|post_task|
39
+ Creating a Subtask|post_subtask|
40
+ Placement of time and financial costs in the task or subtask|post_timemoney|
41
+ Inviting user to the account|add_user|
42
+
43
+ ### API methods: editing projects/tasks/subtasks/tags
44
+
45
+ Action | Method | Hash Parameters
46
+ -------|--------|-----------
47
+ Close a project that corresponds to the page|close_project|
48
+ Archives a project that corresponds to the page|activate_project|
49
+ Mark as done the task that corresponds to the page. The task should be "in progress" and not contain open subtasks |complete_task|
50
+ Mark as done the subtask that corresponds to the page. The subtask must be "in progress" and contain no nested sub-tasks "in progress"|complete_subtask|
51
+ Reopening a task that corresponds to the page|reopen_task|
52
+ Reopening a subtask that corresponds to the page|reopen_subtask|
53
+ Update project|update_project|
54
+ Update task|update_task|
55
+ Update subtasks|update_subtask|
56
+ Update time and financial costs in the task or subtask|update_timemoney|
57
+ Delete time and financial costs in the task or subtask|delete_timemoney|
58
+ Subscribe user to a task|subscribe|
59
+ Unsubscribe user from task|unsubscribe|
60
+ Update tags in task/subtask|update_tags|
61
+
62
+ ## Contributing
63
+
64
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/worksection-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
65
+
66
+ ## License
67
+
68
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
69
+
70
+ ## Code of Conduct
71
+
72
+ Everyone interacting in the WorksectionClient project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/worksection-ruby/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "worksection"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,36 @@
1
+ Dir[File.join(__dir__, 'modules', '*.rb')].each {|file| require file }
2
+
3
+ module Main
4
+ class Worksection::Client
5
+ include GettingData
6
+ include Creating
7
+ include Editing
8
+ # include Files
9
+
10
+ attr_accessor :domain, :apikey, :use_ssl
11
+
12
+ def initialize(domain, apikey, use_ssl = true)
13
+ @domain = domain
14
+ @apikey = apikey
15
+ @use_ssl = use_ssl
16
+ end
17
+
18
+ private
19
+
20
+ def collect_params(**args)
21
+ args.reduce(''){ |acc,(key,value)| acc + "&#{key}=#{value}" }
22
+ end
23
+
24
+ def perform_request(url)
25
+ Net::HTTP.start(url.host, url.port, use_ssl: @use_ssl) do |http|
26
+ request = Net::HTTP::Get.new(url)
27
+ response = http.request request
28
+ JSON.parse(response.body)
29
+ end
30
+ end
31
+
32
+ def to_md5(method, page = '')
33
+ Digest::MD5.hexdigest(page + method + @apikey)
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,56 @@
1
+ class Worksection::Client
2
+ module Creating
3
+
4
+ #https://your-domain.com/api/admin/?action=post_comment&page=/project/ID_PROJECT/ID_TASK/&email_user_from=USER_EMAIL&text=TEXT&hash=HASH
5
+ def post_comment(project_id, task_id, **args)
6
+ page = "/project/#{project_id}/#{task_id}/"
7
+ url = URI("https://#{@domain}/api/admin/?action=post_comment&page=#{page}
8
+ #{collect_params(**args)}
9
+ &hash=#{to_md5(__method__.to_s, page)}")
10
+ perform_request(url)
11
+ end
12
+
13
+ #https://your-domain.com/api/admin/?action=post_project&email_user_from=USER_EMAIL&email_manager=USER_EMAIL&email_user_to=USER_EMAIL&members=USER_EMAIL, USER_EMAIL&title=TASK_NAME&text=TASK_TEXT&company=COMPANY&datestart=DD.MM.YYYYY&dateend=DD.MM.YYYYY&hash=HASH
14
+ def post_project(**args)
15
+ url = URI("https://#{@domain}/api/admin/?action=post_project
16
+ #{collect_params(**args)}
17
+ &hash=#{to_md5(__method__.to_s, page)}")
18
+ perform_request(url)
19
+ end
20
+
21
+ #https://your-domain.com/api/admin/?action=post_task&page=/project/PROJECT_ID/&email_user_from=USER_EMAIL&email_user_to=USER_EMAIL&hidden=USER_EMAIL,USER_EMAIL&subscribe=USER_EMAIL,USER_EMAIL&title=TASK_NAME&text=TASK_TEXT&priority=7&datestart=DD.MM.YYYY&dateend= DD.MM.YYYY&tags=Tag1,Tag2&hash=HASH
22
+ def post_task(project_id, **args)
23
+ page = "/project/#{project_id}/"
24
+ url = URI("https://#{@domain}/api/admin/?action=post_task&page=#{page}
25
+ #{collect_params(**args)}
26
+ &hash=#{to_md5(__method__.to_s, page)}")
27
+ perform_request(url)
28
+ end
29
+
30
+ #https://your-domain.com/api/admin/?action=post_subtask&page=/project/PROJECT_ID/TASK_ID/&email_user_from=USER_EMAIL&email_user_to=USER_EMAIL&hidden=USER_EMAIL,USER_EMAIL&title=SUBTASK_NAME&text=SUBTASK_TEXT&priority=7&datestart=DD.MM.YYYY&dateend=DD.MM.YYYY&tags=Tag1,Tag2&hash =HASH
31
+ def post_subtask(project_id, task_id, **args)
32
+ page = "/project/#{project_id}/#{task_id}/"
33
+ url = URI("https://#{@domain}/api/admin/?action=post_subtask&page=#{page}
34
+ #{collect_params(**args)}
35
+ &hash=#{to_md5(__method__.to_s, page)}")
36
+ perform_request(url)
37
+ end
38
+
39
+ #https://your-domain.com/api/admin/?action=post_timemoney&page=/project/PROJECT_ID/TASK_ID/SUBTASK_ID/&email_user_from=USER_EMAIL&time=TIME&money=MONEY&date=DD.MM.YYYYY&comment=COMMENT&hash=HASH
40
+ def post_timemoney(project_id, task_id, subtask_id, **args)
41
+ page = "/project/#{project_id}/#{task_id}/#{subtask_id}/"
42
+ url = URI("https://#{@domain}/api/admin/?action=post_timemoney&page=#{page}
43
+ #{collect_params(**args)}
44
+ &hash=#{to_md5(__method__.to_s, page)}")
45
+ perform_request(url)
46
+ end
47
+
48
+ #https://your-domain.com/api/admin/?action=add_user&email=USER_EMAIL&first_name=USER_FIRST_NAME&last_name=USER_LAST_NAME&hash=HASH
49
+ def add_user(**args)
50
+ url = URI("https://#{@domain}/api/admin/?action=add_user
51
+ #{collect_params(**args)}
52
+ &hash=#{to_md5(__method__.to_s)}")
53
+ perform_request(url)
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,124 @@
1
+ class Worksection::Client
2
+ module Editing
3
+
4
+ #https://your-domain.com/api/admin/?action=close_project&page=/project/PROJECT_ID/&hash=HASH
5
+ def close_project(project_id)
6
+ page = "/project/#{project_id}/"
7
+ url = URI("https://#{@domain}/api/admin/?action=close_project&page=#{page}
8
+ &hash=#{to_md5(__method__.to_s, page)}")
9
+ perform_request(url)
10
+ end
11
+
12
+ #https://your-domain.com/api/admin/?action=activate_project&page=/project/PROJECT_ID/&hash=HASH
13
+ def activate_project(project_id)
14
+ page = "/project/#{project_id}/"
15
+ url = URI("https://#{@domain}/api/admin/?action=activate_project&page=#{page}
16
+ &hash=#{to_md5(__method__.to_s, page)}")
17
+ perform_request(url)
18
+ end
19
+
20
+ #https://your-domain.com/api/admin/?action=complete_task&page=/project/PROJECT_ID/TASK_ID/&hash=HASH
21
+ def complete_task(project_id, task_id)
22
+ page = "/project/#{project_id}/#{task_id}/"
23
+ url = URI("https://#{@domain}/api/admin/?action=complete_task&page=#{page}
24
+ &hash=#{to_md5(__method__.to_s, page)}")
25
+ perform_request(url)
26
+ end
27
+
28
+ #https://your-domain.com/api/admin/?action=complete_subtask&page=/project/PROJECT_ID/TASK_ID/SUBTASK_ID/&hash=HASH 
29
+ def complete_subtask(project_id, task_id, subtask_id)
30
+ page = "/project/#{project_id}/#{task_id}/#{subtask_id}/"
31
+ url = URI("https://#{@domain}/api/admin/?action=complete_subtask&page=#{page}
32
+ &hash=#{to_md5(__method__.to_s, page)}")
33
+ perform_request(url)
34
+ end
35
+
36
+ #https://your-domain.com/api/admin/?action=reopen_task&page=/project/PROJECT_ID/TASK_ID/&hash=HASH 
37
+ def reopen_task(project_id, task_id)
38
+ page = "/project/#{project_id}/#{task_id}/"
39
+ url = URI("https://#{@domain}/api/admin/?action=reopen_task&page=#{page}
40
+ &hash=#{to_md5(__method__.to_s, page)}")
41
+ perform_request(url)
42
+ end
43
+
44
+ #https://your-domain.com/api/admin/?action=reopen_subtask&page=/project/PROJECT_ID/TASK_ID/SUBTASK_ID/&hash=HASH 
45
+ def reopen_subtask(project_id, task_id, subtask_id)
46
+ page = "/project/#{project_id}/#{task_id}/#{subtask_id}/"
47
+ url = URI("https://#{@domain}/api/admin/?action=reopen_subtask&page=#{page}
48
+ &hash=#{to_md5(__method__.to_s, page)}")
49
+ perform_request(url)
50
+ end
51
+
52
+ #https://your-domain.com/api/admin/?action=update_project&page=/project=ID_PROJECT/&email_user_to=USER_EMAIL&title=PROJECT_NAME&datestart=DD.MM.YYYY&dateend=DD.MM.YYYY&hash=HASH
53
+ #@option
54
+ def update_project(project_id, **args)
55
+ page = "/project=#{project_id}/"
56
+ url = URI("https://#{@domain}/api/admin/?action=update_project&page=#{page}
57
+ #{collect_params(**args)}
58
+ &hash=#{to_md5(__method__.to_s, page)}")
59
+ perform_request(url)
60
+ end
61
+
62
+ #https://your-domain.com/api/admin/?action=update_task&page=/project/PROJECT_ID/TASK_ID/&email_user_to=USER_EMAIL&title=TASK_NAME&priority=7&datestart=DD.MM.YYYY&dateend=DD.MM.YYYY&hash=HASH
63
+ def update_task(project_id, task_id, **args)
64
+ page = "/project/#{project_id}/#{task_id}/"
65
+ url = URI("https://#{@domain}/api/admin/?action=update_task&page=#{page}
66
+ #{collect_params(**args)}
67
+ &hash=#{to_md5(__method__.to_s, page)}")
68
+ perform_request(url)
69
+ end
70
+
71
+ def update_subtask(project_id, task_id, subtask_id, **args)
72
+ page = "/project/#{project_id}/#{task_id}/#{subtask_id}/"
73
+ url = URI("https://#{@domain}/api/admin/?action=update_subtask&page=#{page}
74
+ #{collect_params(**args)}
75
+ &hash=#{to_md5(__method__.to_s, page)}")
76
+ perform_request(url)
77
+ end
78
+
79
+ #https://your-domain.com/api/admin/?action=update_timemoney&page=/project/ID_PROJECT/ID_TASK/&id=ID_TIMEMONEY&comment=UPDATED&time=2&is_rate=1&hash=HASH
80
+ def update_timemoney(project_id, task_id, subtask_id = nil, **args)
81
+ page = "/project/#{project_id}/#{task_id}/#{subtask_id}/".gsub('//','/')
82
+ url = URI("https://#{@domain}/api/admin/?action=update_timemoney&page=#{page}
83
+ #{collect_params(**args)}
84
+ &hash=#{to_md5(__method__.to_s, page)}")
85
+ perform_request(url)
86
+ end
87
+
88
+ #https://your-domain.com/api/admin/?action=delete_timemoney&page=/project/ID_PROJECT/ID_TASK/&id=ID_TIMEMONEY&hash=HASH
89
+ def delete_timemoney(project_id, task_id, **args)
90
+ page = "/project/#{project_id}/#{task_id}/"
91
+ url = URI("https://#{@domain}/api/admin/?action=delete_timemoney&page=#{page}
92
+ #{collect_params(**args)}
93
+ &hash=#{to_md5(__method__.to_s, page)}")
94
+ perform_request(url)
95
+ end
96
+
97
+ #https://your-domain.com/api/admin/?action=subscribe&page=/project/PROJECT_ID/TASK_ID/&email_user=USER_EMAIL&hash=HASH 
98
+ def subscribe(project_id, task_id, **args)
99
+ page = "/project/#{project_id}/#{task_id}/"
100
+ url = URI("https://#{@domain}/api/admin/?action=subscribe&page=#{page}
101
+ #{collect_params(**args)}
102
+ &hash=#{to_md5(__method__.to_s, page)}")
103
+ perform_request(url)
104
+ end
105
+
106
+ #https://your-domain.com/api/admin/?action=unsubscribe&page=/project/PROJECT_ID/TASK_ID/&email_user=USER_EMAIL&hash=HASH 
107
+ def unsubscribe(project_id, task_id, **args)
108
+ page = "/project/#{project_id}/#{task_id}/"
109
+ url = URI("https://#{@domain}/api/admin/?action=unsubscribe&page=#{page}
110
+ #{collect_params(**args)}
111
+ &hash=#{to_md5(__method__.to_s, page)}")
112
+ perform_request(url)
113
+ end
114
+
115
+ #https://your-domain.com/api/admin/?action=update_tags&page=/project/PROJECT_ID/TASK_ID/&plus=Tag1,Tag2&minus=Tag3,Tag4&hash=HASH
116
+ def update_tags(project_id, task_id, **args)
117
+ page = "/project/#{project_id}/#{task_id}/"
118
+ url = URI("https://#{@domain}/api/admin/?action=update_tags&page=#{page}
119
+ #{collect_params(**args)}
120
+ &hash=#{to_md5(__method__.to_s, page)}")
121
+ perform_request(url)
122
+ end
123
+ end
124
+ end
@@ -0,0 +1,54 @@
1
+ class Worksection::Client
2
+ module GettingData
3
+ #https://your-domain.com/api/admin/?action=get_projects&hash=HASH
4
+ def get_projects
5
+ url = URI("https://#{@domain}/api/admin/?action=get_projects&hash=#{to_md5(__method__.to_s)}")
6
+ perform_request(url)
7
+ end
8
+
9
+ #https://your-domain.com/api/admin/?action=get_all_tasks&hash=HASH
10
+ def get_all_tasks
11
+ url = URI("https://#{@domain}/api/admin/?action=get_all_tasks&hash=#{to_md5(__method__.to_s)}")
12
+ perform_request(url)
13
+ end
14
+
15
+ #https://your-domain.com/api/admin/?action=get_priority&hash=HASH
16
+ def get_priority
17
+ url = URI("https://#{@domain}/api/admin/?action=get_priority&hash=#{to_md5(__method__.to_s)}")
18
+ perform_request(url)
19
+ end
20
+
21
+ #https://your-domain.com/api/admin/?action=get_task&page=/project/PROJECT_ID/TASK_ID/&hash=HASH
22
+ def get_task(project_id, task_id)
23
+ page = "/project/#{project_id}/#{task_id}/"
24
+ url = URI("https://#{@domain}/api/admin/?action=get_task&page=#{page}&hash=#{to_md5(__method__.to_s, page)}")
25
+ perform_request(url)
26
+ end
27
+
28
+ #https://your-domain.com/api/admin/?action=get_tasks&page=/project/PROJECT_ID/&hash=HASH
29
+ def get_tasks(project_id)
30
+ page = "/project/#{project_id}"
31
+ url = URI("https://#{@domain}/api/admin/?action=get_tasks&page=#{page}&hash=#{to_md5(__method__.to_s, page)}")
32
+ perform_request(url)
33
+ end
34
+
35
+ #https://your-domain.com/api/admin/?action=get_timemoney&hash=HASH
36
+ def get_timemoney
37
+ url = URI("https://#{@domain}/api/admin/?action=get_timemoney&hash=#{to_md5(__method__.to_s)}")
38
+ perform_request(url)
39
+ end
40
+
41
+ #https://your-domain.com/api/admin/?action=get_comments&page=/project/ID_PROJECT/ID_TASK/&hash=HASH
42
+ def get_comments(project_id, task_id)
43
+ page = "/project/#{project_id}/#{task_id}/"
44
+ url = URI("https://#{@domain}/api/admin/?action=get_comments&page=#{page}&hash=#{to_md5(__method__.to_s, page)}")
45
+ perform_request(url)
46
+ end
47
+
48
+ #https://your-domain.com/api/admin/?action=get_users&hash=HASH
49
+ def get_users
50
+ url = URI("https://#{@domain}/api/admin/?action=get_users&hash=#{to_md5(__method__.to_s)}")
51
+ perform_request(url)
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,3 @@
1
+ module Worksection
2
+ VERSION = "0.0.3"
3
+ end
@@ -0,0 +1,7 @@
1
+ require "worksection/version"
2
+ require "worksection/client"
3
+
4
+ module Worksection
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
@@ -0,0 +1,42 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "worksection/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "worksection-ruby"
8
+ spec.version = Worksection::VERSION
9
+ spec.authors = ["Valentin"]
10
+ spec.email = ["loyalist.scfa@gmail.com"]
11
+
12
+ spec.summary = %q{Worksection Api Client}
13
+ #spec.description = %q{Worksection Api Client}
14
+ spec.homepage = "https://github.com/valentinmaslennikov/worksection-ruby"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ #spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+
22
+ spec.metadata["homepage_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = "https://github.com/valentinmaslennikov/worksection-ruby"
24
+ spec.metadata["changelog_uri"] = "https://github.com/valentinmaslennikov/worksection-ruby/CHANGELOG.md"
25
+ else
26
+ raise "RubyGems 2.0 or newer is required to protect against " \
27
+ "public gem pushes."
28
+ end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 1.17"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ spec.add_development_dependency "rspec", "~> 3.0"
42
+ end
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: worksection-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Valentin
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-09-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description:
56
+ email:
57
+ - loyalist.scfa@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - Gemfile.lock
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/setup
73
+ - lib/worksection.rb
74
+ - lib/worksection/client.rb
75
+ - lib/worksection/modules/creating.rb
76
+ - lib/worksection/modules/editing.rb
77
+ - lib/worksection/modules/getting_data.rb
78
+ - lib/worksection/version.rb
79
+ - worksection.gemspec
80
+ homepage: https://github.com/valentinmaslennikov/worksection-ruby
81
+ licenses:
82
+ - MIT
83
+ metadata:
84
+ homepage_uri: https://github.com/valentinmaslennikov/worksection-ruby
85
+ source_code_uri: https://github.com/valentinmaslennikov/worksection-ruby
86
+ changelog_uri: https://github.com/valentinmaslennikov/worksection-ruby/CHANGELOG.md
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.7.8
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: Worksection Api Client
107
+ test_files: []