Jump to content
  • IsGroupLoggedOff

    IsGroupLoggedOff

    VBScript   → Lua

     

    This function returns true if all members of the given group are logged off.

    Please see the Introduction chapter for some usage instructions.

     

    ''-------------------------------------------------------------------
    '' Name:     IsGroupLoggedOff
    ''           ================
    '' 
    '' Checks if all members of a given SwyxWare user group are logged off.
    '' 
    '' return value:
    ''      integer     True  - all members of the given group are logged off (or status can't be requested)
    ''                  False - at least one member of the given group is logged on
    ''--------------------------------------------------------------------
    Function IsGroupLoggedOff ( sNumber )
     
        PBXScript.OutputTrace("-------------> IsGroupLoggedOff ( sNumber = " & sNumber & " )")
     
        Dim bReturn
        bReturn = True
     
        Dim Users
        Set Users = g_PBXConfig.GetUserByAddress(sNumber)
     
        Dim User
        For Each User In Users
     
            PBXScript.OutputTrace("Found user " & User.Name & " with current state " & User.State)
    
            If User.State > 1 Then bReturn = False
     
        Next
     
        IsGroupLoggedOff = bReturn
     
        PBXScript.OutputTrace("bReturn = " & bReturn)
        PBXScript.OutputTrace("<------------- IsGroupLoggedOff")
     
    End Function

     

    This function makes use of the Server Script API functions PBXConfig.GetUserByAddress to resolve all users in the given group and PBXScript.OutputTrace to write trace information into the SwyxServer trace file.

     

    Please note: if you are on SwyxWare v13.27 (or higher) and need to know if all users of the group the current script is running for are logged in/off, you can also use the new Server Script API function PBXGroup.IsLoggedIn.

     

    This function was initially posted into this forum topic.

     

     


    Tom Wellige
     Share


     Share




    User Feedback

    Recommended Comments

    There are no comments to display.



    Guest
    Add a comment...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.