google-dfp-api 0.6.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (234) hide show
  1. data/ChangeLog +3 -0
  2. data/README +15 -6
  3. data/dfp_api.yml +6 -5
  4. data/examples/v201302/activity_group_service/get_all_activity_groups.rb +0 -0
  5. data/examples/v201302/activity_service/get_all_activities.rb +0 -0
  6. data/examples/v201302/contact_service/get_uninvited_contacts.rb +0 -0
  7. data/examples/v201302/report_service/display_report.rb +0 -0
  8. data/examples/v201302/report_service/run_reach_report.rb +1 -1
  9. data/examples/v201306/activity_group_service/create_activity_groups.rb +94 -0
  10. data/examples/v201306/activity_group_service/get_active_activity_groups.rb +100 -0
  11. data/examples/v201306/activity_group_service/get_all_activity_groups.rb +95 -0
  12. data/examples/v201306/activity_group_service/update_activity_groups.rb +87 -0
  13. data/examples/v201306/activity_service/create_activities.rb +91 -0
  14. data/examples/v201306/activity_service/get_active_activities.rb +107 -0
  15. data/examples/v201306/activity_service/get_all_activities.rb +144 -0
  16. data/examples/v201306/activity_service/update_activities.rb +85 -0
  17. data/examples/v201306/audience_segment_service/get_all_audience_segments.rb +93 -0
  18. data/examples/v201306/common/error_handling.rb +76 -0
  19. data/examples/v201306/common/oauth2_handling.rb +128 -0
  20. data/examples/v201306/common/oauth2_jwt_handling.rb +107 -0
  21. data/examples/v201306/company_service/create_companies.rb +81 -0
  22. data/examples/v201306/company_service/get_all_companies.rb +92 -0
  23. data/examples/v201306/company_service/get_companies_by_statement.rb +88 -0
  24. data/examples/v201306/company_service/get_company.rb +72 -0
  25. data/examples/v201306/company_service/update_companies.rb +102 -0
  26. data/examples/v201306/contact_service/create_contacts.rb +95 -0
  27. data/examples/v201306/contact_service/get_all_contacts.rb +92 -0
  28. data/examples/v201306/contact_service/get_uninvited_contacts.rb +102 -0
  29. data/examples/v201306/contact_service/update_contacts.rb +84 -0
  30. data/examples/v201306/content_service/get_all_content.rb +94 -0
  31. data/examples/v201306/content_service/get_content_by_category.rb +143 -0
  32. data/examples/v201306/creative_service/copy_image_creatives.rb +115 -0
  33. data/examples/v201306/creative_service/create_creative_from_template.rb +139 -0
  34. data/examples/v201306/creative_service/create_creatives.rb +112 -0
  35. data/examples/v201306/creative_service/create_custom_creative.rb +104 -0
  36. data/examples/v201306/creative_service/get_all_creatives.rb +93 -0
  37. data/examples/v201306/creative_service/get_creative.rb +72 -0
  38. data/examples/v201306/creative_service/get_creatives_by_statement.rb +87 -0
  39. data/examples/v201306/creative_service/update_creatives.rb +96 -0
  40. data/examples/v201306/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
  41. data/examples/v201306/creative_set_service/create_creative_set.rb +83 -0
  42. data/examples/v201306/creative_set_service/get_all_creative_sets.rb +94 -0
  43. data/examples/v201306/creative_set_service/get_creative_sets_by_statement.rb +90 -0
  44. data/examples/v201306/creative_set_service/update_creative_sets.rb +85 -0
  45. data/examples/v201306/creative_template_service/get_all_creative_templates.rb +94 -0
  46. data/examples/v201306/creative_template_service/get_creative_template.rb +74 -0
  47. data/examples/v201306/creative_template_service/get_creative_templates_by_statement.rb +80 -0
  48. data/examples/v201306/creative_wrapper_service/create_creative_wrappers.rb +89 -0
  49. data/examples/v201306/creative_wrapper_service/deactivate_creative_wrapper.rb +102 -0
  50. data/examples/v201306/creative_wrapper_service/get_all_creative_wrappers.rb +94 -0
  51. data/examples/v201306/creative_wrapper_service/get_creative_wrappers_by_statement.rb +88 -0
  52. data/examples/v201306/creative_wrapper_service/update_creative_wrappers.rb +86 -0
  53. data/examples/v201306/custom_field_service/create_custom_field_options.rb +87 -0
  54. data/examples/v201306/custom_field_service/create_custom_fields.rb +86 -0
  55. data/examples/v201306/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
  56. data/examples/v201306/custom_field_service/get_all_custom_fields.rb +102 -0
  57. data/examples/v201306/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
  58. data/examples/v201306/custom_field_service/set_line_item_custom_field_value.rb +135 -0
  59. data/examples/v201306/custom_field_service/update_custom_fields.rb +84 -0
  60. data/examples/v201306/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
  61. data/examples/v201306/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
  62. data/examples/v201306/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
  63. data/examples/v201306/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
  64. data/examples/v201306/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
  65. data/examples/v201306/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
  66. data/examples/v201306/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
  67. data/examples/v201306/custom_targeting_service/update_custom_targeting_values.rb +106 -0
  68. data/examples/v201306/forecast_service/get_forecast.rb +107 -0
  69. data/examples/v201306/forecast_service/get_forecast_by_id.rb +80 -0
  70. data/examples/v201306/inventory_service/create_ad_units.rb +101 -0
  71. data/examples/v201306/inventory_service/create_mobile_ad_unit.rb +101 -0
  72. data/examples/v201306/inventory_service/create_video_ad_unit.rb +108 -0
  73. data/examples/v201306/inventory_service/deactivate_ad_units.rb +119 -0
  74. data/examples/v201306/inventory_service/get_ad_unit.rb +72 -0
  75. data/examples/v201306/inventory_service/get_ad_unit_sizes.rb +85 -0
  76. data/examples/v201306/inventory_service/get_ad_units_by_statement.rb +96 -0
  77. data/examples/v201306/inventory_service/get_all_ad_units.rb +93 -0
  78. data/examples/v201306/inventory_service/update_ad_units.rb +96 -0
  79. data/examples/v201306/label_service/create_labels.rb +83 -0
  80. data/examples/v201306/label_service/deactivate_labels.rb +118 -0
  81. data/examples/v201306/label_service/get_all_labels.rb +95 -0
  82. data/examples/v201306/label_service/get_label.rb +76 -0
  83. data/examples/v201306/label_service/get_labels_by_statement.rb +81 -0
  84. data/examples/v201306/label_service/update_labels.rb +102 -0
  85. data/examples/v201306/line_item_creative_association_service/create_licas.rb +94 -0
  86. data/examples/v201306/line_item_creative_association_service/deactivate_licas.rb +127 -0
  87. data/examples/v201306/line_item_creative_association_service/get_all_licas.rb +98 -0
  88. data/examples/v201306/line_item_creative_association_service/get_lica.rb +77 -0
  89. data/examples/v201306/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
  90. data/examples/v201306/line_item_creative_association_service/update_licas.rb +91 -0
  91. data/examples/v201306/line_item_service/activate_line_items.rb +131 -0
  92. data/examples/v201306/line_item_service/create_line_items.rb +177 -0
  93. data/examples/v201306/line_item_service/create_mobile_line_item.rb +135 -0
  94. data/examples/v201306/line_item_service/create_video_line_item.rb +158 -0
  95. data/examples/v201306/line_item_service/get_all_line_items.rb +94 -0
  96. data/examples/v201306/line_item_service/get_line_item.rb +74 -0
  97. data/examples/v201306/line_item_service/get_line_items_by_statement.rb +93 -0
  98. data/examples/v201306/line_item_service/get_recently_updated_line_items.rb +98 -0
  99. data/examples/v201306/line_item_service/target_custom_criteria.rb +129 -0
  100. data/examples/v201306/line_item_service/update_line_items.rb +109 -0
  101. data/examples/v201306/network_service/get_all_networks.rb +74 -0
  102. data/examples/v201306/network_service/get_current_network.rb +66 -0
  103. data/examples/v201306/network_service/make_test_network.rb +79 -0
  104. data/examples/v201306/order_service/approve_orders.rb +122 -0
  105. data/examples/v201306/order_service/create_orders.rb +92 -0
  106. data/examples/v201306/order_service/get_all_orders.rb +93 -0
  107. data/examples/v201306/order_service/get_order.rb +74 -0
  108. data/examples/v201306/order_service/get_orders_by_statement.rb +90 -0
  109. data/examples/v201306/order_service/update_orders.rb +97 -0
  110. data/examples/v201306/placement_service/create_placements.rb +131 -0
  111. data/examples/v201306/placement_service/deactivate_placements.rb +118 -0
  112. data/examples/v201306/placement_service/get_all_placements.rb +93 -0
  113. data/examples/v201306/placement_service/get_placement.rb +74 -0
  114. data/examples/v201306/placement_service/get_placements_by_statement.rb +86 -0
  115. data/examples/v201306/placement_service/update_placements.rb +97 -0
  116. data/examples/v201306/publisher_query_language_service/get_all_cities.rb +104 -0
  117. data/examples/v201306/report_service/display_report.rb +81 -0
  118. data/examples/v201306/report_service/download_report.rb +81 -0
  119. data/examples/v201306/report_service/run_delivery_report.rb +103 -0
  120. data/examples/v201306/report_service/run_inventory_report.rb +96 -0
  121. data/examples/v201306/report_service/run_merged_delivery_report.rb +94 -0
  122. data/examples/v201306/report_service/run_reach_report.rb +87 -0
  123. data/examples/v201306/report_service/run_report_with_custom_fields.rb +135 -0
  124. data/examples/v201306/report_service/run_sales_report.rb +92 -0
  125. data/examples/v201306/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
  126. data/examples/v201306/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
  127. data/examples/v201306/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
  128. data/examples/v201306/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
  129. data/examples/v201306/team_service/create_teams.rb +83 -0
  130. data/examples/v201306/team_service/get_all_teams.rb +92 -0
  131. data/examples/v201306/team_service/get_team.rb +74 -0
  132. data/examples/v201306/team_service/get_teams_by_statement.rb +78 -0
  133. data/examples/v201306/team_service/update_teams.rb +97 -0
  134. data/examples/v201306/user_service/create_users.rb +89 -0
  135. data/examples/v201306/user_service/deactivate_users.rb +97 -0
  136. data/examples/v201306/user_service/get_all_roles.rb +73 -0
  137. data/examples/v201306/user_service/get_all_users.rb +93 -0
  138. data/examples/v201306/user_service/get_current_user.rb +66 -0
  139. data/examples/v201306/user_service/get_user.rb +73 -0
  140. data/examples/v201306/user_service/get_users_by_statement.rb +79 -0
  141. data/examples/v201306/user_service/update_users.rb +89 -0
  142. data/examples/v201306/user_team_association_service/create_user_team_associations.rb +86 -0
  143. data/examples/v201306/user_team_association_service/delete_user_team_associations.rb +111 -0
  144. data/examples/v201306/user_team_association_service/get_all_user_team_associations.rb +94 -0
  145. data/examples/v201306/user_team_association_service/get_user_team_association.rb +76 -0
  146. data/examples/v201306/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
  147. data/examples/v201306/user_team_association_service/update_user_team_associations.rb +102 -0
  148. data/lib/dfp_api.rb +3 -3
  149. data/lib/dfp_api/api_config.rb +24 -4
  150. data/lib/dfp_api/v201306/activity_group_service.rb +54 -0
  151. data/lib/dfp_api/v201306/activity_group_service_registry.rb +46 -0
  152. data/lib/dfp_api/v201306/activity_service.rb +54 -0
  153. data/lib/dfp_api/v201306/activity_service_registry.rb +46 -0
  154. data/lib/dfp_api/v201306/ad_rule_service.rb +58 -0
  155. data/lib/dfp_api/v201306/ad_rule_service_registry.rb +46 -0
  156. data/lib/dfp_api/v201306/audience_segment_service.rb +34 -0
  157. data/lib/dfp_api/v201306/audience_segment_service_registry.rb +46 -0
  158. data/lib/dfp_api/v201306/base_rate_service.rb +58 -0
  159. data/lib/dfp_api/v201306/base_rate_service_registry.rb +46 -0
  160. data/lib/dfp_api/v201306/company_service.rb +54 -0
  161. data/lib/dfp_api/v201306/company_service_registry.rb +46 -0
  162. data/lib/dfp_api/v201306/contact_service.rb +54 -0
  163. data/lib/dfp_api/v201306/contact_service_registry.rb +46 -0
  164. data/lib/dfp_api/v201306/content_bundle_service.rb +58 -0
  165. data/lib/dfp_api/v201306/content_bundle_service_registry.rb +46 -0
  166. data/lib/dfp_api/v201306/content_service.rb +38 -0
  167. data/lib/dfp_api/v201306/content_service_registry.rb +46 -0
  168. data/lib/dfp_api/v201306/creative_service.rb +54 -0
  169. data/lib/dfp_api/v201306/creative_service_registry.rb +46 -0
  170. data/lib/dfp_api/v201306/creative_set_service.rb +46 -0
  171. data/lib/dfp_api/v201306/creative_set_service_registry.rb +46 -0
  172. data/lib/dfp_api/v201306/creative_template_service.rb +38 -0
  173. data/lib/dfp_api/v201306/creative_template_service_registry.rb +46 -0
  174. data/lib/dfp_api/v201306/creative_wrapper_service.rb +58 -0
  175. data/lib/dfp_api/v201306/creative_wrapper_service_registry.rb +46 -0
  176. data/lib/dfp_api/v201306/custom_field_service.rb +78 -0
  177. data/lib/dfp_api/v201306/custom_field_service_registry.rb +46 -0
  178. data/lib/dfp_api/v201306/custom_targeting_service.rb +62 -0
  179. data/lib/dfp_api/v201306/custom_targeting_service_registry.rb +46 -0
  180. data/lib/dfp_api/v201306/forecast_service.rb +38 -0
  181. data/lib/dfp_api/v201306/forecast_service_registry.rb +46 -0
  182. data/lib/dfp_api/v201306/inventory_service.rb +62 -0
  183. data/lib/dfp_api/v201306/inventory_service_registry.rb +46 -0
  184. data/lib/dfp_api/v201306/label_service.rb +58 -0
  185. data/lib/dfp_api/v201306/label_service_registry.rb +46 -0
  186. data/lib/dfp_api/v201306/line_item_creative_association_service.rb +62 -0
  187. data/lib/dfp_api/v201306/line_item_creative_association_service_registry.rb +46 -0
  188. data/lib/dfp_api/v201306/line_item_service.rb +58 -0
  189. data/lib/dfp_api/v201306/line_item_service_registry.rb +46 -0
  190. data/lib/dfp_api/v201306/line_item_template_service.rb +34 -0
  191. data/lib/dfp_api/v201306/line_item_template_service_registry.rb +46 -0
  192. data/lib/dfp_api/v201306/network_service.rb +46 -0
  193. data/lib/dfp_api/v201306/network_service_registry.rb +46 -0
  194. data/lib/dfp_api/v201306/order_service.rb +58 -0
  195. data/lib/dfp_api/v201306/order_service_registry.rb +46 -0
  196. data/lib/dfp_api/v201306/placement_service.rb +58 -0
  197. data/lib/dfp_api/v201306/placement_service_registry.rb +46 -0
  198. data/lib/dfp_api/v201306/product_service.rb +50 -0
  199. data/lib/dfp_api/v201306/product_service_registry.rb +46 -0
  200. data/lib/dfp_api/v201306/product_template_service.rb +58 -0
  201. data/lib/dfp_api/v201306/product_template_service_registry.rb +46 -0
  202. data/lib/dfp_api/v201306/proposal_line_item_service.rb +58 -0
  203. data/lib/dfp_api/v201306/proposal_line_item_service_registry.rb +46 -0
  204. data/lib/dfp_api/v201306/proposal_service.rb +58 -0
  205. data/lib/dfp_api/v201306/proposal_service_registry.rb +46 -0
  206. data/lib/dfp_api/v201306/publisher_query_language_service.rb +34 -0
  207. data/lib/dfp_api/v201306/publisher_query_language_service_registry.rb +46 -0
  208. data/lib/dfp_api/v201306/rate_card_customization_service.rb +58 -0
  209. data/lib/dfp_api/v201306/rate_card_customization_service_registry.rb +46 -0
  210. data/lib/dfp_api/v201306/rate_card_service.rb +58 -0
  211. data/lib/dfp_api/v201306/rate_card_service_registry.rb +46 -0
  212. data/lib/dfp_api/v201306/reconciliation_order_report_service.rb +42 -0
  213. data/lib/dfp_api/v201306/reconciliation_order_report_service_registry.rb +46 -0
  214. data/lib/dfp_api/v201306/reconciliation_report_row_service.rb +38 -0
  215. data/lib/dfp_api/v201306/reconciliation_report_row_service_registry.rb +46 -0
  216. data/lib/dfp_api/v201306/reconciliation_report_service.rb +46 -0
  217. data/lib/dfp_api/v201306/reconciliation_report_service_registry.rb +46 -0
  218. data/lib/dfp_api/v201306/report_service.rb +46 -0
  219. data/lib/dfp_api/v201306/report_service_registry.rb +46 -0
  220. data/lib/dfp_api/v201306/suggested_ad_unit_service.rb +42 -0
  221. data/lib/dfp_api/v201306/suggested_ad_unit_service_registry.rb +46 -0
  222. data/lib/dfp_api/v201306/team_service.rb +54 -0
  223. data/lib/dfp_api/v201306/team_service_registry.rb +46 -0
  224. data/lib/dfp_api/v201306/user_service.rb +66 -0
  225. data/lib/dfp_api/v201306/user_service_registry.rb +46 -0
  226. data/lib/dfp_api/v201306/user_team_association_service.rb +58 -0
  227. data/lib/dfp_api/v201306/user_team_association_service_registry.rb +46 -0
  228. data/lib/dfp_api/v201306/workflow_action_service.rb +38 -0
  229. data/lib/dfp_api/v201306/workflow_action_service_registry.rb +46 -0
  230. data/lib/dfp_api/version.rb +1 -1
  231. data/test/bugs/test_issue_00000016.rb +3 -3
  232. data/test/dfp_api/test_dfp_api.rb +30 -6
  233. data/test/suite_unittests.rb +6 -6
  234. metadata +1218 -999
@@ -0,0 +1,87 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # Author:: api.davidtorres@gmail.com (David Torres)
4
+ #
5
+ # Copyright:: Copyright 2013, Google Inc. All Rights Reserved.
6
+ #
7
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
8
+ # you may not use this file except in compliance with the License.
9
+ # You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing, software
14
+ # distributed under the License is distributed on an "AS IS" BASIS,
15
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
16
+ # implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+ # This example runs a reach report. To download the report see
21
+ # download_report.rb.
22
+ #
23
+ # Tags: ReportService.runReportJob, ReportService.getReportJob
24
+
25
+ require 'dfp_api'
26
+
27
+ API_VERSION = :v201306
28
+ MAX_RETRIES = 10
29
+ RETRY_INTERVAL = 30
30
+
31
+ def run_reach_report()
32
+ # Get DfpApi instance and load configuration from ~/dfp_api.yml.
33
+ dfp = DfpApi::Api.new
34
+
35
+ # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
36
+ # the configuration file or provide your own logger:
37
+ # dfp.logger = Logger.new('dfp_xml.log')
38
+
39
+ # Get the ReportService.
40
+ report_service = dfp.service(:ReportService, API_VERSION)
41
+
42
+ # Create report query.
43
+ report_query = {
44
+ :date_range_type => 'REACH_LIFETIME',
45
+ :dimensions => ['LINE_ITEM_ID', 'LINE_ITEM_NAME'],
46
+ :columns => ['REACH_FREQUENCY', 'REACH_AVERAGE_REVENUE', 'REACH']
47
+ }
48
+
49
+ # Create report job.
50
+ report_job = {:report_query => report_query}
51
+
52
+ # Run report job.
53
+ report_job = report_service.run_report_job(report_job);
54
+
55
+ MAX_RETRIES.times do |retry_count|
56
+ # Get the report job status.
57
+ report_job = report_service.get_report_job(report_job[:id])
58
+
59
+ break unless report_job[:report_job_status] == 'IN_PROGRESS'
60
+ puts "Report with ID: %d is still running." % report_job[:id]
61
+ sleep(RETRY_INTERVAL)
62
+ end
63
+
64
+ puts "Report job with ID: %d finished with status %s." %
65
+ [report_job[:id], report_job[:report_job_status]]
66
+ end
67
+
68
+ if __FILE__ == $0
69
+ begin
70
+ run_reach_report()
71
+
72
+ # HTTP errors.
73
+ rescue AdsCommon::Errors::HttpError => e
74
+ puts "HTTP Error: %s" % e
75
+
76
+ # API errors.
77
+ rescue DfpApi::Errors::ApiException => e
78
+ puts "Message: %s" % e.message
79
+ puts 'Errors:'
80
+ e.errors.each_with_index do |error, index|
81
+ puts "\tError [%d]:" % (index + 1)
82
+ error.each do |field, value|
83
+ puts "\t\t%s: %s" % [field, value]
84
+ end
85
+ end
86
+ end
87
+ end
@@ -0,0 +1,135 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # This example runs a report that includes custom fields found in the line items
22
+ # of an order. To download the report see download_report.rb.
23
+ #
24
+ # Tags: LineItemService.getLineItemByStatement
25
+ # Tags: ReportService.runReportJob, ReportService.getReportJob
26
+
27
+ require 'dfp_api'
28
+
29
+ API_VERSION = :v201306
30
+ PAGE_SIZE = 500
31
+ MAX_RETRIES = 10
32
+ RETRY_INTERVAL = 30
33
+
34
+ def run_report_with_custom_fields()
35
+ # Get DfpApi instance and load configuration from ~/dfp_api.yml.
36
+ dfp = DfpApi::Api.new
37
+
38
+ # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
39
+ # the configuration file or provide your own logger:
40
+ # dfp.logger = Logger.new('dfp_xml.log')
41
+
42
+ # Get the LineItemService.
43
+ line_item_service = dfp.service(:LineItemService, API_VERSION)
44
+
45
+ # Get the ReportService.
46
+ report_service = dfp.service(:ReportService, API_VERSION)
47
+
48
+ # Set the ID of the order to get line items from.
49
+ order_id = 'INSERT_ORDER_ID_HERE'.to_i
50
+
51
+ # Define initial values.
52
+ offset = 0
53
+ page = {}
54
+ custom_field_ids = []
55
+
56
+ # Create a statement to only select line items from a given order.
57
+ statement = {
58
+ :values => [
59
+ {:key => 'order_id',
60
+ :value => {:value => order_id, :xsi_type => 'NumberValue'}}
61
+ ]
62
+ }
63
+ query_text = 'WHERE orderId = :order_id LIMIT %d OFFSET %d'
64
+
65
+ begin
66
+ # Update the statement to get one page with current offset.
67
+ statement[:query] = query_text % [PAGE_SIZE, offset]
68
+
69
+ # Get line items by statement.
70
+ page = line_item_service.get_line_items_by_statement(statement)
71
+
72
+ if page[:results]
73
+ # Increase query offset by page size.
74
+ offset += PAGE_SIZE
75
+
76
+ # Get custom field IDs from the line items of an order.
77
+ page[:results].each do |line_item|
78
+ if line_item[:custom_field_values]
79
+ line_item[:custom_field_values].each do |value|
80
+ custom_field_ids |= [value[:custom_field_id]]
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end while offset < page[:total_result_set_size]
86
+
87
+ # Create report query.
88
+ statement[:query] = 'WHERE ORDER_ID = :order_id'
89
+ report_query = {
90
+ :date_range_type => 'LAST_MONTH',
91
+ :dimensions => ['LINE_ITEM_ID', 'LINE_ITEM_NAME'],
92
+ :custom_field_ids => custom_field_ids,
93
+ :columns => ['AD_SERVER_IMPRESSIONS'],
94
+ :statement => statement
95
+ }
96
+
97
+ # Create report job.
98
+ report_job = {:report_query => report_query}
99
+
100
+ # Run report job.
101
+ report_job = report_service.run_report_job(report_job);
102
+
103
+ MAX_RETRIES.times do |retry_count|
104
+ # Get the report job status.
105
+ report_job = report_service.get_report_job(report_job[:id])
106
+
107
+ break unless report_job[:report_job_status] == 'IN_PROGRESS'
108
+ puts "Report with ID: %d is still running." % report_job[:id]
109
+ sleep(RETRY_INTERVAL)
110
+ end
111
+
112
+ puts "Report job with ID: %d finished with status %s." %
113
+ [report_job[:id], report_job[:report_job_status]]
114
+ end
115
+
116
+ if __FILE__ == $0
117
+ begin
118
+ run_report_with_custom_fields()
119
+
120
+ # HTTP errors.
121
+ rescue AdsCommon::Errors::HttpError => e
122
+ puts "HTTP Error: %s" % e
123
+
124
+ # API errors.
125
+ rescue DfpApi::Errors::ApiException => e
126
+ puts "Message: %s" % e.message
127
+ puts 'Errors:'
128
+ e.errors.each_with_index do |error, index|
129
+ puts "\tError [%d]:" % (index + 1)
130
+ error.each do |field, value|
131
+ puts "\t\t%s: %s" % [field, value]
132
+ end
133
+ end
134
+ end
135
+ end
@@ -0,0 +1,92 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # This example runs a report equal to the "Sales by salespersons report" on the
22
+ # DFP website. To download the report see download_report.rb.
23
+ #
24
+ # Tags: ReportService.runReportJob, ReportService.getReportJob
25
+
26
+ require 'dfp_api'
27
+
28
+ API_VERSION = :v201306
29
+ MAX_RETRIES = 10
30
+ RETRY_INTERVAL = 30
31
+
32
+ def run_sales_report()
33
+ # Get DfpApi instance and load configuration from ~/dfp_api.yml.
34
+ dfp = DfpApi::Api.new
35
+
36
+ # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
37
+ # the configuration file or provide your own logger:
38
+ # dfp.logger = Logger.new('dfp_xml.log')
39
+
40
+ # Get the ReportService.
41
+ report_service = dfp.service(:ReportService, API_VERSION)
42
+
43
+ # Create report query.
44
+ report_query = {
45
+ :date_range_type => 'LAST_MONTH',
46
+ :dimensions => ['SALESPERSON_ID', 'SALESPERSON_NAME'],
47
+ :columns => [
48
+ 'AD_SERVER_IMPRESSIONS',
49
+ 'AD_SERVER_CPM_AND_CPC_REVENUE',
50
+ 'AD_SERVER_WITHOUT_CPD_AVERAGE_ECPM'
51
+ ]
52
+ }
53
+
54
+ # Create report job.
55
+ report_job = {:report_query => report_query}
56
+
57
+ # Run report job.
58
+ report_job = report_service.run_report_job(report_job);
59
+
60
+ MAX_RETRIES.times do |retry_count|
61
+ # Get the report job status.
62
+ report_job = report_service.get_report_job(report_job[:id])
63
+
64
+ break unless report_job[:report_job_status] == 'IN_PROGRESS'
65
+ puts "Report with ID: %d is still running." % report_job[:id]
66
+ sleep(RETRY_INTERVAL)
67
+ end
68
+
69
+ puts "Report job with ID: %d finished with status %s." %
70
+ [report_job[:id], report_job[:report_job_status]]
71
+ end
72
+
73
+ if __FILE__ == $0
74
+ begin
75
+ run_sales_report()
76
+
77
+ # HTTP errors.
78
+ rescue AdsCommon::Errors::HttpError => e
79
+ puts "HTTP Error: %s" % e
80
+
81
+ # API errors.
82
+ rescue DfpApi::Errors::ApiException => e
83
+ puts "Message: %s" % e.message
84
+ puts 'Errors:'
85
+ e.errors.each_with_index do |error, index|
86
+ puts "\tError [%d]:" % (index + 1)
87
+ error.each do |field, value|
88
+ puts "\t\t%s: %s" % [field, value]
89
+ end
90
+ end
91
+ end
92
+ end
@@ -0,0 +1,109 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # This code example approves all suggested ad units with 50 or more requests.
22
+ #
23
+ # This feature is only available to DFP premium solution networks.
24
+ #
25
+ # Tags: SuggestedAdUnitService.getSuggestedAdUnitsByStatement
26
+ # Tags: SuggestedAdUnitService.performSuggestedAdUnitAction
27
+
28
+ require 'dfp_api'
29
+
30
+ API_VERSION = :v201306
31
+ NUMBER_OF_REQUESTS = 50
32
+
33
+ def approve_suggested_ad_units()
34
+ # Get DfpApi instance and load configuration from ~/dfp_api.yml.
35
+ dfp = DfpApi::Api.new
36
+
37
+ # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
38
+ # the configuration file or provide your own logger:
39
+ # dfp.logger = Logger.new('dfp_xml.log')
40
+
41
+ # Get the SuggestedAdUnitService.
42
+ suggested_ad_unit_service = dfp.service(:SuggestedAdUnitService, API_VERSION)
43
+
44
+ # Create a statement to only select suggested ad units with 50 or more
45
+ # requests (with maximum limit of 500).
46
+ statement = {
47
+ :query => 'WHERE numRequests >= :num_requests',
48
+ :values => [
49
+ {:key => 'num_requests',
50
+ :value => {:value => NUMBER_OF_REQUESTS,
51
+ :xsi_type => 'NumberValue'}}
52
+ ]
53
+ }
54
+
55
+ # Get suggested ad units by statement.
56
+ page =
57
+ suggested_ad_unit_service.get_suggested_ad_units_by_statement(statement)
58
+
59
+ unit_count_to_approve = 0
60
+
61
+ if page[:results]
62
+ page[:results].each do |ad_unit|
63
+ if ad_unit[:num_requests] >= NUMBER_OF_REQUESTS
64
+ puts(("%d) Suggested ad unit with ID '%s' and %d requests will be " +
65
+ "approved.") % [suggested_ad_unit_ids.size, ad_unit[:id],
66
+ ad_unit[:num_requests]])
67
+ unit_count_to_approve += 1
68
+ end
69
+ end
70
+ end
71
+
72
+ puts "Number of suggested ad units to be approved: %d" % unit_count_to_approve
73
+
74
+ if unit_count_to_approve > 0
75
+ # Perform action with the same statement.
76
+ result = suggested_ad_unit_service.perform_suggested_ad_unit_action(
77
+ {:xsi_type => 'ApproveSuggestedAdUnit'}, statement)
78
+
79
+ # Display results.
80
+ if result and result[:num_changes] > 0
81
+ puts "Number of ad units approved: %d" % result[:num_changes]
82
+ else
83
+ puts 'No ad units were approved.'
84
+ end
85
+ else
86
+ puts 'No ad units found to approve.'
87
+ end
88
+ end
89
+
90
+ if __FILE__ == $0
91
+ begin
92
+ approve_suggested_ad_units()
93
+
94
+ # HTTP errors.
95
+ rescue AdsCommon::Errors::HttpError => e
96
+ puts "HTTP Error: %s" % e
97
+
98
+ # API errors.
99
+ rescue DfpApi::Errors::ApiException => e
100
+ puts "Message: %s" % e.message
101
+ puts 'Errors:'
102
+ e.errors.each_with_index do |error, index|
103
+ puts "\tError [%d]:" % (index + 1)
104
+ error.each do |field, value|
105
+ puts "\t\t%s: %s" % [field, value]
106
+ end
107
+ end
108
+ end
109
+ end
@@ -0,0 +1,96 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
7
+ #
8
+ # License:: Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17
+ # implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ #
21
+ # This example gets all suggested ad units. To approve suggested ad units, run
22
+ # approve_suggested_ad_units.rb.
23
+ #
24
+ # This feature is only available to DFP premium solution networks.
25
+ #
26
+ # Tags: SuggestedAdUnitService.getSuggestedAdUnitsByStatement
27
+
28
+ require 'dfp_api'
29
+
30
+ API_VERSION = :v201306
31
+ PAGE_SIZE = 500
32
+
33
+ def get_all_suggested_ad_units()
34
+ # Get DfpApi instance and load configuration from ~/dfp_api.yml.
35
+ dfp = DfpApi::Api.new
36
+
37
+ # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
38
+ # the configuration file or provide your own logger:
39
+ # dfp.logger = Logger.new('dfp_xml.log')
40
+
41
+ # Get the SuggestedAdUnitService.
42
+ suggested_ad_unit_service = dfp.service(:SuggestedAdUnitService, API_VERSION)
43
+
44
+ # Define initial values.
45
+ offset = 0
46
+ page = {}
47
+
48
+ begin
49
+ # Create a statement to get one page with current offset.
50
+ statement = {:query => "LIMIT %d OFFSET %d" % [PAGE_SIZE, offset]}
51
+
52
+ # Get suggested ad units by statement.
53
+ page =
54
+ suggested_ad_unit_service.get_suggested_ad_units_by_statement(statement)
55
+
56
+ if page[:results]
57
+ # Increase query offset by page size.
58
+ offset += PAGE_SIZE
59
+
60
+ # Get the start index for printout.
61
+ start_index = page[:start_index]
62
+
63
+ # Print details about each suggested ad unit in results.
64
+ page[:results].each_with_index do |ad_unit, index|
65
+ puts "%d) Suggested ad unit ID: '%s' with number of requests: %d" %
66
+ [index + start_index, ad_unit[:id], ad_unit[:num_requests]]
67
+ end
68
+ end
69
+ end while offset < page[:total_result_set_size]
70
+
71
+ # Print a footer.
72
+ if page.include?(:total_result_set_size)
73
+ puts "Total number of suggested ad units: %d" % page[:total_result_set_size]
74
+ end
75
+ end
76
+
77
+ if __FILE__ == $0
78
+ begin
79
+ get_all_suggested_ad_units()
80
+
81
+ # HTTP errors.
82
+ rescue AdsCommon::Errors::HttpError => e
83
+ puts "HTTP Error: %s" % e
84
+
85
+ # API errors.
86
+ rescue DfpApi::Errors::ApiException => e
87
+ puts "Message: %s" % e.message
88
+ puts 'Errors:'
89
+ e.errors.each_with_index do |error, index|
90
+ puts "\tError [%d]:" % (index + 1)
91
+ error.each do |field, value|
92
+ puts "\t\t%s: %s" % [field, value]
93
+ end
94
+ end
95
+ end
96
+ end