Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 873731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:59:16+00:00 2026-05-15T10:59:16+00:00

We are creating a gadget for the opensocial API 0.7. In some functions we

  • 0

We are creating a gadget for the opensocial API 0.7.
In some functions we have to decide, if the viewer is the owner.

We couldn’t use the usual function for this purpose:
return gadgets.util.getUrlParameters().viewer == gadgets.util.getUrlParameters().owner;
so we had to create a workaround and get the information via a DataRequest.

The DataRequest calls a callback function and has no useable return value.
We tried a quick hack by using global variables to set the corresponding value.

The issue at this point is, that the function does not ‘wait’ for the callback-function to be finished. We know this is no good code/style at all, but we tried to force a timeout for debug reasons.

Handling all the code within the callback-function (as suggested in the examples of the opensocial docs) is not possible.
We are looking for something like a real ‘sleep()’ in JavaScript to wait for the callback-function to complete or another alternative to get the owner information about the viewer.

globalWorkaroundIsOwner = false;  

function show_teaser(){  
  if (current_user_is_owner()){  
    // ...  
  }  
  // ...  
}  

function current_user_is_owner() {  

  var req = opensocial.newDataRequest();  
  req.add(req.newFetchPersonRequest(opensocial.DataRequest.PersonId.VIEWER), 'viewer');  

  // This will set the the correct value  
  req.send( user_is_owner_workaround );  

  // This is an attempt to delay the return of the value.  
  // An alert() at this point delays the return as wanted.  
  window.setTimeout("empty()", 2000);  

  // This return seems to be called too early (the variable is false)  
  return globalWorkaroundIsOwner;  
}  

function user_is_owner_workaround(dataResponse) {  
  var viewer = dataResponse.get('viewer').getData();  

  globalWorkaroundIsOwner = viewer.isOwner();  
  // value is correct at this point  
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T10:59:16+00:00Added an answer on May 15, 2026 at 10:59 am

    Can you use an additional flag in order to indicate whether the remote query has already returned the required value?

    var globalWorkaroundIsOwner = false;
    var workaroundStarted = false, workAroundComplete = false;
    var checker;
    
    function show_teaser(){
        if (!workaroundStarted) {
            workaroundStarted = true;
            current_user_is_owner();
        }
        if (workaroundComplete) {  
        if (globalWorkaroundIsOwner){  
            // ...  
        }  
        // ...  
          if (checker) {
          clearInterval(checker);
          }
        }
    }  
    
    function current_user_is_owner() {  
    
        var req = opensocial.newDataRequest();  
        req.add(req.newFetchPersonRequest(opensocial.DataRequest.PersonId.VIEWER), 'viewer');  
    
        checker = setInterval("show_teaser()", 1000);
        // This will set the the correct value  
        req.send( user_is_owner_workaround );  
    }  
    
    function user_is_owner_workaround(dataResponse) {  
        var viewer = dataResponse.get('viewer').getData();  
    
        globalWorkaroundIsOwner = viewer.isOwner();  
        workAroundComplete = true;
        // value is correct at this point  
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.